修复TypeScript类型定义问题并删除未使用的客服管理页面文件
This commit is contained in:
@@ -120,18 +120,18 @@ export default defineComponent({
|
||||
name: 'systemEditUser',
|
||||
props: {
|
||||
deptData: {
|
||||
type: Array,
|
||||
type: Array as () => any[],
|
||||
default: () => [],
|
||||
},
|
||||
genderData: {
|
||||
type: Array,
|
||||
type: Array as () => any[],
|
||||
default: () => [],
|
||||
},
|
||||
},
|
||||
setup(prop, { emit }) {
|
||||
const roleList = ref([]);
|
||||
const postList = ref([]);
|
||||
const tenantList = ref([]); // 新增租户列表
|
||||
const roleList = ref<any[]>([]);
|
||||
const postList = ref<any[]>([]);
|
||||
const tenantList = ref<any[]>([]); // 新增租户列表
|
||||
const formRef = ref<HTMLElement | null>(null);
|
||||
const state = reactive({
|
||||
isShowDialog: false,
|
||||
|
||||
Reference in New Issue
Block a user