ソースを参照

delete: 内置菜单url

lanceJiang 10 ヶ月 前
コミット
df65ef421e
2 ファイル変更1 行追加8 行削除
  1. 0 7
      src/router/index.ts
  2. 1 1
      src/views/approve/components/printer.vue

+ 0 - 7
src/router/index.ts

@@ -43,13 +43,6 @@ export const sysStaticRouter: Array<AppRouteRecordRaw> = [
 				component: () => import('@/views/dashboard/index.vue'),
 				name: 'dashboard',
 				meta: { title: 'dashboard', icon: 'icon-homepage', affix: true }
-			},
-			// 详情_模拟
-			{
-				path: '/approve_detail',
-				component: () => import('@/views/approve/detail/index.vue'),
-				name: 'testDetail',
-				meta: { title: '流程详情', icon: 'icon-homepage', hidden: true }
 			}
 		]
 	},

+ 1 - 1
src/views/approve/components/printer.vue

@@ -81,7 +81,7 @@ const closeDialog = () => {
 	$myEmit('update:modelValue', false)
 }
 const qrUrl = computed(() => {
-	return `${location.origin}/#/approve_detail?id=${props.currentTaskRow?.instanceId}`
+	return `${location.origin}/#/approve/detail?id=${props.currentTaskRow?.instanceId}`
 })
 </script>