|
@@ -1,282 +1,377 @@
|
|
<template>
|
|
<template>
|
|
- <div>
|
|
|
|
- <MHeader />
|
|
|
|
- <div class="searchSection">
|
|
|
|
- <div class="searchDate">
|
|
|
|
- <div class="date startDate" @click="dateSection.status = true">
|
|
|
|
- 开始<span>2020/03/03</span>
|
|
|
|
- </div>-
|
|
|
|
- <div class="date endDate" @click="dateSection.status = true">
|
|
|
|
- 结束<span>2020/03/03</span>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <!-- <div class="searchMore">
|
|
|
|
- 筛选<i class="arrowDown"></i>
|
|
|
|
- </div> -->
|
|
|
|
-
|
|
|
|
- <van-dropdown-menu active-color="#14928A">
|
|
|
|
- <van-dropdown-item title="筛选" ref="item">
|
|
|
|
- <div class="dropItem">
|
|
|
|
- <p class="dropTitle">评价类型</p>
|
|
|
|
- <div class="radioGroup">
|
|
|
|
- <span class="actived">月报</span>
|
|
|
|
- <span>课次评价</span>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <div class="dropItem">
|
|
|
|
- <p class="dropTitle">评价进度</p>
|
|
|
|
- <div class="radioGroup">
|
|
|
|
- <span class="actived">待完成</span>
|
|
|
|
- <span>已完成</span>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <div class="dropItem">
|
|
|
|
- <p class="dropTitle">提交作业</p>
|
|
|
|
- <div class="radioGroup">
|
|
|
|
- <span class="actived">是</span>
|
|
|
|
- <span>否</span>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <div class="dropItem">
|
|
|
|
- <p class="dropTitle">完成双向沟通</p>
|
|
|
|
- <div class="radioGroup">
|
|
|
|
- <span class="actived">是</span>
|
|
|
|
- <span>否</span>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <div class="btnGroup">
|
|
|
|
- <div class="btn btn-reset">重置</div>
|
|
|
|
- <div class="btn btn-sure">确定</div>
|
|
|
|
- </div>
|
|
|
|
-
|
|
|
|
- </van-dropdown-item>
|
|
|
|
- </van-dropdown-menu>
|
|
|
|
|
|
+ <div>
|
|
|
|
+ <MHeader />
|
|
|
|
+ <div class="searchSection">
|
|
|
|
+ <div class="searchDate">
|
|
|
|
+ <div class="date startDate" @click="dateSection.status = true">
|
|
|
|
+ 开始
|
|
|
|
+ <span>{{dateSection.showStartDate}}</span>
|
|
|
|
+ </div>-
|
|
|
|
+ <div class="date endDate" @click="dateEndSection.status = true">
|
|
|
|
+ 结束
|
|
|
|
+ <span>{{dateEndSection.showEndDate}}</span>
|
|
</div>
|
|
</div>
|
|
|
|
+ </div>
|
|
|
|
+ <!-- <div class="searchMore">
|
|
|
|
+ 筛选<i class="arrowDown"></i>
|
|
|
|
+ </div>-->
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- <van-cell-group>
|
|
|
|
- <van-cell v-for="i in 5" :key="i" class="cellGroup" title="3月25日" title-class="sectionTitle" value-class="sectionValue">
|
|
|
|
- <template solt="default">
|
|
|
|
- <p class="content van-ellipsis">长笛·王小明长笛·王小明长笛·王小明长笛·王小明</p>
|
|
|
|
- <van-button type="primary" round size="small">提交评价</van-button>
|
|
|
|
- </template>
|
|
|
|
- </van-cell>
|
|
|
|
- </van-cell-group>
|
|
|
|
- <!-- <m-empty class="empty" v-else key="data" /> -->
|
|
|
|
|
|
+ <van-dropdown-menu active-color="#14928A">
|
|
|
|
+ <van-dropdown-item title="筛选" ref="item" v-model="search.status">
|
|
|
|
+ <!-- <div class="dropItem">
|
|
|
|
+ <p class="dropTitle">评价类型</p>
|
|
|
|
+ <div class="radioGroup">
|
|
|
|
+ <span class="actived">月报</span>
|
|
|
|
+ <span>课次评价</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div> -->
|
|
|
|
+ <div class="dropItem">
|
|
|
|
+ <p class="dropTitle">评价进度</p>
|
|
|
|
+ <div class="radioGroup">
|
|
|
|
+ <span :class="search.hasReview==0?'actived':''" @click="search.hasReview=0">待完成</span>
|
|
|
|
+ <span :class="search.hasReview==1?'actived':''" @click="search.hasReview=1">已完成</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="dropItem">
|
|
|
|
+ <p class="dropTitle">提交作业</p>
|
|
|
|
+ <div class="radioGroup">
|
|
|
|
+ <span :class="search.hasHandHomework==0?'actived':''" @click="search.hasHandHomework=0">是</span>
|
|
|
|
+ <span :class="search.hasHandHomework==1?'actived':''" @click="search.hasHandHomework=1">否</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="dropItem">
|
|
|
|
+ <p class="dropTitle">完成双向沟通</p>
|
|
|
|
+ <div class="radioGroup">
|
|
|
|
+ <span :class="search.hasLiaison==0?'actived':''" @click="search.hasLiaison=0">是</span>
|
|
|
|
+ <span :class="search.hasLiaison==1?'actived':''" @click="search.hasLiaison=1">否</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="btnGroup">
|
|
|
|
+ <div class="btn btn-reset" @click="resetSerach">重置</div>
|
|
|
|
+ <div class="btn btn-sure" @click="submitInfo">确定</div>
|
|
|
|
+ </div>
|
|
|
|
+ </van-dropdown-item>
|
|
|
|
+ </van-dropdown-menu>
|
|
|
|
+ </div>
|
|
|
|
|
|
- <!-- 日期弹窗 -->
|
|
|
|
- <van-popup position="bottom" v-model="dateSection.status">
|
|
|
|
- <van-datetime-picker
|
|
|
|
- v-model="dateSection.currentDate"
|
|
|
|
- type="date"
|
|
|
|
- :min-date="dateSection.minDate"
|
|
|
|
- :max-date="dateSection.maxDate"
|
|
|
|
- :formatter="formatter" />
|
|
|
|
- </van-popup>
|
|
|
|
|
|
+ <van-cell-group>
|
|
|
|
+ <van-cell
|
|
|
|
+ v-for="(item,index) in courseList"
|
|
|
|
+ :key="index"
|
|
|
|
+ class="cellGroup"
|
|
|
|
+ title="3月25日"
|
|
|
|
+ title-class="sectionTitle"
|
|
|
|
+ value-class="sectionValue"
|
|
|
|
+ >
|
|
|
|
+ <template solt="default">
|
|
|
|
+ <p class="content van-ellipsis">{{ item.courseName }}</p>
|
|
|
|
+ <van-button type="primary" round size="small" v-if="item.reviewId==0" @click="submitReview(item)">提交评价</van-button>
|
|
|
|
+ <van-button type="primary" round size="small" v-if="item.reviewId>0" @click="submitReview(item)">修改评价</van-button>
|
|
|
|
+ </template>
|
|
|
|
+ </van-cell>
|
|
|
|
+ </van-cell-group>
|
|
|
|
+ <!-- <m-empty class="empty" v-else key="data" /> -->
|
|
|
|
|
|
- <van-popup position="bottom" v-model="search.status">
|
|
|
|
|
|
+ <!-- 日期开始弹窗 -->
|
|
|
|
+ <van-popup position="bottom" v-model="dateSection.status">
|
|
|
|
+ <van-datetime-picker
|
|
|
|
+ v-model="dateSection.currentDate"
|
|
|
|
+ type="date"
|
|
|
|
+ :min-date="dateSection.minDate"
|
|
|
|
+ :max-date="dateSection.maxDate"
|
|
|
|
+ :formatter="formatter"
|
|
|
|
+ @confirm="confirmStartTime()"
|
|
|
|
+ @cancel='cancelTime()'
|
|
|
|
+ />
|
|
|
|
+ </van-popup>
|
|
|
|
+ <!-- 日期结束弹窗 -->
|
|
|
|
+ <van-popup position="bottom" v-model="dateEndSection.status">
|
|
|
|
+ <van-datetime-picker
|
|
|
|
+ v-model="dateEndSection.currentDate"
|
|
|
|
+ type="date"
|
|
|
|
+ :min-date="dateSection.minDate"
|
|
|
|
+ :max-date="dateSection.maxDate"
|
|
|
|
+ :formatter="formatter"
|
|
|
|
+ @confirm="confirmEndTime()"
|
|
|
|
+ @cancel='cancelTime()'
|
|
|
|
+ />
|
|
|
|
+ </van-popup>
|
|
|
|
|
|
- </van-popup>
|
|
|
|
- </div>
|
|
|
|
|
|
+ <van-popup position="bottom" v-model="search.status"></van-popup>
|
|
|
|
+ </div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
-import MHeader from '@/components/MHeader'
|
|
|
|
-import MEmpty from '@/components/MEmpty'
|
|
|
|
|
|
+import MHeader from "@/components/MHeader";
|
|
|
|
+import MEmpty from "@/components/MEmpty";
|
|
|
|
+import { getPracticeGroup} from '@/api/teacher'
|
|
export default {
|
|
export default {
|
|
- name: 'teacherList',
|
|
|
|
- components: { MHeader, MEmpty },
|
|
|
|
- data () {
|
|
|
|
- return {
|
|
|
|
- dateSection: {
|
|
|
|
- status: false,
|
|
|
|
- minDate: new Date(2020, 0, 1),
|
|
|
|
- maxDate: new Date(2025, 10, 1),
|
|
|
|
- currentDate: new Date()
|
|
|
|
- },
|
|
|
|
- search: {
|
|
|
|
- status: false
|
|
|
|
- },
|
|
|
|
- value: 0,
|
|
|
|
- switch1: 1,
|
|
|
|
- switch2: 2,
|
|
|
|
- option: [
|
|
|
|
- { text: '全部商品', value: 0 },
|
|
|
|
- { text: '新款商品', value: 1 },
|
|
|
|
- { text: '活动商品', value: 2 }
|
|
|
|
- ]
|
|
|
|
|
|
+ name: "teacherList",
|
|
|
|
+ components: { MHeader, MEmpty },
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ dateSection: {
|
|
|
|
+ status: false,
|
|
|
|
+ minDate: new Date(2020, 0, 1),
|
|
|
|
+ maxDate: new Date(2025, 10, 1),
|
|
|
|
+ currentDate: null,
|
|
|
|
+ showStartDate: null
|
|
|
|
+ },
|
|
|
|
+ dateEndSection: {
|
|
|
|
+ status: false,
|
|
|
|
+ minDate: new Date(2020, 0, 1),
|
|
|
|
+ maxDate: new Date(2025, 10, 1),
|
|
|
|
+ currentDate: null,
|
|
|
|
+ showEndDate: null
|
|
|
|
+ },
|
|
|
|
+ search: {
|
|
|
|
+ status: false,
|
|
|
|
+ hasReview:null,
|
|
|
|
+ hasHandHomework:null,
|
|
|
|
+ hasLiaison:null,
|
|
|
|
+ },
|
|
|
|
+ courseList:[]
|
|
|
|
+ };
|
|
|
|
+ },
|
|
|
|
+ created(){
|
|
|
|
+ let params = this.$route.query;
|
|
|
|
+ if (params.Authorization) {
|
|
|
|
+ localStorage.setItem("Authorization", decodeURI(params.Authorization));
|
|
|
|
+ localStorage.setItem("userInfo", decodeURI(params.Authorization));
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ mounted() {
|
|
|
|
+ this.dateSection.currentDate = new Date();
|
|
|
|
+ this.dateSection.showStartDate = this.timeFormat(
|
|
|
|
+ this.dateSection.currentDate
|
|
|
|
+ );
|
|
|
|
+ this.dateEndSection.currentDate = new Date();
|
|
|
|
+ this.dateEndSection.showEndDate = this.timeFormat(
|
|
|
|
+ this.dateEndSection.currentDate
|
|
|
|
+ );
|
|
|
|
+ this.getList();
|
|
|
|
+ // this.getStudent()
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ formatter(type, val) {
|
|
|
|
+ if (type === "year") {
|
|
|
|
+ return `${val}年`;
|
|
|
|
+ } else if (type === "month") {
|
|
|
|
+ return `${val}月`;
|
|
|
|
+ } else if (type == "day") {
|
|
|
|
+ return `${val}日`;
|
|
|
|
+ }
|
|
|
|
+ return val;
|
|
|
|
+ },
|
|
|
|
+ changeStartTime() {},
|
|
|
|
+
|
|
|
|
+ confirmStartTime() {
|
|
|
|
+ this.dateSection.showStartDate = this.timeFormat(
|
|
|
|
+ this.dateSection.currentDate
|
|
|
|
+ );
|
|
|
|
+ this.getList()
|
|
|
|
+ this.dateSection.status = false;
|
|
|
|
+ },
|
|
|
|
+ confirmEndTime() {
|
|
|
|
+ this.dateEndSection.showEndDate = this.timeFormat(
|
|
|
|
+ this.dateEndSection.currentDate
|
|
|
|
+ );
|
|
|
|
+ this.getList()
|
|
|
|
+ this.dateEndSection.status = false;
|
|
|
|
+ },
|
|
|
|
+ cancelTime(){
|
|
|
|
+ this.dateEndSection.status = false;
|
|
|
|
+ this.dateSection.status = false;
|
|
|
|
+ },
|
|
|
|
+ timeFormat(time) {
|
|
|
|
+ // 时间格式化 2019-09-08
|
|
|
|
+ let year = time.getFullYear();
|
|
|
|
+ let month = time.getMonth() + 1;
|
|
|
|
+ let day = time.getDate();
|
|
|
|
+ return year + "/" + month + "/" + day;
|
|
|
|
+ },
|
|
|
|
+ resetSerach(){
|
|
|
|
+ this.search = {
|
|
|
|
+ status: false,
|
|
|
|
+ hasReview:null,
|
|
|
|
+ hasHandHomework:null,
|
|
|
|
+ hasLiaison:null,
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- mounted() {
|
|
|
|
- // this.getStudent()
|
|
|
|
|
|
+ submitInfo(){
|
|
|
|
+ // 提交请求
|
|
|
|
+ this.getList();
|
|
|
|
+ this.search.status = false;
|
|
|
|
+ this.$refs.item.toggle();
|
|
},
|
|
},
|
|
- methods: {
|
|
|
|
- formatter(type, val) {
|
|
|
|
- if (type === 'year') {
|
|
|
|
- return `${val}年`
|
|
|
|
- } else if (type === 'month') {
|
|
|
|
- return `${val}月`
|
|
|
|
- } else if(type == 'day') {
|
|
|
|
- return `${val}日`
|
|
|
|
|
|
+ getList(){
|
|
|
|
+
|
|
|
|
+ this.search.startTime = this.dateSection.showStartDate.replace(/\//g,'-')+' 00:00:00'
|
|
|
|
+ this.search.endTime = this.dateEndSection.showEndDate.replace(/\//g,'-')+' 23:59:59',
|
|
|
|
+ this.search.rows = 100;
|
|
|
|
+ getPracticeGroup(this.search).then(res=>{
|
|
|
|
+ if(res.data.code == 200){
|
|
|
|
+ this.courseList = res.data.data.rows;
|
|
}
|
|
}
|
|
- return val
|
|
|
|
- }
|
|
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ submitReview(item){
|
|
|
|
+ this.$router.push({path:'/courseEvaluation',query:{id:item.id,reviewId:item.reviewId}})
|
|
}
|
|
}
|
|
-}
|
|
|
|
|
|
+ }
|
|
|
|
+};
|
|
</script>
|
|
</script>
|
|
<style lang="less" scoped>
|
|
<style lang="less" scoped>
|
|
@import url("../../assets/commonLess/variable.less");
|
|
@import url("../../assets/commonLess/variable.less");
|
|
.searchSection {
|
|
.searchSection {
|
|
- display: flex;
|
|
|
|
- justify-content: space-between;
|
|
|
|
- background: #fff;
|
|
|
|
- margin-bottom: .15rem;
|
|
|
|
- padding: 0 0.16rem;
|
|
|
|
- align-items: center;
|
|
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+ background: #fff;
|
|
|
|
+ margin-bottom: 0.15rem;
|
|
|
|
+ padding: 0 0.16rem;
|
|
|
|
+ align-items: center;
|
|
|
|
|
|
- .searchDate {
|
|
|
|
- display: flex;
|
|
|
|
|
|
+ .searchDate {
|
|
|
|
+ display: flex;
|
|
|
|
+ color: #666666;
|
|
|
|
+ height: auto;
|
|
|
|
+ .startDate {
|
|
|
|
+ margin-right: 0.05rem;
|
|
|
|
+ }
|
|
|
|
+ .endDate {
|
|
|
|
+ margin-left: 0.05rem;
|
|
|
|
+ }
|
|
|
|
+ .date {
|
|
|
|
+ padding: 0.02rem 0.06rem;
|
|
|
|
+ border: 1px solid #e5e5e5;
|
|
|
|
+ font-size: 0.14rem;
|
|
|
|
+ color: #999999;
|
|
|
|
+ span {
|
|
|
|
+ padding-left: 0.04rem;
|
|
|
|
+ font-size: 0.15rem;
|
|
color: #666666;
|
|
color: #666666;
|
|
- height: auto;
|
|
|
|
- .startDate {
|
|
|
|
- margin-right: .05rem;
|
|
|
|
- }
|
|
|
|
- .endDate {
|
|
|
|
- margin-left: .05rem;
|
|
|
|
- }
|
|
|
|
- .date {
|
|
|
|
- padding: .02rem .06rem;
|
|
|
|
- border: 1px solid #E5E5E5;
|
|
|
|
- font-size: .14rem;
|
|
|
|
- color: #999999;
|
|
|
|
- span {
|
|
|
|
- padding-left: .04rem;
|
|
|
|
- font-size: .15rem;
|
|
|
|
- color: #666666;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
+ }
|
|
|
|
+/deep/.van-hairline--top-bottom::after, .van-hairline-unset--top-bottom::after{
|
|
|
|
+ border-width: 0 0;
|
|
|
|
+}
|
|
|
|
+ /deep/.van-dropdown-menu__title {
|
|
|
|
+ font-size: 0.17rem;
|
|
|
|
+ color: #1a1a1a;
|
|
|
|
+ }
|
|
|
|
|
|
- /deep/.van-dropdown-menu__title {
|
|
|
|
- font-size: .17rem;
|
|
|
|
- color: #1A1A1A;
|
|
|
|
|
|
+ .btnGroup {
|
|
|
|
+ display: flex;
|
|
|
|
+ margin-top: 0.15rem;
|
|
|
|
+ .btn {
|
|
|
|
+ width: 50%;
|
|
|
|
+ text-align: center;
|
|
|
|
+ font-size: 0.17rem;
|
|
|
|
+ color: #000;
|
|
|
|
+ padding: 0.12rem 0;
|
|
}
|
|
}
|
|
-
|
|
|
|
- .btnGroup {
|
|
|
|
- display: flex;
|
|
|
|
- margin-top: .15rem;
|
|
|
|
- .btn {
|
|
|
|
- width: 50%;
|
|
|
|
- text-align: center;
|
|
|
|
- font-size: .17rem;
|
|
|
|
- color: #000;
|
|
|
|
- padding: .12rem 0;
|
|
|
|
- }
|
|
|
|
- .btn-reset {
|
|
|
|
- background-color: #E1F6F4;
|
|
|
|
- color: #14928A;
|
|
|
|
- }
|
|
|
|
- .btn-sure {
|
|
|
|
- background-color: #14928A;
|
|
|
|
- color: #fff;
|
|
|
|
- }
|
|
|
|
|
|
+ .btn-reset {
|
|
|
|
+ background-color: #e1f6f4;
|
|
|
|
+ color: #14928a;
|
|
}
|
|
}
|
|
- .dropItem {
|
|
|
|
- padding: .1rem .16rem;
|
|
|
|
- .dropTitle {
|
|
|
|
- font-size: .17rem;
|
|
|
|
- color: #1A1A1A;
|
|
|
|
- }
|
|
|
|
- .radioGroup {
|
|
|
|
- display: flex;
|
|
|
|
- justify-content: space-between;
|
|
|
|
- padding-top: .1rem;
|
|
|
|
- span {
|
|
|
|
- color: #000000;
|
|
|
|
- background-color: #F4F4F4;
|
|
|
|
- width: 48%;
|
|
|
|
- padding: .1rem 0;
|
|
|
|
- text-align: center;
|
|
|
|
- border-radius: 2px;
|
|
|
|
- &.actived {
|
|
|
|
- color: #14928A;
|
|
|
|
- background: url('../../assets/images/audition/icon_check.png') no-repeat bottom right #E4F6F5;
|
|
|
|
- background-size: .2rem;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ .btn-sure {
|
|
|
|
+ background-color: #14928a;
|
|
|
|
+ color: #fff;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .dropItem {
|
|
|
|
+ padding: 0.1rem 0.16rem;
|
|
|
|
+ .dropTitle {
|
|
|
|
+ font-size: 0.17rem;
|
|
|
|
+ color: #1a1a1a;
|
|
|
|
+ }
|
|
|
|
+ .radioGroup {
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+ padding-top: 0.1rem;
|
|
|
|
+ span {
|
|
|
|
+ color: #000000;
|
|
|
|
+ background-color: #f4f4f4;
|
|
|
|
+ width: 48%;
|
|
|
|
+ padding: 0.1rem 0;
|
|
|
|
+ text-align: center;
|
|
|
|
+ border-radius: 2px;
|
|
|
|
+ &.actived {
|
|
|
|
+ color: #14928a;
|
|
|
|
+ background: url("../../assets/images/audition/icon_check.png")
|
|
|
|
+ no-repeat bottom right #e4f6f5;
|
|
|
|
+ background-size: 0.2rem;
|
|
}
|
|
}
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
+ }
|
|
}
|
|
}
|
|
.cellGroup {
|
|
.cellGroup {
|
|
- padding: .16rem;
|
|
|
|
|
|
+ padding: 0.16rem;
|
|
}
|
|
}
|
|
.sectionTitle {
|
|
.sectionTitle {
|
|
- font-size: .16rem;
|
|
|
|
- color: #808080;
|
|
|
|
- align-items: center;
|
|
|
|
- display: flex;
|
|
|
|
|
|
+ font-size: 0.16rem;
|
|
|
|
+ color: #808080;
|
|
|
|
+ align-items: center;
|
|
|
|
+ display: flex;
|
|
}
|
|
}
|
|
.sectionValue {
|
|
.sectionValue {
|
|
- display: flex;
|
|
|
|
- width: 70%;
|
|
|
|
- flex: 1 auto;
|
|
|
|
- justify-content: space-between;
|
|
|
|
- align-items: center;
|
|
|
|
- height: auto !important;
|
|
|
|
- .content {
|
|
|
|
- font-size: .17rem;
|
|
|
|
- color: #1A1A1A;
|
|
|
|
- }
|
|
|
|
- .van-button {
|
|
|
|
- font-size: .14rem;
|
|
|
|
- background-color: #14928A;
|
|
|
|
- padding: 0 .12rem;
|
|
|
|
- min-width: .88rem;
|
|
|
|
- }
|
|
|
|
|
|
+ display: flex;
|
|
|
|
+ width: 70%;
|
|
|
|
+ flex: 1 auto;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+ align-items: center;
|
|
|
|
+ height: auto !important;
|
|
|
|
+ .content {
|
|
|
|
+ font-size: 0.17rem;
|
|
|
|
+ color: #1a1a1a;
|
|
|
|
+ }
|
|
|
|
+ .van-button {
|
|
|
|
+ font-size: 0.14rem;
|
|
|
|
+ background-color: #14928a;
|
|
|
|
+ padding: 0 0.12rem;
|
|
|
|
+ min-width: 0.88rem;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
/deep/.van-cell__title {
|
|
/deep/.van-cell__title {
|
|
- font-size: .14rem;
|
|
|
|
- color: @mFontColor;
|
|
|
|
- flex: 1 auto;
|
|
|
|
|
|
+ font-size: 0.14rem;
|
|
|
|
+ color: @mFontColor;
|
|
|
|
+ flex: 1 auto;
|
|
}
|
|
}
|
|
.logo {
|
|
.logo {
|
|
- width: .35rem;
|
|
|
|
- height: .35rem;
|
|
|
|
- margin-right: .12rem;
|
|
|
|
- border-radius: 100%;
|
|
|
|
|
|
+ width: 0.35rem;
|
|
|
|
+ height: 0.35rem;
|
|
|
|
+ margin-right: 0.12rem;
|
|
|
|
+ border-radius: 100%;
|
|
}
|
|
}
|
|
.input-cell {
|
|
.input-cell {
|
|
- padding: .12rem .16rem .2rem;
|
|
|
|
- .van-radio {
|
|
|
|
- justify-content: flex-end;
|
|
|
|
- }
|
|
|
|
|
|
+ padding: 0.12rem 0.16rem 0.2rem;
|
|
|
|
+ .van-radio {
|
|
|
|
+ justify-content: flex-end;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
/deep/.van-cell__value {
|
|
/deep/.van-cell__value {
|
|
- height: .2rem;
|
|
|
|
|
|
+ height: 0.2rem;
|
|
}
|
|
}
|
|
/deep/.van-radio__icon .van-icon {
|
|
/deep/.van-radio__icon .van-icon {
|
|
- border-color: @sFontColor;
|
|
|
|
|
|
+ border-color: @sFontColor;
|
|
}
|
|
}
|
|
/deep/.van-radio__icon--checked {
|
|
/deep/.van-radio__icon--checked {
|
|
- .van-icon {
|
|
|
|
- border-color: @orangeColor;
|
|
|
|
- background: @orangeColor;
|
|
|
|
- }
|
|
|
|
|
|
+ .van-icon {
|
|
|
|
+ border-color: @orangeColor;
|
|
|
|
+ background: @orangeColor;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
.van-tag {
|
|
.van-tag {
|
|
- margin-left: .08rem;
|
|
|
|
|
|
+ margin-left: 0.08rem;
|
|
}
|
|
}
|
|
.button-group {
|
|
.button-group {
|
|
- margin: .3rem .26rem .2rem;
|
|
|
|
- .van-button--primary {
|
|
|
|
- background: @mColor;
|
|
|
|
- border: 1px solid @mColor;
|
|
|
|
- font-size: .18rem;
|
|
|
|
- }
|
|
|
|
|
|
+ margin: 0.3rem 0.26rem 0.2rem;
|
|
|
|
+ .van-button--primary {
|
|
|
|
+ background: @mColor;
|
|
|
|
+ border: 1px solid @mColor;
|
|
|
|
+ font-size: 0.18rem;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|