فهرست منبع

专利数据库任务

zhuliu 1 سال پیش
والد
کامیت
431c1cdf5c

+ 0 - 1
src/router/index.js

@@ -302,7 +302,6 @@ const routes = [
             meta: {
               title: '报告专利清单',
               sign: 'reportPatentList',
-              belong: 'AllReport'
             },
             component: () => import('@/views/report/components/patentList/index.vue'),
           },

+ 3 - 3
src/views/report/components/allocationTask/components/allocationTask.vue

@@ -73,7 +73,7 @@
       <div class="spanDiv">
         <div>
           <span class="spanCountdown">{{ countdown }}</span>
-          <span class="spanCenter">秒后跳转到<span class="spanJump" @click="toRouter">报告管理</span>页面</span>
+          <span class="spanCenter">秒后跳转到<span class="spanJump" @click="toRouter">任务清单</span>页面</span>
         </div>
       </div>
     </el-dialog>
@@ -175,7 +175,7 @@ export default {
     out() {
       this.timer = setInterval(() => {
         if (this.countdown == 0) {
-          this.$router.replace("/AllReport");
+          this.$router.replace("/myTask");
           clearInterval(this.timer);
           this.dialogVisible = false
         } else {
@@ -212,7 +212,7 @@ export default {
     },
     // 点击直接跳转页面
     toRouter() {
-      this.$router.replace("/AllReport");
+      this.$router.replace("/myTask");
     },
     // 关闭温馨提示的弹窗
     handleClose() {

+ 9 - 9
src/views/report/components/allocationTask/components/showColumn.vue

@@ -100,12 +100,12 @@ export default {
     // 
     handleChange(val) {
       let obj = {
-        filedId: val.id,
-        filedType: val.type
+        fieldId: val.id,
+        fieldType: val.type
       }
       if (this.markedFields.length > 0) {
         let index = this.markedFields.findIndex(item => {
-          return item.filedId == val.id
+          return item.fieldId == val.id
         })
         if (index != -1) {
           this.markedFields.splice(index, 1)
@@ -214,17 +214,17 @@ export default {
     // },
 
     // 点击节点发生的变化
-    onChangeTree(filed, filedId) {//当前节点的数据,当前栏位的数据
+    onChangeTree(field, fieldId) {//当前节点的数据,当前栏位的数据
       let obj = {
-        filedId: filedId,
-        filedType: 6,
-        values: [filed.id],
+        fieldId: field,
+        fieldType: 6,
+        values: [field.id],
       }
       let index = this.checkList.findIndex(item => {
-        return item == filedId
+        return item == fieldId
       })
       if (index == -1) {
-        this.checkList.push(filedId)
+        this.checkList.push(fieldId)
       }
       this.markedFields.push(obj)
       this.$emit('markedFields', this.markedFields)