|
@@ -124,7 +124,7 @@ const state = reactive<any>({
|
|
|
const ruleFormRef = ref<RefType>(); // 搜索表单ref
|
|
|
// 在正式上线前 先隐藏用户和部门的新增
|
|
|
const showAdd = computed(() => {
|
|
|
- return !['ZiGong', 'LuZhou'].includes(import.meta.env.VITE_MODE_NAME);
|
|
|
+ return !['LuZhou'].includes(import.meta.env.VITE_MODE_NAME);
|
|
|
});
|
|
|
/** 搜索按钮操作 节流操作 */
|
|
|
const handleQuery = throttle(() => {
|