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