123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- import Vue from 'vue'
- import Router from 'vue-router'
- import login from '@/components/login'
- import getproject from '@/components/getproject'
- import saleindex from '@/components/saleindex'
- import getoverduesummary from '@/components/GetOverDueSummary'
- import getremindsigncontract from '@/components/getremindsigncontract'
- import getremindbuycontract from '@/components/getremindbuycontract'
- import getremindvisit from '@/components/getremindvisit'
- import getremindarrearage from '@/components/getremindarrearage'
- import gettodaytodosummary from '@/components/gettodaytodosummary'
- import getsabuildingselectlist from '@/components/getsabuildingselectlist'
- import getsabuildingstruct from '@/components/getsabuildingstruct'
- import getsaroominfo from '@/components/getsaroominfo'
- import getsaclientcontactlist from '@/components/getsaclientcontactlist'
- import getsaclientcontactinfo from '@/components/getsaclientcontactinfo'
- import getsaclientsummary from '@/components/getsaclientsummary'
- import getsaclientsummarylist from '@/components/getsaclientsummarylist'
- import filterhouse from '@/components/filterhouse'
- import getsaroomlist from '@/components/getsaroomlist'
- import clientdetail from '@/components/clientdetail'
- import addsaclientcontact from '@/components/addsaclientcontact'
- Vue.use(Router)
- export default new Router({
- routes: [
- { //登录页
- path: '/',
- name: 'login',
- component: login
- },
- { //项目选项
- path: '/getproject',
- name: 'getproject',
- component: getproject
- },
- { //销售首页
- path: '/saleindex',
- name: 'saleindex',
- component: saleindex
- },
- { //逾期提醒
- path: '/getoverduesummary',
- name: 'getoverduesummary',
- component: getoverduesummary
- },
- { //逾期待签约客户
- path: '/getremindsigncontract',
- name: 'getremindsigncontract',
- component: getremindsigncontract
- },
- { //逾期待认购客户
- path: '/getremindbuycontract',
- name: 'getremindbuycontract',
- component: getremindbuycontract
- },
- { //逾期待回访客户
- path: '/getremindvisit',
- name: 'getremindvisit',
- component: getremindvisit
- },
- { //逾期待缴款客户
- path: '/getremindarrearage',
- name: 'getremindarrearage',
- component: getremindarrearage
- },
- { //催办
- path: '/gettodaytodosummary',
- name: 'gettodaytodosummary',
- component: gettodaytodosummary
- },
- { //楼栋
- path: '/getsabuildingselectlist',
- name: 'getsabuildingselectlist',
- component: getsabuildingselectlist
- },
- { //楼栋详情
- path: '/getsabuildingstruct',
- name: 'getsabuildingstruct',
- component: getsabuildingstruct
- },
- { //房源信息
- path: '/getsaroominfo',
- name: 'getsaroominfo',
- component: getsaroominfo
- },
- { //联系记录
- path: '/getsaclientcontactlist',
- name: 'getsaclientcontactlist',
- component: getsaclientcontactlist
- },
- { //联系记录详情
- path: '/getsaclientcontactinfo',
- name: 'getsaclientcontactinfo',
- component: getsaclientcontactinfo
- },
- { //客户分类汇总
- path: '/getsaclientsummary',
- name: 'getsaclientsummary',
- component: getsaclientsummary
- },
- { //客户分类清单
- path: '/getsaclientsummarylist',
- name: 'getsaclientsummarylist',
- component: getsaclientsummarylist
- },
- { //筛选房源
- path: '/filterhouse',
- name: 'filterhouse',
- component: filterhouse
- },
- { //房源查询
- path: '/getsaroomlist',
- name: 'getsaroomlist',
- component: getsaroomlist
- },
- { //客户详情
- path: '/clientdetail',
- name: 'clientdetail',
- component: clientdetail
- },
- { //新增客户跟进
- path: '/addsaclientcontact',
- name: 'addsaclientcontact',
- component: addsaclientcontact
- },
- ]
- })
|