| | |
| | | </el-col> |
| | | <el-col :span="12"> |
| | | <el-form-item label="所属区划" prop="areaCode"> |
| | | <el-select |
| | | <RegionSelect |
| | | class="gd-select" |
| | | popper-class="gd-select-popper" |
| | | v-model="formData.areaCode" |
| | | placeholder="请选择" |
| | | clearable |
| | | > |
| | | <el-option v-for="item in regionOptions" :key="item.value" :label="item.title" :value="item.value" /> |
| | | </el-select> |
| | | /> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="12"> |
| | |
| | | import { fieldRules } from '@ztzf/utils' |
| | | import { |
| | | agenciesSubmitApi, |
| | | agenciesDetailApi, |
| | | agenciesDetailApi |
| | | } from './agenciesApi' |
| | | import RegionSelect from '@/components/RegionSelect/main.vue' |
| | | |
| | | // 初始化表单数据 |
| | | const initForm = () => ({ |
| | |
| | | } |
| | | |
| | | defineExpose({ open }) |
| | | |
| | | onMounted(() => { |
| | | }) |
| | | </script> |
| | | |
| | | <style scoped lang="scss"> |