1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| /*
| * @Author: 小明丶
| * @Date: 2019-08-13 18:10:18
| * @LastEditors: 小明丶
| * @LastEditTime: 2021-01-05 14:58:59
| * @Description:
| */
| export default [
| // 绑卡
| {
| path:"/",
| name:'index',
| component:()=>import("@/views/main/addBankcard.vue")
| },
| {
| path:"/main/queryres",
| name:'queryres',
| component:()=>import("@/views/main/queryres.vue")
| },
| {
| path:"/main/findPre",
| name:'findPre',
| component:()=>import("@/views/main/findPreAudit.vue")
| },
| {
| path:"/main/signcont",
| name:'signcont',
| component:()=>import("@/views/main/signcont.vue")
| },
| {
| path:"/main/bancardsucces",
| name:'signcont',
| component:()=>import("@/views/main/singsuc.vue")
| }
| ]
|
|