Commit 89122d668aae438a1184609953d6aec0b49d99af
1 parent
5e59e7c3
支持回话过期自动登录
Showing
1 changed file
with
10 additions
and
9 deletions
src/views/fee/feeConfigManageList.vue
| 1 | <template> | 1 | <template> |
| 2 | <div class="animated fadeInRight padding"> | 2 | <div class="animated fadeInRight padding"> |
| 3 | - <el-row :gutter="20"> | 3 | + <el-row :gutter="10"> |
| 4 | <el-col :span="3"> | 4 | <el-col :span="3"> |
| 5 | <div class="border-radius"> | 5 | <div class="border-radius"> |
| 6 | - <div class="margin-xs-r treeview"> | ||
| 7 | - <ul class="list-group text-center border-radius"> | 6 | + <div class=" treeview"> |
| 7 | + <ul class="list-group text-center "> | ||
| 8 | <li v-for="(item, index) in feeTypeCds" :key="index" @click="swatchFeeTypeCd(item)" | 8 | <li v-for="(item, index) in feeTypeCds" :key="index" @click="swatchFeeTypeCd(item)" |
| 9 | :class="{ 'vc-node-selected': conditions.feeTypeCd == item.statusCd }" | 9 | :class="{ 'vc-node-selected': conditions.feeTypeCd == item.statusCd }" |
| 10 | class="list-group-item node-orgTree"> | 10 | class="list-group-item node-orgTree"> |
| @@ -18,7 +18,7 @@ | @@ -18,7 +18,7 @@ | ||
| 18 | <el-card class="ibox"> | 18 | <el-card class="ibox"> |
| 19 | <div slot="header" class="flex justify-between"> | 19 | <div slot="header" class="flex justify-between"> |
| 20 | <span>{{ $t('feeConfigManage.queryCondition') }}</span> | 20 | <span>{{ $t('feeConfigManage.queryCondition') }}</span> |
| 21 | - <el-button type="text" style="float: right;" @click="_moreCondition()"> | 21 | + <el-button type="text" size="small" @click="_moreCondition()"> |
| 22 | {{ moreCondition ? $t('feeConfigManage.hide') : $t('feeConfigManage.more') }} | 22 | {{ moreCondition ? $t('feeConfigManage.hide') : $t('feeConfigManage.more') }} |
| 23 | </el-button> | 23 | </el-button> |
| 24 | </div> | 24 | </div> |
| @@ -202,7 +202,8 @@ export default { | @@ -202,7 +202,8 @@ export default { | ||
| 202 | feeTypeCd: '', | 202 | feeTypeCd: '', |
| 203 | isDefault: 'F', | 203 | isDefault: 'F', |
| 204 | paymentCd: '', | 204 | paymentCd: '', |
| 205 | - deductFrom: '' | 205 | + deductFrom: '', |
| 206 | + | ||
| 206 | } | 207 | } |
| 207 | } | 208 | } |
| 208 | }, | 209 | }, |
| @@ -216,7 +217,7 @@ export default { | @@ -216,7 +217,7 @@ export default { | ||
| 216 | const data = await getDict('pay_fee_config', 'fee_type_cd') | 217 | const data = await getDict('pay_fee_config', 'fee_type_cd') |
| 217 | let _feeTypeCds = { | 218 | let _feeTypeCds = { |
| 218 | name: this.$t('common.all'), | 219 | name: this.$t('common.all'), |
| 219 | - value: '' | 220 | + statusCd: '' |
| 220 | } | 221 | } |
| 221 | this.feeTypeCds = [_feeTypeCds, ...data] | 222 | this.feeTypeCds = [_feeTypeCds, ...data] |
| 222 | }, | 223 | }, |
| @@ -324,7 +325,7 @@ export default { | @@ -324,7 +325,7 @@ export default { | ||
| 324 | .list-group-item { | 325 | .list-group-item { |
| 325 | padding: 12px 15px; | 326 | padding: 12px 15px; |
| 326 | cursor: pointer; | 327 | cursor: pointer; |
| 327 | - border-bottom: 1px solid #ebeef5; | 328 | + /*border-bottom: 1px solid #ebeef5;*/ |
| 328 | } | 329 | } |
| 329 | 330 | ||
| 330 | .list-group-item:hover { | 331 | .list-group-item:hover { |
| @@ -332,8 +333,8 @@ export default { | @@ -332,8 +333,8 @@ export default { | ||
| 332 | } | 333 | } |
| 333 | 334 | ||
| 334 | .vc-node-selected { | 335 | .vc-node-selected { |
| 335 | - background-color: #ecf5ff; | ||
| 336 | - color: #409eff; | 336 | + background-color: #409eff; |
| 337 | + color: #fff; | ||
| 337 | font-weight: bold; | 338 | font-weight: bold; |
| 338 | } | 339 | } |
| 339 | 340 |