jinlin
2023-12-29 a4f932c6ca705feb3bee3b7d7bbe0ee5c0c85515
web/src/views/modules/configAuditReport/ConfigAuditReport.vue
@@ -31,6 +31,7 @@
                       @refreshDataList="table.query"
                       @setProjectInfo="openAddWin">
        </ProjectSelect>
        <Preview ref="view" :pageMarkerfun="ConfigAuditReport"></Preview>
      </zt-table-wraper>
    </div>
  </el-card>
@@ -42,6 +43,7 @@
  export default {
    data() {
      return {
        ConfigAuditReport:'ConfigAuditReport',
        dataForm: {
          code: '',
          softwareIdentity: '',
@@ -51,7 +53,8 @@
    },
    components: {
      AddOrUpdate,
      ProjectSelect
      ProjectSelect,
      Preview
    },
    methods:{
      add() {
@@ -62,6 +65,9 @@
        // this.$refs.addOrUpdate.$refs.dialog.init(null, {id: null, projectId: row.id})
        this.$refs.addOrUpdate.$refs.dialog.init(null, {id: null, projectId: row.id})
      },
      preview(row){
        this.$refs.view.openAccessoryFormatSingle(row)
      }
    }
  }
</script>