接龙调整

This commit is contained in:
hebo 2025-09-28 21:18:16 +08:00
parent 4a16852cac
commit de714aeb69
2 changed files with 1 additions and 52 deletions

View File

@ -206,7 +206,7 @@ const menuItems = ref([
title: "就餐详情",
icon: "/static/base/home/contacts-book-3-line.png",
path: "/pages/base/jc/index",
permissionKey: "school-jcjf",
permissionKey: "school-jcxq",
},
{
title: "兴趣课选课",

View File

@ -29,16 +29,6 @@
价格<text class="price-value">¥{{ jcBz.bzJe || 0 }}</text>
</view>
<view class="jc-bz-desc">{{ jcBz.bzSm || '暂无描述' }}</view>
<view class="jc-bz-capacity">
容量<text class="capacity-value">{{ jcBz.hasNum || 0 }}/{{ jcBz.maxNum || 0 }}</text>
</view>
<!-- 缴费状态标识 -->
<view v-if="jcBz.paidStatus" class="paid-status" :class="`status-${jcBz.paidStatus}`">
<text v-if="jcBz.paidStatus === 'paid'">已缴费</text>
<text v-else-if="jcBz.paidStatus === 'unpaid'">已报名待确认</text>
<text v-else-if="jcBz.paidStatus === 'notApplied'">未报名</text>
</view>
<!-- 显示更多详细信息 -->
<view class="jc-bz-details">
@ -50,14 +40,6 @@
<text class="detail-label">缴费结束</text>
<text class="detail-value">{{ jcBz.jfJsSj }}</text>
</view>
<view class="detail-item">
<text class="detail-label">缴费状态</text>
<text class="detail-value">{{ jcBz.sfJf === '1' ? '需要缴费' : '免费' }}</text>
</view>
<view class="detail-item">
<text class="detail-label">发布状态</text>
<text class="detail-value">{{ jcBz.sfFb === '1' ? '已发布' : '待发布' }}</text>
</view>
</view>
</view>
</view>
@ -353,39 +335,6 @@ onMounted(() => {
overflow: hidden;
}
.jc-bz-capacity {
font-size: 12px;
color: #999;
margin-bottom: 10px;
.capacity-value {
color: #2879ff;
font-weight: 500;
}
}
.paid-status {
display: inline-block;
padding: 2px 8px;
border-radius: 12px;
font-size: 12px;
margin-bottom: 10px;
&.status-paid {
background-color: #f0f9ff;
color: #3fbf72;
}
&.status-unpaid {
background-color: #fff7e6;
color: #ff8c00;
}
&.status-notApplied {
background-color: #f5f5f5;
color: #999;
}
}
.jc-bz-details {
margin-top: 10px;