|
|
@ -35,6 +35,8 @@ const indexsetCode = pageQuery.value?.query?.indexsetCode;
|
|
|
|
let indexType_param_LIST = ref([]);
|
|
|
|
let indexType_param_LIST = ref([]);
|
|
|
|
let indexCalType_param_LIST = ref([]);
|
|
|
|
let indexCalType_param_LIST = ref([]);
|
|
|
|
let indexDataType_param_LIST = ref([]);
|
|
|
|
let indexDataType_param_LIST = ref([]);
|
|
|
|
|
|
|
|
let indexDataPrecision_param_LIST = ref([]);
|
|
|
|
|
|
|
|
let indexDataUnit_param_LIST = ref([]);
|
|
|
|
|
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
|
|
|
|
|
|
@ -49,6 +51,10 @@ const getDictInfoList = async ()=>{
|
|
|
|
indexCalType_param_LIST.value = transfDictList(indexCalType.body.result);
|
|
|
|
indexCalType_param_LIST.value = transfDictList(indexCalType.body.result);
|
|
|
|
const indexDataType = await getIndexType({ paramName: 'indexDataType_param', systemCode: 'ordb' });
|
|
|
|
const indexDataType = await getIndexType({ paramName: 'indexDataType_param', systemCode: 'ordb' });
|
|
|
|
indexDataType_param_LIST.value = transfDictList(indexDataType.body.result);
|
|
|
|
indexDataType_param_LIST.value = transfDictList(indexDataType.body.result);
|
|
|
|
|
|
|
|
const indexDataPrecision = await getIndexType({ paramName: 'indexDataPrecision_param', systemCode: 'ordb' });
|
|
|
|
|
|
|
|
indexDataPrecision_param_LIST.value = transfDictList(indexDataPrecision.body.result);
|
|
|
|
|
|
|
|
const indexDataUnit = await getIndexType({ paramName: 'indexDataUnit_param', systemCode: 'ordb' });
|
|
|
|
|
|
|
|
indexDataUnit_param_LIST.value = transfDictList(indexDataUnit.body.result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
getDictInfoList();
|
|
|
|
getDictInfoList();
|
|
|
|
|
|
|
|
|
|
|
|