This commit is contained in:
Your Name
2026-04-27 15:30:28 +08:00
parent 23bd86e056
commit fe14f67965
21 changed files with 2335 additions and 449 deletions
+4 -2
View File
@@ -99,11 +99,13 @@ import EditPopup from './edit.vue'
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
// 表单数据 - 固定role_id=1查询医助
// 表单数据 - 固定role_id=2查询医助
const formData = reactive({
account: '',
name: '',
role_id: 2 // 固定为医助角色
role_id: 2, // 固定为医助角色
// 启用数据范围隔离:上级管理员只看到自己可见的医助;root/全部范围不受影响
apply_data_scope: 1
})
const showEdit = ref(false)