mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
支持回话过期自动登录
This commit is contained in:
parent
5e59e7c314
commit
89122d668a
@ -1,10 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="animated fadeInRight padding">
|
<div class="animated fadeInRight padding">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="10">
|
||||||
<el-col :span="3">
|
<el-col :span="3">
|
||||||
<div class="border-radius">
|
<div class="border-radius">
|
||||||
<div class="margin-xs-r treeview">
|
<div class=" treeview">
|
||||||
<ul class="list-group text-center border-radius">
|
<ul class="list-group text-center ">
|
||||||
<li v-for="(item, index) in feeTypeCds" :key="index" @click="swatchFeeTypeCd(item)"
|
<li v-for="(item, index) in feeTypeCds" :key="index" @click="swatchFeeTypeCd(item)"
|
||||||
:class="{ 'vc-node-selected': conditions.feeTypeCd == item.statusCd }"
|
:class="{ 'vc-node-selected': conditions.feeTypeCd == item.statusCd }"
|
||||||
class="list-group-item node-orgTree">
|
class="list-group-item node-orgTree">
|
||||||
@ -18,7 +18,7 @@
|
|||||||
<el-card class="ibox">
|
<el-card class="ibox">
|
||||||
<div slot="header" class="flex justify-between">
|
<div slot="header" class="flex justify-between">
|
||||||
<span>{{ $t('feeConfigManage.queryCondition') }}</span>
|
<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') }}
|
{{ moreCondition ? $t('feeConfigManage.hide') : $t('feeConfigManage.more') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
@ -202,7 +202,8 @@ export default {
|
|||||||
feeTypeCd: '',
|
feeTypeCd: '',
|
||||||
isDefault: 'F',
|
isDefault: 'F',
|
||||||
paymentCd: '',
|
paymentCd: '',
|
||||||
deductFrom: ''
|
deductFrom: '',
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -216,7 +217,7 @@ export default {
|
|||||||
const data = await getDict('pay_fee_config', 'fee_type_cd')
|
const data = await getDict('pay_fee_config', 'fee_type_cd')
|
||||||
let _feeTypeCds = {
|
let _feeTypeCds = {
|
||||||
name: this.$t('common.all'),
|
name: this.$t('common.all'),
|
||||||
value: ''
|
statusCd: ''
|
||||||
}
|
}
|
||||||
this.feeTypeCds = [_feeTypeCds, ...data]
|
this.feeTypeCds = [_feeTypeCds, ...data]
|
||||||
},
|
},
|
||||||
@ -324,7 +325,7 @@ export default {
|
|||||||
.list-group-item {
|
.list-group-item {
|
||||||
padding: 12px 15px;
|
padding: 12px 15px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-bottom: 1px solid #ebeef5;
|
/*border-bottom: 1px solid #ebeef5;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.list-group-item:hover {
|
.list-group-item:hover {
|
||||||
@ -332,8 +333,8 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.vc-node-selected {
|
.vc-node-selected {
|
||||||
background-color: #ecf5ff;
|
background-color: #409eff;
|
||||||
color: #409eff;
|
color: #fff;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user