|
@@ -172,7 +172,7 @@
|
|
<div class="dialog-table">
|
|
<div class="dialog-table">
|
|
<HcTable :loading="CTDdialogTableLoading" :column="CTDdialogTableColumn" :datas="CTDdialogTableData1" >
|
|
<HcTable :loading="CTDdialogTableLoading" :column="CTDdialogTableColumn" :datas="CTDdialogTableData1" >
|
|
<template #recordNo="{row}">
|
|
<template #recordNo="{row}">
|
|
- <span class="text-link" @click="CTDtableRowName(row)">{{row?.recordNo}}</span>
|
|
|
|
|
|
+ <span class="text-link" @click="CTDtableRowName(row)" :class="[row.isSelectedStatus===0?'text-blue':'']">{{row?.recordNo}}</span>
|
|
</template>
|
|
</template>
|
|
</HcTable>
|
|
</HcTable>
|
|
</div>
|
|
</div>
|
|
@@ -1434,8 +1434,10 @@ const thirdtreeDatasElTreeClick =(data,node)=>{
|
|
nodeId: isPrimaryKeyId.value,
|
|
nodeId: isPrimaryKeyId.value,
|
|
type:fileModalradio.value,
|
|
type:fileModalradio.value,
|
|
ids
|
|
ids
|
|
-
|
|
|
|
})
|
|
})
|
|
|
|
+ if (!error && code === 200) {
|
|
|
|
+ window?.$message?.success('操作成功')
|
|
|
|
+ }
|
|
}
|
|
}
|
|
//设计值频率计算
|
|
//设计值频率计算
|
|
const IDVFModalSaveClick = async () => {
|
|
const IDVFModalSaveClick = async () => {
|
|
@@ -1776,4 +1778,7 @@ defineExpose({
|
|
position: relative;
|
|
position: relative;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+.text-blue{
|
|
|
|
+ color: blue;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|