fix: type warn

This commit is contained in:
xingyu
2023-04-23 19:35:14 +08:00
parent 6b7d092c29
commit fc366f18c8
12 changed files with 28 additions and 22 deletions

View File

@ -68,7 +68,7 @@ const formRules = reactive({
status: [{ required: true, message: '状态不能为空', trigger: 'blur' }]
})
const formRef = ref() // 表单 Ref
const userList = ref([]) // 用户列表
const userList = ref<any[]>([]) // 用户列表
/** 打开弹窗 */
const open = async (type: string, id?: number) => {