123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- import LayoutIndex from '@/layout/Index.vue'
- export default[
- {
- path:'/customer',
- component:LayoutIndex,
- name:'CustomerIndex',
- meta:{
- title:'客户管理'
- },
- children:[
- {
- path:'search_list',
- component:()=>import('@/views/customer/UserSearch.vue'),
- name:"CustomerUserSearch",
- meta:{
- title:'客户检索'
- },
- },
- {
- path:'customer_list',
- component:()=>import('@/views/customer/UserList.vue'),
- name:"CustomerUserList",
- meta:{
- title:'客户列表'
- },
- },
- {
- path:'trial_list',
- component:()=>import('@/views/customer/PotentialUserList.vue'),
- name:"CustomerPotentialUserList",
- meta:{
- title:'试用用户列表'
- },
- },
- {
- path:'userAdd',
- component:()=>import('@/views/customer/UserEdit.vue'),
- name:"CustomerUserAdd",
- meta:{
- title:'新增投资者',
- from:'客户列表',
- fromPath:'/customer/customer_list'
- },
- },
- {
- path:'userEdit',
- component:()=>import('@/views/customer/UserEdit.vue'),
- name:"CustomerUserEdit",
- meta:{
- title:'编辑投资者',
- from:'客户列表',
- fromPath:'/customer/customer_list'
- },
- },
- {
- path:'userDetail',
- component:()=>import('@/views/customer/UserEdit.vue'),
- name:"CustomerUserDetail",
- meta:{
- title:'投资者详情',
- from:'客户列表',
- fromPath:'/customer/customer_list'
- },
- },
- {
- path:'companyAdd',
- component:()=>import('@/views/customer/CompanyEdit.vue'),
- name:"CustomerCompanyAdd",
- meta:{
- title:'新增机构投资者',
- from:'客户列表',
- fromPath:'/customer/customer_list'
- },
- },
- {
- path:'companyEdit',
- component:()=>import('@/views/customer/CompanyEdit.vue'),
- name:"CustomerCompanyEdit",
- meta:{
- title:'编辑机构投资者',
- from:'客户列表',
- fromPath:'/customer/customer_list'
- },
- },
- {
- path:'companyDetail',
- component:()=>import('@/views/customer/CompanyEdit.vue'),
- name:"CustomerCompanyDetail",
- meta:{
- title:'机构投资者详情',
- from:'客户列表',
- fromPath:'/customer/customer_list'
- },
- },
- {
- path:'userTransform',
- component:()=>import('@/views/customer/UserEdit.vue'),
- name:"CustomerUserTransform",
- meta:{
- title:'转客户',
- from:'潜在用户列表',
- fromPath:'/customer/potentialUserList'
- },
- },
- ]
- }
- ]
|