|
@@ -3,7 +3,7 @@
|
|
|
<m-header v-if="headerStatus" />
|
|
|
|
|
|
<van-list v-if="dataShow" v-model="loading" :finished="finished" finished-text="没有更多了" @load="getList">
|
|
|
- <van-cell v-for="(item, index) in dataList" :key="index" @click="onGOTO(item)">
|
|
|
+ <van-cell v-for="(item, index) in dataList" :key="index" @click="onGOTO(item)" :class="item.statusEnum == 'WITHDRAWN' ? 'hideArrow' : '' " is-link>
|
|
|
<template #title>{{ item.createTime | getMonthDay }} {{ item.createTime | getHourMin }} </template>
|
|
|
<template #default>{{ new Date(item.salarySettlementMonth + '-01').getMonth() + 1 }}月课酬申诉
|
|
|
<span :class="item.statusEnum">{{ item.statusEnum | statusFilter }}</span>
|
|
@@ -136,6 +136,11 @@ export default {
|
|
|
/deep/.van-cell {
|
|
|
font-size: .16rem;
|
|
|
padding: .15rem .16rem;
|
|
|
+ &.hideArrow {
|
|
|
+ .van-cell__right-icon {
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+ }
|
|
|
.van-cell__title {
|
|
|
color: #808080;
|
|
|
}
|