修复TypeScript类型定义问题并删除未使用的客服管理页面文件

This commit is contained in:
WUSIJIAN
2026-01-04 14:23:58 +08:00
parent 781c5222de
commit a780df0231
7 changed files with 9 additions and 50 deletions

View File

@@ -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,