3254194295 2 жил өмнө
parent
commit
2e24b89b8f

+ 3 - 2
src/views/check/checkstandard/CheckStandard.vue

@@ -84,7 +84,7 @@
           v-if="($auth('check-spot-standards-add') || $auth('check-polling-standards-add'))"
           type="primary"
           icon="plus"
-          @click="$refs.baseModal.base()">新增
+          @click="$refs.baseModal.base(null,queryParam.sbId,queryParam.sbNo)">新增
         </a-button>
         <a-button style="margin-left:8px;" type="primary" @click="doImport">
           <a-icon type="upload"/>
@@ -216,7 +216,8 @@ export default {
       confirmLoading: false,
       queryParam: {
         type: this.$route.query.checkType || this.checkType,
-        sbId: this.$route.query.id
+        sbId: this.$route.query.id,
+        sbNo: this.$route.query.sbNo
       },
       // 表头
       columns: [

+ 3 - 3
src/views/sb/info/modules/Detail.vue

@@ -485,17 +485,17 @@ export default {
       window.open(routeUrl.href, '_blank')
     },
     handleViewCheck (type) {
-      const routeUrl = this.$router.resolve({ path: '/check/polling-standard', query: { id: this.model.id, checkType: type } })
+      const routeUrl = this.$router.resolve({ path: '/check/polling-standard', query: { id: this.model.id, checkType: type, sbNo: this.model.no } })
       // let routeUrl = this.$router.resolve(`/share/${96}`)
       window.open(routeUrl.href, '_blank')
     },
     handleViewCheck2 (type) {
-      const routeUrl = this.$router.resolve({ path: '/check/spot-standard', query: { id: this.model.id, checkType: type } })
+      const routeUrl = this.$router.resolve({ path: '/check/spot-standard', query: { id: this.model.id, checkType: type, sbNo: this.model.no } })
       // let routeUrl = this.$router.resolve(`/share/${96}`)
       window.open(routeUrl.href, '_blank')
     },
     handleViewCheck3 (type) {
-      const routeUrl = this.$router.resolve({ path: '/check-run-standard', query: { id: this.model.id, checkType: type } })
+      const routeUrl = this.$router.resolve({ path: '/check-run-standard', query: { id: this.model.id, checkType: type, sbNo: this.model.no } })
       // let routeUrl = this.$router.resolve(`/share/${96}`)
       window.open(routeUrl.href, '_blank')
     },