[]>([
render: scope => {
return (
- showData(scope.row.testSourceName)}>
+ showTestSource(scope.row.testSourceName)}>
{scope.row.testSourceName}
@@ -193,7 +195,7 @@ const columns = reactive[]>([
fieldNames: { label: 'label', value: 'id' },
render: scope => {
return (
- showData(scope.row.script_Id)}>
+ showTestScript(scope.row.script_Id)}>
{getScriptName(scope.row.script_Id)}
)
@@ -278,15 +280,25 @@ function isVisible(row: Plan.PlanAndSourceBO) {
else
return true
}
+
+const errorStandardPopup = ref()
function showData(row: string) {
- detail_dialogTitle.value = row
- detail_dialogFormVisible.value = true // 显示对话框
-
+ errorStandardPopup.value?.open(row, row)
// router.push({
// path: "/machine/device",
// query: { id: row }
// });
+}
+const testSourcePopup = ref()
+function showTestSource(row: string) {
+
+ //testSourcePopup.value?.open('view', row,'模拟式')
+}
+
+function showTestScript(row: string) {
+
+
}
function handleFiles(event: Event) {