|
@@ -190,7 +190,7 @@
|
|
|
<div class="flex-1" style="padding-left:20px">
|
|
|
<HcNewSwitch :datas="tabTypeTab" :keys="tabTypeKey" @change="tabTypeChange" size="default" :round="false"/>
|
|
|
<el-select v-model="testReportId" :placeholder="placeholderType" clearable class="ml-2 w-80" @change="testReportIdchange" :loading="insertDataSelectoading">
|
|
|
- <el-option v-for="item in testReportData" :key="item.id" :label="item['fullName']" :value="item['id']"/>
|
|
|
+ <el-option v-for="item in testReportData" :key="item.id" :label="item['nodeName']" :value="item['id']"/>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
<div class="dialog-table-box">
|
|
@@ -1380,7 +1380,8 @@ const thirdtabtoggleSelection=(rows)=> {
|
|
|
const getBussddataInfotrialData = async ()=>{
|
|
|
insertDataTableLoading.value=true;
|
|
|
const {error, code, data} = await dataApi.getBussddataInfotrial({
|
|
|
- id:testReportId.value,
|
|
|
+ // id:testReportId.value,
|
|
|
+ id:currowid.value,
|
|
|
pkeyId:checPkd.value[0]['pKeyId'],
|
|
|
})
|
|
|
|
|
@@ -1486,17 +1487,17 @@ const filedialogTableLoading = ref (false)
|
|
|
const insertDataSelectoading=ref(false)
|
|
|
const CTDdialogTableKeys = ref ([])
|
|
|
|
|
|
-let currowid=ref('')
|
|
|
+const currowid=ref('')
|
|
|
//名称被点击
|
|
|
const CTDtableRowName = (row) => {
|
|
|
- currowid=row.id
|
|
|
+ currowid.v=row.id
|
|
|
insertDataShow.value=true
|
|
|
getSearchNodeTables()
|
|
|
}
|
|
|
const getSearchNodeTables = async () => {
|
|
|
insertDataSelectoading.value = true
|
|
|
const { error, code, data } = await dataApi.searchNodeTables({
|
|
|
- id: currowid,
|
|
|
+ id: currowid.value,
|
|
|
projectId: projectId.value,
|
|
|
contractId: contractId.value,
|
|
|
primaryKeyId: CTDnodeDataInfo.value.primaryKeyId,
|