|
@@ -1,7 +1,8 @@
|
|
|
<template>
|
|
|
<div class="trainModel">
|
|
|
<div class="visit-tips" v-show="activeType == 'visited'">
|
|
|
- <span>学员上周训练时间不足80分钟或训练次数小于4次则需要回访</span>
|
|
|
+ <span>上周训练时长不足80分钟或训练次数小于4次的学员<br />
|
|
|
+ 需在每周三24:00前完成回访</span>
|
|
|
</div>
|
|
|
<search @onSearch="onSearch" placeholder="学生姓名或手机号">
|
|
|
<template #left>
|
|
@@ -16,28 +17,28 @@
|
|
|
<van-col span="6" class="title-style" @click="onSort(0)">
|
|
|
训练时长
|
|
|
<div>
|
|
|
- <i class="box box-up" :class="{'active': searchArray[0] == 'ASC'}" style="margin-bottom: .02rem;"></i>
|
|
|
+ <i class="box box-up" :class="{'active': searchArray[0] == 'ASC'}" style="margin-bottom: .03rem;"></i>
|
|
|
<i class="box box-down" :class="{'active': searchArray[0] == 'DESC'}"></i>
|
|
|
</div>
|
|
|
</van-col>
|
|
|
<van-col span="6" class="title-style" @click="onSort(1)">
|
|
|
训练次数
|
|
|
<div>
|
|
|
- <i class="box box-up" :class="{'active': searchArray[1] == 'ASC'}" style="margin-bottom: .02rem;"></i>
|
|
|
+ <i class="box box-up" :class="{'active': searchArray[1] == 'ASC'}" style="margin-bottom: .03rem;"></i>
|
|
|
<i class="box box-down" :class="{'active': searchArray[1] == 'DESC'}"></i>
|
|
|
</div>
|
|
|
</van-col>
|
|
|
<van-col span="6" class="title-style" @click="onSort(2)">
|
|
|
训练天数
|
|
|
<div>
|
|
|
- <i class="box box-up" :class="{'active': searchArray[2] == 'ASC'}" style="margin-bottom: .02rem;"></i>
|
|
|
+ <i class="box box-up" :class="{'active': searchArray[2] == 'ASC'}" style="margin-bottom: .03rem;"></i>
|
|
|
<i class="box box-down" :class="{'active': searchArray[2] == 'DESC'}"></i>
|
|
|
</div>
|
|
|
</van-col>
|
|
|
<van-col span="6" class="title-style" @click="onSort(3)">
|
|
|
评测次数
|
|
|
<div>
|
|
|
- <i class="box box-up" :class="{'active': searchArray[3] == 'ASC'}" style="margin-bottom: .02rem;"></i>
|
|
|
+ <i class="box box-up" :class="{'active': searchArray[3] == 'ASC'}" style="margin-bottom: .03rem;"></i>
|
|
|
<i class="box box-down" :class="{'active': searchArray[3] == 'DESC'}"></i>
|
|
|
</div>
|
|
|
</van-col>
|
|
@@ -225,20 +226,25 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
+/deep/.van-dropdown-menu__title::after {
|
|
|
+ border-color: transparent transparent #01C1B5 #01C1B5;
|
|
|
+}
|
|
|
.calendarColor {
|
|
|
color: #333;
|
|
|
font-size: .14rem;
|
|
|
}
|
|
|
.visit-tips {
|
|
|
background-color: #fff;
|
|
|
- padding: 10px 10px 0;
|
|
|
+ // padding: 10px 10px 0;
|
|
|
+ padding: 10px 12px 0;
|
|
|
text-align: center;
|
|
|
span {
|
|
|
- display: inline-block;
|
|
|
+ display: block;
|
|
|
padding: 6px 12px;
|
|
|
background-color: #FFF6DE;
|
|
|
font-size: 12px;
|
|
|
color: #FF802C;
|
|
|
+ text-align: left;
|
|
|
}
|
|
|
}
|
|
|
.searchArray {
|