|
@@ -14,8 +14,7 @@
|
|
|
<view class="kecheng-list-card-box" @click="checkKecheng(item)">
|
|
|
<img :src="item.pic">
|
|
|
<view class="card-right-box">
|
|
|
- <view class="card-name">{{item.zyName}}</view>
|
|
|
- <view>{{item.zyName}}{{item.zyLevelName}}</view>
|
|
|
+ <view class="card-name">{{item.name}}</view>
|
|
|
<view>课时:{{formatSecondsToCnhms(item.period, true)}}</view>
|
|
|
<view>{{item.createTime}}</view>
|
|
|
</view>
|
|
@@ -48,7 +47,6 @@
|
|
|
} from "@/utils/common.js"
|
|
|
|
|
|
const data = reactive({
|
|
|
- zyName: '', // 职业名称
|
|
|
list: [], // 考试列表
|
|
|
loading: false,
|
|
|
page: 0,
|
|
@@ -99,7 +97,6 @@
|
|
|
const opt = {
|
|
|
page: 1,
|
|
|
size: 10, // 固定查询10条
|
|
|
- zyName: data.zyName
|
|
|
}
|
|
|
data.list = [];
|
|
|
// 数学
|
|
@@ -128,7 +125,6 @@
|
|
|
const opt = {
|
|
|
page: 1,
|
|
|
size: 10, // 固定查询10条
|
|
|
- zyName: data.zyName
|
|
|
}
|
|
|
if (data.state == 'no-more') return;
|
|
|
data.state = 'loading';
|