11
flowstocktrading
2022-10-31 75daba0b2b0109ef4c9533a83ae636475458a892
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/page/home/home'
import Buy from '@/page/home/buy'
import Alertdetail from '@/page/home/components/alert' // 公告详情
import Register from '@/page/register'
import Forget from '@/page/forget'
import Login from '@/page/login'
import List from '@/page/list/list'
import Searchlist from '@/page/list/list-search'
import IndexSearchlist from '@/page/list/indexlist-search' // 指数查询
import SearchMylist from '@/page/list/my-list-search'
import ListDetail from '@/page/list/detail'
import ListDetail2 from '@/page/list/detail2'
import MyList from '@/page/list/my-list'
import Inquiry from '@/page/home/inquiry'
import User from '@/page/user/user'
import OrderList from '@/page/user/order-list'
import holdOrderList from '@/page/user/search-order/hold-stockCode'
import holdOrderList2 from '@/page/user/search-order/hold-stockSpell'
import sellOrderList from '@/page/user/search-order/sell-stockCode'
import sellOrderList2 from '@/page/user/search-order/sell-stockSpell'
import Detail from '@/page/user/detail'
import Card from '@/page/user/card'
import Authentication from '@/page/user/authentication'
import Aggre from '@/page/user/agreement'
import Recharge from '@/page/user/recharge'
import RechargeSure from '@/page/user/recharge-sure'
import RechargeList from '@/page/user/rechargelist'
import Cash from '@/page/user/cash'
import Cashlist from '@/page/user/cashlist'
import AddCard from '@/page/user/addCard'
import Setting from '@/page/user/my'
import Transfer from '@/page/user/transfer'
import IndexList from '@/page/list/index-list'
import indexBuy from '@/page/home/index-buy'
import TwoBuy from '@/page/home/two-buy'
import SubWarehouseBuy from '@/page/home/sub-warehouse-buy'
import futuresBuy from '@/page/home/futures-buy'
import Agree from '@/page/registerAgree'
import Trage from '@/page/tradeAgree'
import OpenAccount from '@/page/openaccount'
import FundsList from '@/page/funds/funds-list'
import newLogin from '@/page/login/login.vue'
import newRegister from '@/page/login/register.vue'
import NewPage from '@/page/home/newPage'
 
Vue.use(Router)
 
const routerPush = Router.prototype.push
Router.prototype.push = function push (location) {
  return routerPush.call(this, location).catch(error => error)
}
 
