支持回话过期自动登录

This commit is contained in:
wuxw 2025-07-11 08:58:30 +08:00
parent 5e59e7c314
commit 89122d668a

View File

@ -1,10 +1,10 @@
<template>
<div class="animated fadeInRight padding">
<el-row :gutter="20">
<el-row :gutter="10">
<el-col :span="3">
<div class="border-radius">
<div class="margin-xs-r treeview">
<ul class="list-group text-center border-radius">
<div class=" treeview">
<ul class="list-group text-center ">
<li v-for="(item, index) in feeTypeCds" :key="index" @click="swatchFeeTypeCd(item)"
:class="{ 'vc-node-selected': conditions.feeTypeCd == item.statusCd }"
class="list-group-item node-orgTree">
@ -18,7 +18,7 @@
<el-card class="ibox">
<div slot="header" class="flex justify-between">
<span>{{ $t('feeConfigManage.queryCondition') }}</span>
<el-button type="text" style="float: right;" @click="_moreCondition()">
<el-button type="text" size="small" @click="_moreCondition()">
{{ moreCondition ? $t('feeConfigManage.hide') : $t('feeConfigManage.more') }}
</el-button>
</div>
@ -202,7 +202,8 @@ export default {
feeTypeCd: '',
isDefault: 'F',
paymentCd: '',
deductFrom: ''
deductFrom: '',
}
}
},
@ -216,7 +217,7 @@ export default {
const data = await getDict('pay_fee_config', 'fee_type_cd')
let _feeTypeCds = {
name: this.$t('common.all'),
value: ''
statusCd: ''
}
this.feeTypeCds = [_feeTypeCds, ...data]
},
@ -324,7 +325,7 @@ export default {
.list-group-item {
padding: 12px 15px;
cursor: pointer;
border-bottom: 1px solid #ebeef5;
/*border-bottom: 1px solid #ebeef5;*/
}
.list-group-item:hover {
@ -332,8 +333,8 @@ export default {
}
.vc-node-selected {
background-color: #ecf5ff;
color: #409eff;
background-color: #409eff;
color: #fff;
font-weight: bold;
}