123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393 |
- import Vue from 'vue'
- import Router from 'vue-router'
- import SaleTask from '@/pages/saletask'
- import SaleTaskDetail from '@/pages/saletaskdetail'
- import BuyTaskDetail from '@/pages/buytaskdetail'
- import SaleTaskmxjd from '@/pages/saletaskmxjd'
- import Home from '@/pages/homenew'
- import Setting from '@/pages/setting'
- import Daily from '@/pages/daily'
- import Pushlist from '@/pages/pushlist'
- import About from '@/pages/about'
- import CsesSptTodo from '@/pages/cses_spt/todo'
- import CsesSptDetail from '@/pages/cses_spt/cses_spt_detail'
- import CsesSptFeedback from '@/pages/cses_spt/cses_spt_feedback'
- import WkpFinish from '@/pages/wkpfinish'
- import Orderwkp from '@/pages/orderwkp'
- import Quote from '@/pages/quote'
- import QuoteEdit from '@/pages/quoteedit'
- import QuotePad from '@/pages/quote_pad'
- import QuotePadEdit from '@/pages/quote_edit_pad'
- import QuoteRslt from '@/pages/quote_rslt'
- import Quotehis from '@/pages/quote_his'
- import CustReport from '@/pages/report/custreport'
- import ReportDetail from '@/pages/report/reportdetail'
- import SaletaskReport from '@/pages/report/saletaskreport'
- import Producerp from '@/pages/report/producerp'
- import Producemx from '@/pages/report/producemx'
- import Saletaskycrp from '@/pages/report/saletaskycrp'
- import Saleintime from '@/pages/report/saleintime'
- import Ito from '@/pages/report/ito'
- import Itomx from '@/pages/report/itomx'
- import Profit from '@/pages/report/profit'
- import Task from '@/pages/task'
- import TaskEdit from '@/pages/taskedit'
- import TaskView from '@/pages/taskview'
- import TodoList from '@/pages/l1todolist'
- import OaView from '@/pages/oaview'
- import Amerce from '@/pages/amerce'
- import Testcss from '@/pages/testcss'
- import Funclist from '@/pages/funclist'
- import DmHome from '@/pages/dmweb/dmhome'
- import HomeRp from '@/pages/homerp'
- import OrderZl from '@/pages/orderzl'
- import OrderZLMX from '@/pages/orderzlmx'
- import OrderWkpMx from '@/pages/orderwkpmx'
- Vue.use(Router)
- export default new Router({
- routes: [
- {
- path: '/',
- name: 'Home',
- component: Home
- },
- {
- path: '/taskedit',
- name: 'TaskEdit',
- component: TaskEdit,
- meta: {
- title: '工作任务'
- }
- },
- {
- path: '/orderwkpmx',
- name: 'OrderWkpMx',
- component: OrderWkpMx,
- meta: {
- title: '工组详情'
- }
- },
- {
- path: '/orderzlmx',
- name: 'OrderZLMX',
- component: OrderZLMX,
- meta: {
- title: '指令单详情'
- }
- },
- {
- path: '/orderzl',
- name: 'OrderZl',
- component: OrderZl,
- meta: {
- title: '指令单'
- }
- },
- {
- path: '/homerp',
- name: 'HomeRp',
- component: HomeRp,
- meta: {
- title: '首页报表'
- }
- },
- {
- path: '/dmhome',
- name: 'DmHome',
- component: DmHome,
- meta: {
- title: '需求管理'
- }
- },
- {
- path: '/funclist',
- name: 'Funclist',
- component: Funclist,
- meta: {
- title: '功能'
- }
- },
- {
- path: '/testcss',
- name: 'Testcss',
- component: Testcss,
- meta: {
- title: '测试CSS'
- }
- },
- {
- path: '/buytaskdetail',
- name: 'BuyTaskDetail',
- component: BuyTaskDetail,
- meta: {
- title: '采购订单详情'
- }
- },
- {
- path: '/amerce',
- name: 'Amerce',
- component: Amerce,
- meta: {
- title: '供应商罚款单'
- }
- },
- {
- path: '/oaview',
- name: 'OaView',
- component: OaView,
- meta: {
- title: '公文审批'
- }
- },
- {
- path: '/todolist',
- name: 'TodoList',
- component: TodoList,
- meta: {
- title: '待办'
- }
- },
- {
- path: '/taskview',
- name: 'TaskView',
- component: TaskView,
- meta: {
- title: '工作任务'
- }
- },
- {
- path: '/task',
- name: 'Task',
- component: Task,
- meta: {
- title: '工作任务'
- }
- },
- {
- path: '/detail',
- name: 'SaleTaskDetail',
- component: SaleTaskDetail,
- meta: {
- title: '订单详情'
- }
- },
- {
- path: '/salemxjd',
- name: 'SaleTaskmxjd',
- component: SaleTaskmxjd,
- meta: {
- title: '订单详情'
- }
- },
- {
- path: '/saletask',
- name: 'SaleTask',
- component: SaleTask,
- meta: {
- title: '订单列表'
- }
- },
- {
- path: '/setting',
- name: 'Setting',
- component: Setting,
- meta: {
- title: '我'
- }
- },
- {
- path: '/daily',
- name: 'Daily',
- component: Daily,
- meta: {
- title: '经营日报表'
- }
- },
- {
- path: '/pushlist',
- name: 'Pushlist',
- component: Pushlist,
- meta: {
- title: '推送资讯'
- }
- },
- {
- path: '/about',
- name: 'About',
- component: About,
- meta: {
- title: '关于'
- }
- },
- {
- path: '/csesspttodo',
- name: 'CsesSptTodo',
- component: CsesSptTodo,
- meta: {
- title: '待接收'
- }
- },
- {
- path: '/csessptdetail',
- name: 'CsesSptDetail',
- component: CsesSptDetail,
- meta: {
- title: '采购订单详情'
- }
- },
- {
- path: '/csessptfeedback',
- name: 'CsesSptFeedback',
- component: CsesSptFeedback,
- meta: {
- title: '待回复'
- }
- },
- {
- path: '/wkpfinish',
- name: 'WkpFinish',
- component: WkpFinish,
- meta: {
- title: '工组完工'
- }
- },
- {
- path: '/orderwkp',
- name: 'Orderwkp',
- component: Orderwkp,
- meta: {
- title: '工组进度'
- }
- },
- {
- path: '/quote',
- name: 'Quote',
- component: Quote,
- meta: {
- title: '产品报价'
- }
- },
- {
- path: '/quoteedit',
- name: 'QuoteEdit',
- component: QuoteEdit,
- meta: {
- title: '产品报价'
- }
- },
- {
- path: '/quote_pad',
- name: 'QuotePad',
- component: QuotePad,
- meta: {
- title: '产品报价'
- }
- },
- {
- path: '/quote_edit_pad',
- name: 'QuotePadEdit',
- component: QuotePadEdit,
- meta: {
- title: '产品报价'
- }
- },
- {
- path: '/quote_rslt',
- name: 'QuoteRslt',
- component: QuoteRslt,
- meta: {
- title: '产品报价'
- }
- },
- {
- path: '/quotehis',
- name: 'Quotehis',
- component: Quotehis,
- meta: {
- title: '产品报价历史'
- }
- },
- {
- path: '/custreport',
- name: 'CustReport',
- component: CustReport,
- meta: {
- title: '客户销售排名统计表'
- }
- },
- {
- path: '/reportdetail',
- name: 'ReportDetail',
- component: ReportDetail,
- meta: {
- title: '报表明细'
- }
- },
- {
- path: '/saletaskreport',
- name: 'SaletaskReport',
- component: SaletaskReport,
- meta: {
- title: '新增销售订单统计表'
- }
- },
- {
- path: '/producerp',
- name: 'Producerp',
- component: Producerp,
- meta: {
- title: '产值统计表'
- }
- },
- {
- path: '/producemx',
- name: 'Producemx',
- component: Producemx,
- meta: {
- title: '生产类明细表'
- }
- },
- {
- path: '/saletaskycrp',
- name: 'Saletaskycrp',
- component: Saletaskycrp,
- meta: {
- title: '在进行出口订单异常统计表'
- }
- },
- {
- path: '/saleintime',
- name: 'Saleintime',
- component: Saleintime,
- meta: {
- title: '销售准交统计表'
- }
- },
- {
- path: '/ito',
- name: 'Ito',
- component: Ito,
- meta: {
- title: '周转统计表'
- }
- },
- {
- path: '/itomx',
- name: 'Itomx',
- component: Itomx,
- meta: {
- title: '周转统计表明细'
- }
- },
- {
- path: '/profit',
- name: 'Profit',
- component: Profit,
- meta: {
- title: '销售订单利润统计表'
- }
- }
- ]
- })
|