From 12ab8b03d9acb77848c4db9bb0451e77af60acb6 Mon Sep 17 00:00:00 2001 From: RuoYi <yzz_ivy@163.com> Date: 星期五, 17 九月 2021 15:36:54 +0800 Subject: [PATCH] 使用vue-data-dict,简化数据字典使用 --- ruoyi-ui/src/views/system/role/selectUser.vue | 10 ++-------- 1 files changed, 2 insertions(+), 8 deletions(-) diff --git a/ruoyi-ui/src/views/system/role/selectUser.vue b/ruoyi-ui/src/views/system/role/selectUser.vue index 5a97095..3229462 100644 --- a/ruoyi-ui/src/views/system/role/selectUser.vue +++ b/ruoyi-ui/src/views/system/role/selectUser.vue @@ -34,7 +34,7 @@ <el-table-column label="鎵嬫満" prop="phonenumber" :show-overflow-tooltip="true" /> <el-table-column label="鐘舵��" align="center" prop="status"> <template slot-scope="scope"> - <dict-tag :options="statusOptions" :value="scope.row.status"/> + <dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/> </template> </el-table-column> <el-table-column label="鍒涘缓鏃堕棿" align="center" prop="createTime" width="180"> @@ -61,6 +61,7 @@ <script> import { unallocatedUserList, authUserSelectAll } from "@/api/system/role"; export default { + dicts: ['sys_normal_disable'], props: { // 瑙掕壊缂栧彿 roleId: { @@ -77,8 +78,6 @@ total: 0, // 鏈巿鏉冪敤鎴锋暟鎹� userList: [], - // 鐘舵�佹暟鎹瓧鍏� - statusOptions: [], // 鏌ヨ鍙傛暟 queryParams: { pageNum: 1, @@ -88,11 +87,6 @@ phonenumber: undefined } }; - }, - created() { - this.getDicts("sys_normal_disable").then(response => { - this.statusOptions = response.data; - }); }, methods: { // 鏄剧ず寮规 -- Gitblit v1.9.3