调整
This commit is contained in:
parent
fdb865692e
commit
dceac55ac6
|
@ -41,6 +41,7 @@
|
|||
<el-table v-loading="loading" :data="feeList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="id" align="center" prop="ruleId" />
|
||||
<el-table-column label="运营区" align="center" prop="area" v-if="userName == 'admin'"/>
|
||||
<el-table-column label="套餐名称" align="center" prop="name" />
|
||||
<el-table-column label="说明" :show-overflow-tooltip="true" align="center" prop="instructions" />
|
||||
<!-- <el-table-column label="时间(小时)" align="center" prop="time" />
|
||||
|
@ -307,6 +308,7 @@ export default {
|
|||
dicts: ['sys_normal_disable'],
|
||||
data() {
|
||||
return {
|
||||
userName: undefined,
|
||||
loading: true,
|
||||
ids: [],
|
||||
single: true,
|
||||
|
@ -397,6 +399,8 @@ export default {
|
|||
};
|
||||
},
|
||||
created() {
|
||||
console.log("当前用户信息:",this.$store.state.user.name)
|
||||
this.userName = this.$store.state.user.name;
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
|
|
Loading…
Reference in New Issue
Block a user