Commit cf620860 authored by 刘殿昕's avatar 刘殿昕

fix列表未刷新,自测未删除用例

parent bee8ea55
......@@ -223,6 +223,14 @@ export default {
urlFilter: {
handler(val) {
if (val) {
this.openChildren = [
{ index: null, state: false, act: null },
{ index: null, state: false, act: null },
{ index: null, state: false, act: null },
{ index: null, state: false, act: null }
];
this.activeOptions = [[], [], [], []];
this.activeChildOptions = [[], [], [], []];
if (val == "app") {
this.$set(this.filterLists, 0, {
id: 110,
......@@ -253,7 +261,7 @@ export default {
for (let i = 0; i < val.length; i++) {
this.filterLists[i + 1].name = val[i];
}
console.log(this.filterLists)
console.log(this.filterLists);
}
}
},
......
......@@ -52,17 +52,17 @@
<el-input v-model="user_data.organization" :disabled="true"></el-input>
</el-form-item>
<el-form-item
:class="user_data.userType == 3 || user_data.userType == 4 ? 'info_item info_item_right_btn' : 'info_item'"
:class="user_data.userType == 3 ? 'info_item info_item_right_btn' : 'info_item'"
>
<p>当前用户类型:</p>
<el-input v-model="user_data.userTypeName" :disabled="true"></el-input>
<el-button
v-if="(user_data.userType == 3 || user_data.userType == 4) && couldUp"
v-if="user_data.userType == 3 && couldUp"
class="option_btn"
@click="upLevel"
>升级为开发者</el-button>
<el-button
v-else-if="(user_data.userType == 3 || user_data.userType == 4) && !couldUp"
v-else-if="user_data.userType == 3 && !couldUp"
type="info"
class="option_btn_gray_dis"
disabled
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment