浏览代码

数据集

Raod 4 年之前
父节点
当前提交
e037775755
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      report-ui/src/views/report/resultset/index.vue

+ 2 - 2
report-ui/src/views/report/resultset/index.vue

@@ -18,7 +18,7 @@
     <template v-slot:pageSection>
       <EditDataSet ref="EditDataSet" :dataSet="dataSet" :visib="dialogVisibleSetDataSet"
                    @handleClose="dialogVisibleSetDataSet = false" @refreshList="refreshList"/>
-      <DataView ref="dataViewPreview" :visib="dialogCaseResult"
+      <DataView ref="DataView" :visib="dialogCaseResult"
                    @handleClose="dialogCaseResult = false"/>
     </template>
   </anji-crud>
@@ -227,7 +227,7 @@ export default {
     dataView(prop){
 
       this.dialogCaseResult = true;
-      this.$refs.EditDataSet.dataViewPreview(prop.msg.setName, JSON.parse(prop.msg.caseResult));
+      this.$refs.DataView.dataViewPreview(prop.msg.setName, JSON.parse(prop.msg.caseResult));
     }
   }
 }