export default new Router({
  routes: [
    {
      path: '/',
      redirect: '/home'
    }, {
      path: '/home',
      name: 'home',
      meta: {
        title: '首页',
        requireAuth: true
      },
      component: Home
    }, {
      path: '/buy',
      name: 'buy',
      meta: {
        title: '购买',
        requireAuth: true,
        hasHeader: true
      },
      component: Buy
    }, {
      path: '/newPage',
      name: 'newPage',
      meta: {
        title: 'new',
        requireAuth: false,
        hasHeader: false
      },
      component: NewPage
    },
    {
      path: '/register',
      name: 'register',
      meta: {
        title: '注册'
      },
      component: Register
    }, {
      path: '/forget',
      name: 'forget',
      meta: {
        title: '忘记密码'
      },
      component: Forget
    }, {
      path: '/login',
      name: 'login',
      meta: {
        title: '账户登录',
        hasHeader: true
      },
      component: Login
    }, {
      path: '/openaccount',
      name: 'openaccount',
      meta: {
        title: '开户',
        hasHeader: true
      },
      component: OpenAccount
    }, {
      path: '/list',
      name: 'list',
      meta: {
        title: '行情',
        requireAuth: false,
        hasHeader: true
      },
      component: List
    }, {
      path: '/indexsearchlist',
      name: '指数查询',
      meta: {
        title: '指数查询'
      },
      component: IndexSearchlist
    }, {
      path: '/indexlist',
      name: 'indexlist',
      meta: {
        title: '指数列表',
        requireAuth: false
      },
      component: IndexList
    }, {
      path: '/searchlist',
      name: '个股查询',
      meta: {
        title: '个股查询'
      },
      component: Searchlist
    }, {
      path: '/searchmylist',
      name: 'searchmylist',
      meta: {
        title: '自选查询',
        requireAuth: true
      },
      component: SearchMylist
    }, {
      path: '/mylist',
      name: 'mylist',
      meta: {
        title: '自选列表',
        requireAuth: true,
        hasHeader: true
 
      },
      component: MyList
    }, {
      path: '/listdetail',
      name: 'listdetail',
      meta: {
        title: '详情',
        requireAuth: false,
        hasHeader: true
      },
      component: ListDetail
    }, {
      path: '/listdetail2',
      name: 'listdetail2',
      meta: {
        title: '详情',
        requireAuth: false,
        hasHeader: true
      },
      component: ListDetail2
    },
    {
      path: '/indexBuy',
      name: 'indexBuy',
      meta: {
        title: '指数购买',
        requireAuth: false,
        hasHeader: true,
        iconRight:'search'
      },
      component: indexBuy
    },
    {
      path: '/twoBuy',
      name: 'TwoBuy',
      meta: {
        title: '两融交易',
        requireAuth: false,
        hasHeader: true,
        iconRight:'search'
      },
      component: TwoBuy
    },
    {
      path: '/subWarehouseBuy',
      name: 'SubWarehouseBuy',
      meta: {
        title: '分仓交易',
        requireAuth: false,
        hasHeader: true,
        iconRight:'search'
      },
      component: SubWarehouseBuy
    }, {
      path: '/futuresBuy',
      name: 'futuresBuy',
      meta: {
        title: '期货购买',
        requireAuth: false,
        hasHeader: true,
      },
      component: futuresBuy
    }, {
      path: '/inquiry',
      name: 'inquiry',
      meta: {
        title: '询价',
        requireAuth: true
      },
      component: Inquiry
    }, {
      path: '/user',
      name: 'user',
      meta: {
        title: '我的',
        requireAuth: false,
        hasHeader: true
      },
      component: User
    },
   {
      path: '/transfer',
      name: 'transfer',
      meta: {
        title: '资金互转',
        requireAuth: true
      },
      component: Transfer
    }, {
      path: '/orderlist',
      name: 'orderlist',
      meta: {
        title: '持仓',
        requireAuth: false,
        hasHeader: true,
      },
      component: OrderList
    },
    {
      path: '/holdorderlist',
      name: 'holdorderlist',
      meta: {
        title: '查询持仓',
        requireAuth: true,
        hasHeader:true
      },
      component: holdOrderList
    }, {
      path: '/holdorderlist2',
      name: 'holdorderlist2',
      meta: {
        title: '查询持仓',
        requireAuth: true,
        hasHeader:true
      },
      component: holdOrderList2
    }, {
      path: '/sellorderlist',
      name: 'sellorderlist',
      meta: {
        title: '查询平仓',
        requireAuth: true,
        hasHeader: true
      },
      component: sellOrderList
    }, {
      path: '/sellorderlist2',
      name: 'sellorderlist2',
      meta: {
        title: '查询平仓',
        requireAuth: true,
        hasHeader: true
      },
      component: sellOrderList2
    }, {
      path: '/detail',
      name: 'detail',
      meta: {
        title: '资金明细',
        requireAuth: true,
        hasHeader: true
      },
      component: Detail
    }, {
      path: '/card',
      name: 'card',
      meta: {
        title: '银行卡',
        requireAuth: true,
        hasHeader: true
      },
      component: Card
    }, {
      path: '/authentication',
      name: 'authentication',
      meta: {
        title: '认证',
        requireAuth: true,
        hasHeader: true
      },
      component: Authentication
    }, {
      path: '/aggre',
      name: 'aggre',
      meta: {
        title: '合作协议',
        requireAuth: true
      },
      component: Aggre
    }, {
      path: '/recharge',
      name: 'recharge',
      meta: {
        title: '充值',
        requireAuth: true,
        hasHeader: true
 
      },
      component: Recharge
    }, {
      path: '/rechargeSure',
      name: 'rechargeSure',
      meta: {
        title: '确认充值',
        requireAuth: true,
        hasHeader: true
 
      },
      component: RechargeSure
    }, {
      path: '/rechargelist',
      name: 'rechargelist',
      meta: {
        title: '充值记录',
        requireAuth: true,
        hasHeader: true
      },
      component: RechargeList
    }, {
      path: '/cash',
      name: 'cash',
      meta: {
        title: '提现',
        requireAuth: true,
        hasHeader:true
      },
      component: Cash
    }, {
      path: '/addCard',
      name: 'addCard',
      meta: {
        title: '添加银行卡',
        requireAuth: true,
        hasHeader:true
 
      },
      component: AddCard
    }, {
      path: '/cashlist',
      name: 'cashlist',
      meta: {
        title: '提现记录',
        requireAuth: true,
        hasHeader:true
 
      },
      component: Cashlist
    }, {
      path: '/setting',
      name: 'setting',
      meta: {
        title: '设置',
        requireAuth: true
      },
      component: Setting
    }, {
      path: '/agree',
      name: 'agree',
      meta: {
        title: '注册协议',
        requireAuth: true
      },
      component: Agree
    }, {
      path: '/trade',
      name: 'trade',
      meta: {
        title: '交易⻛险揭示书',
        requireAuth: true
      },
      component: Trage
    },
    {
      path: '/alertdetail',
      name: 'alertdetail',
      meta: {
        title: '公告详情',
        requireAuth: true
      },
      component: Alertdetail
    },
    {
      path: '/funds',
      name:'funds',
      meta: {
        title: '配资主页',
        requireAuth: true,
        hasHeader: true,
        iconRight: 'setting'
      },
      component: () => import('../page/funds/index')
    },
    {
      path: '/days',
      name:'days',
      meta: {
        title: '按天配资',
        requireAuth: true,
        hasHeader: true,
        iconRight: 'setting'
      },
      component: () => import('../page/funds/days')
    },
    {
      path: '/xingu',
      name:'xingu',
      meta: {
        title: '新股申购',
        requireAuth: true,
        hasHeader: true,
        iconRight: 'setting'
      },
      component: () => import('../page/funds/xingu')
    },
    {
      path: '/searchStock',
      name: 'searchStock',
      meta: {
        title: '查询股票',
        requireAuth: true,
        hasHeader: true,
      },
      component: () => import('../page/list/search')
    },
    {
      path: '/notify',
      name: 'notify',
      meta: {
        title: '消息记录',
        requireAuth: true,
        hasHeader: true,
      },
      component: () => import('../page/user/notify')
    }, {
      path: '/fundslist',
      name: 'fundslist',
      meta: {
        title: '分仓配资',
        requireAuth: false,
        hasHeader: true,
      },
      component: FundsList
    },
   {
      path: '/newLogin',
      name: 'newLogin',
      meta: {
        title: '新登录',
        requireAuth: false,
        hasHeader: true,
      },
      component: newLogin
    },
    {
       path: '/newRegister',
       name: 'newRegister',
       meta: {
         title: '新注册',
         requireAuth: false,
         hasHeader: false,
       },
       component: newRegister
     },
    {
      // 会匹配所有路径
      path: '*',
      redirect: '/home'
    }
  ]
})