|
@@ -18,16 +18,18 @@
|
|
|
<uni-list class="admin-list-box">
|
|
|
<uni-list-item v-for="item in data.list" class="admin-list-item-box">
|
|
|
<template v-slot:body>
|
|
|
- <view class="item-card-row">
|
|
|
- <!-- 数量 -->
|
|
|
- <view class="ks-item-top">
|
|
|
- <view>{{item.zyName}}</view>
|
|
|
- <view class="ks-zyLevelName">{{item.zyLevelName}}</view>
|
|
|
+ <view class="kecheng-list-card">
|
|
|
+ <img :src="item.pic">
|
|
|
+ <view class="item-card-row">
|
|
|
+ <!-- 数量 -->
|
|
|
+ <view class="ks-item-top">
|
|
|
+ <view class="kc-name">{{item.zyName}} [{{item.zyLevelName}}]</view>
|
|
|
+ </view>
|
|
|
+ <view class="ks-totalTm kc-totalTm">
|
|
|
+ <icon class="phone-time-icon" />时间:{{formatDuration(item.period)}}分钟
|
|
|
+ </view>
|
|
|
+ <button @click="checkKecheng(item)" type="primary" size="mini" class="item-view-btn">查看内容</button>
|
|
|
</view>
|
|
|
- <view class="ks-totalTm">
|
|
|
- <icon class="phone-time-icon" />时间:{{formatDuration(item.period)}}分钟
|
|
|
- </view>
|
|
|
- <button @click="checkKecheng(item)" type="primary" size="mini" class="item-view-btn">查看内容</button>
|
|
|
</view>
|
|
|
</template>
|
|
|
</uni-list-item>
|
|
@@ -37,7 +39,7 @@
|
|
|
</scroll-view>
|
|
|
|
|
|
<!-- 页面底端 -->
|
|
|
- <customTabbarAdminVue :current-tab="0"></customTabbarAdminVue>
|
|
|
+ <customTabbarAdminVue :current-tab="2"></customTabbarAdminVue>
|
|
|
</view>
|
|
|
</template>
|
|
|
|