|
@@ -1,18 +1,17 @@
|
|
|
<template>
|
|
|
- <view class="admin-kaoshi-page">
|
|
|
- <view class="icon-title-navBar-box">
|
|
|
+ <view class="phone-list-page">
|
|
|
+ <view class="icon-title-bjcolor-navBar-box">
|
|
|
<view @click="goUpPage" class="nav-bar-icon"></view>
|
|
|
<text class="nav-bar-title">课程管理</text>
|
|
|
</view>
|
|
|
<!-- 课程列表 -->
|
|
|
- <view class="kaoshi-content-box">
|
|
|
<scroll-view scroll-y="true" refresher-enabled="true" :refresher-triggered="data.loading"
|
|
|
:refresher-threshold="50" refresher-background="transparent" @refresherrefresh="onRefresh"
|
|
|
- class="kaoshi-scroll-view">
|
|
|
+ class="phone-scroll-view">
|
|
|
<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-kaoshi-row">
|
|
|
+ <view class="item-card-row">
|
|
|
<!-- 数量 -->
|
|
|
<view class="ks-item-top">
|
|
|
<view>{{item.name}}</view>
|
|
@@ -21,7 +20,7 @@
|
|
|
<view class="ks-totalTm">
|
|
|
<icon class="phone-time-icon" />时间:{{formatSecondsToCnhms(item.period, true)}}
|
|
|
</view>
|
|
|
- <button @click="checkKecheng(item)" type="primary" size="mini" class="kaoshi-btn">查看内容</button>
|
|
|
+ <button @click="checkKecheng(item)" type="primary" size="mini" class="item-view-btn">查看内容</button>
|
|
|
</view>
|
|
|
</template>
|
|
|
</uni-list-item>
|
|
@@ -29,7 +28,6 @@
|
|
|
:contentText="data.contentText"></uni-load-more>
|
|
|
</uni-list>
|
|
|
</scroll-view>
|
|
|
- </view>
|
|
|
|
|
|
<!-- 页面底端 -->
|
|
|
<customTabbarClientVue></customTabbarClientVue>
|