src/views/system/user/index.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/views/system/user/index.vue
@@ -320,7 +320,7 @@ const dateRange = ref<[DateModelType, DateModelType]>(['', '']); const deptName = ref(''); const deptOptions = ref<DeptVO[]>([]); const initPassword = ref('123456'); const initPassword = ref<String>(''); const postOptions = ref<PostVO[]>([]); const roleOptions = ref<RoleVO[]>([]); /*** 用户导入参数 */ @@ -613,6 +613,9 @@ onMounted(() => { getTreeSelect() // 初始化部门数据 getList() // 初始化列表数据 proxy?.getConfigKey("sys.user.initPassword").then(response => { initPassword.value = response.data; }); }); </script>