|
@ -28,6 +28,7 @@ |
|
|
:projTypeOptions="projTypeOptions" |
|
|
:projTypeOptions="projTypeOptions" |
|
|
:scaleOptions="scaleOptions" |
|
|
:scaleOptions="scaleOptions" |
|
|
:departmentOptions="departmentOptions" |
|
|
:departmentOptions="departmentOptions" |
|
|
|
|
|
:situationOptions="situationOptions" |
|
|
@getResInfo="handleGetResInfo" |
|
|
@getResInfo="handleGetResInfo" |
|
|
></BaseInfo> |
|
|
></BaseInfo> |
|
|
</el-tab-pane> |
|
|
</el-tab-pane> |
|
@ -117,6 +118,7 @@ const gradeOptions = ref([]); |
|
|
const projTypeOptions = ref([]); |
|
|
const projTypeOptions = ref([]); |
|
|
const scaleOptions = ref([]); |
|
|
const scaleOptions = ref([]); |
|
|
const departmentOptions = ref([]); |
|
|
const departmentOptions = ref([]); |
|
|
|
|
|
const situationOptions = ref([]); |
|
|
function initDict() { |
|
|
function initDict() { |
|
|
getDicts("reservoir_type").then((res) => { |
|
|
getDicts("reservoir_type").then((res) => { |
|
|
projTypeOptions.value = res || []; |
|
|
projTypeOptions.value = res || []; |
|
@ -130,6 +132,9 @@ function initDict() { |
|
|
getDicts("centralized_management_department").then((res) => { |
|
|
getDicts("centralized_management_department").then((res) => { |
|
|
departmentOptions.value = res || []; |
|
|
departmentOptions.value = res || []; |
|
|
}); |
|
|
}); |
|
|
|
|
|
getDicts("res_engineering_construct_situation").then((res) => { |
|
|
|
|
|
situationOptions.value = res || []; |
|
|
|
|
|
}); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
function scaleFormat(key: string) { |
|
|
function scaleFormat(key: string) { |
|
|