فهرست منبع

Merge branch 'http_test' of git.xiaojukeji.com:jacklijiajia/thoth-frontend into http_test

qinzhipeng_v@didiglobal.com 4 سال پیش
والد
کامیت
b5244b9300
2فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 2 1
      src/views/projectManage/version/components/taskList.vue
  2. 1 0
      src/views/projectManage/version/list/index.vue

+ 2 - 1
src/views/projectManage/version/components/taskList.vue

@@ -153,6 +153,7 @@ export default {
       imgUrl: imgUrl,
       total: 0,
       searchForm: {
+        bizId: -1,
         clientType: null,
         versionType: null,
         curIndex: 1,
@@ -204,7 +205,7 @@ export default {
   methods: {
     async get_allTask() { // 获取全部任务
       const res = await getVersionHomeTaskList({
-        bizId: this.$bizId,
+        bizId: this.bizId,
         curIndex: this.searchForm.curIndex,
         pageSize: this.searchForm.pageSize,
         versionType: this.searchForms.versionType,

+ 1 - 0
src/views/projectManage/version/list/index.vue

@@ -314,6 +314,7 @@ export default {
     bizId: {
       handler(newV) {
         if (newV === -1) return
+        this.searchForm.bizId = newV
         this.showAppClientEnum()
         this.showVersionEnum()
       },