wangziqian 4 rokov pred
rodič
commit
a21c2c28a4

+ 1 - 1
src/views/projectManage/dialog_vue.vue

@@ -191,7 +191,7 @@ export default {
               that.task_form = {}
               that.ascription_demand = false
               that.ascription_project = true
-              that.$set(that.task_form, 'bizId', this.bizId)
+              that.$set(that.task_form, 'bizId', that.bizId)
               that.$set(that.task_form, 'source', 3)
               that.$set(that.task_form, 'notest', 0)
               that.$set(that.task_form, 'followVersion', 2)

+ 1 - 1
src/views/projectManage/iteration/details/iterationDetails.vue

@@ -90,13 +90,13 @@ export default {
     bizId: {
       handler(newV) {
         if (newV === -1) return
+        this.analysisBizId_id()
         this.iteratioFilter()
       },
       immediate: true
     }
   },
   mounted() {
-    this.analysisBizId_id()
     this.$store.state.data.status = true
   },
   destroyed() {

+ 3 - 1
src/views/projectManage/iteration/index.vue

@@ -85,6 +85,7 @@
 </template>
 
 <script>
+import { EncryptId } from '@/utils/crypto-js.js'
 import { mapGetters } from 'vuex'
 import '@/styles/PublicStyle/index.scss'
 import iterationCreate from '@/views/projectManage/iteration/components/create.vue'
@@ -159,7 +160,8 @@ export default {
     },
 
     cilckIterationName(data) { // 迭代详情页跳转
-      this.$router.push({ name: '迭代详情', query: { id: data.id }})
+      const bizId_id = EncryptId(`${this.bizId}_${data.id}`)
+      this.$router.push({ name: '迭代详情', query: { bizId_id: bizId_id }})
     },
 
     remoteMethod(query) {

+ 1 - 1
src/views/projectManage/taskList/components/reportList.vue

@@ -327,7 +327,7 @@ export default {
     },
     async reportdelivertestGetByTaskId(e) { // 获取新提测
       e ? this.dataStatus = false : ''
-      const data = { taskId: this.taskId, bizId: this.taskId, curIndex: this.testPages.curIndex, pageSize: this.testPages.pageSize }
+      const data = { taskId: this.taskId, bizId: this.bizId, curIndex: this.testPages.curIndex, pageSize: this.testPages.pageSize }
       const res = await reportdelivertestGetByTaskId(data)
       if (res.code === 200) {
         this.testData = res.data.list