jisti-meet服务开启

This commit is contained in:
2025-12-26 18:55:54 +08:00
parent c2b37503fc
commit 0658b82f39
43 changed files with 3979 additions and 1208 deletions

View File

@@ -0,0 +1,119 @@
/* UniApp
/SCSSLW (Us7 */
.meeting-card {
padding: 24rpx 32rpx;
border: 2rpx solid #e4e7ed;
border-radius: 16rpx;
background-color: #fff;
width: 100%;
box-sizing: border-box;
}
.meeting-card--scheduled {
border-left: 8rpx solid #409eff;
}
.meeting-card--ongoing {
border-left: 8rpx solid #67c23a;
}
.meeting-card--ended {
border-left: 8rpx solid #909399;
background-color: #f5f7fa;
}
.meeting-card-header {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-bottom: 24rpx;
}
.meeting-card-title {
font-size: 32rpx;
font-weight: 600;
color: #303133;
flex: 1;
}
.meeting-card-status {
margin-left: 16rpx;
}
.status-badge {
display: inline-block;
padding: 4rpx 16rpx;
border-radius: 8rpx;
font-size: 24rpx;
font-weight: 500;
}
.status-scheduled {
background-color: #ecf5ff;
color: #409eff;
}
.status-ongoing {
background-color: #f0f9ff;
color: #67c23a;
}
.status-ended {
background-color: #f4f4f5;
color: #909399;
}
.meeting-card-time {
display: flex;
flex-direction: column;
margin-bottom: 24rpx;
font-size: 28rpx;
color: #606266;
}
.meeting-card-time text {
line-height: 1.5;
margin-bottom: 8rpx;
}
.meeting-card-content {
margin-bottom: 24rpx;
}
.meeting-card-desc {
font-size: 28rpx;
color: #909399;
line-height: 1.5;
}
.meeting-card-action {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding-top: 24rpx;
border-top: 2rpx solid #ebeef5;
}
.meeting-card-countdown {
font-size: 28rpx;
color: #409eff;
font-weight: 500;
}
.meeting-card-action button {
padding: 8rpx 24rpx;
font-size: 28rpx;
min-width: 160rpx;
border-radius: 8rpx;
}
.meeting-card-action button[disabled] {
opacity: 0.6;
}
.meeting-card-action button text {
font-size: 28rpx;
}