소스 검색

关联试验数据状态修改

duy 2 년 전
부모
커밋
21c5c6a2f7
1개의 변경된 파일7개의 추가작업 그리고 2개의 파일을 삭제
  1. 7 2
      src/views/data-fill/components/ListItem.vue

+ 7 - 2
src/views/data-fill/components/ListItem.vue

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