Sfoglia il codice sorgente

删除无用路由

Xiao_123 2 mesi fa
parent
commit
901247f20c

+ 0 - 10
src/router/modules/remaining.ts

@@ -518,16 +518,6 @@ const remainingRouter: AppRouteRecordRaw[] = [
           hidden: true
         },
         component: () => import('@/views/menduner/system/talentMap/details/index.vue')
-      },
-      {
-        path: 'talentMap/gatherDetails/:id',
-        name: 'TalentMapGatherDetails',
-        meta: {
-          title: '人才采集',
-          noCache: true,
-          hidden: true
-        },
-        component: () => import('@/views/menduner/system/talentMap/maintenance/gatherDetails/index.vue')
       }
     ]
   },

+ 2 - 2
src/views/menduner/system/talentMap/maintenance/gather/index.vue

@@ -54,14 +54,14 @@
           <el-button
             v-if="scope.row.task_status === '待解析'"
             link
-            type="success"
+            type="primary"
             @click="handleAnalysis(scope.row)"
           >解析</el-button>
           <el-button v-else type="success" link @click="handleStore(scope.row, true)">解析结果</el-button>
           <el-button
             v-if="scope.row.task_status === '成功'"
             link
-            type="primary"
+            type="warning"
             @click="handleStore(scope.row)"
           >入库</el-button>
         </template>