|
@@ -1080,8 +1080,10 @@ const getAcquisitionData = async (id) => {
|
|
|
if (isNullES(id) || id == 0) return
|
|
|
const { data } = await acquisitionApi.selectDataInfoById(id)
|
|
|
const res = getObjVal(data)
|
|
|
- relatedData3.value = res ? [res] : []
|
|
|
- //setRelatedColumn3(res.type)
|
|
|
+ if (res) {
|
|
|
+ relatedData3.value = res ? [res] : []
|
|
|
+ setRelatedColumn3(res.testTypePId)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
//设置表头
|