taskId:083 remark:'commit'

This commit is contained in:
fks-xuxinyue
2024-07-12 16:59:33 +08:00
parent 97c3945848
commit 0282d2d1aa
8 changed files with 1041 additions and 83 deletions

View File

@@ -82,7 +82,6 @@
@close="onClose">
<ns-form
ref="formRef"
:schemas="formSchema"
:model="formData"
class="form"
:wrapperCol="{ span: 20 }"
@@ -135,7 +134,9 @@ import { log } from 'node:console';
const casData = ref([]);
const treeData = ref([]);
const userAuthList = ref([]);
const orgId = JSON.parse(sessionStorage.getItem('userInfo')).orgId;
const orgId = ref('');
const result = JSON.parse(sessionStorage.getItem('ORGID')!);
orgId.value = result;
const dynamicDisabled = computed(() => {
return formRef.value?.validateResult && userAuthList.value?.length;
});