|
|
|
|
@ -21,6 +21,7 @@
|
|
|
|
|
</a-form-item>
|
|
|
|
|
<a-form-item label="县区" name="countyid">
|
|
|
|
|
<a-select
|
|
|
|
|
:disabled="level != '0'"
|
|
|
|
|
v-model:value="formState.countyid"
|
|
|
|
|
placeholder="请选择"
|
|
|
|
|
:options="data.countyOptions"
|
|
|
|
|
@ -102,6 +103,8 @@
|
|
|
|
|
import { useMessage } from '@/hooks/web/useMessage';
|
|
|
|
|
import { updateDroneCaseInfo, getInspectionAuditCaseInfoById } from '@/api/farmland/index';
|
|
|
|
|
import { getChildrenTree } from '@/api/demo/system.ts';
|
|
|
|
|
import { useUserStore } from '@/store/modules/user'
|
|
|
|
|
const userStore = useUserStore()
|
|
|
|
|
const { createMessage } = useMessage();
|
|
|
|
|
defineOptions({ name: 'AccountModal' });
|
|
|
|
|
const formRef = ref();
|
|
|
|
|
@ -130,6 +133,7 @@
|
|
|
|
|
streetOptions: [],
|
|
|
|
|
communityOptions: [],
|
|
|
|
|
});
|
|
|
|
|
let level = userStore.getUserInfo.orgMaxLevel
|
|
|
|
|
|
|
|
|
|
watch(
|
|
|
|
|
() => props.modalShow,
|
|
|
|
|
|