task#15638,增加上传发票接口
This commit is contained in:
@ -2,6 +2,7 @@ import Vue from "vue";
|
||||
import VueRouter from "vue-router";
|
||||
Vue.use(VueRouter);
|
||||
import kpiRouter from './kpi-router'
|
||||
import invoiceRouter from "@/router/invoice-router";
|
||||
const routes = [
|
||||
{
|
||||
path: '/',
|
||||
@ -84,7 +85,7 @@ const routes = [
|
||||
name: 'invoicingNotify',
|
||||
component: () => import('@/views/index/invoicingNotify.vue'),
|
||||
meta: {
|
||||
title: '开票通知'
|
||||
title: '工单批次'
|
||||
}
|
||||
},
|
||||
{
|
||||
@ -92,7 +93,7 @@ const routes = [
|
||||
name: 'invoicingDetail',
|
||||
component: () => import('@/views/index/invoicingDetail'),
|
||||
meta: {
|
||||
title: '开票通知详情'
|
||||
title: '工单批次详情'
|
||||
}
|
||||
},
|
||||
{
|
||||
@ -232,6 +233,7 @@ const routes = [
|
||||
}
|
||||
},
|
||||
...kpiRouter,
|
||||
...invoiceRouter,
|
||||
]
|
||||
|
||||
const router = new VueRouter({
|
||||
|
11
src/router/invoice-router.js
Normal file
11
src/router/invoice-router.js
Normal file
@ -0,0 +1,11 @@
|
||||
const invoiceRouter = [
|
||||
{
|
||||
path: '/invoiceIndex',
|
||||
name: 'invoiceIndex',
|
||||
component: () => import('@/views/invoice/invoiceIndex'),
|
||||
meta:{
|
||||
title: '道路救援',
|
||||
}
|
||||
},
|
||||
]
|
||||
export default invoiceRouter
|
@ -2,7 +2,7 @@
|
||||
<div class="wrap">
|
||||
<div class="navBar">
|
||||
<van-nav-bar
|
||||
title="开票通知详情"
|
||||
title="工单批次详情"
|
||||
left-arrow
|
||||
left-arrow-color="#FFFFFF"
|
||||
:border="false"
|
||||
|
@ -2,7 +2,7 @@
|
||||
<div class="wrap">
|
||||
<div class="navBar">
|
||||
<van-nav-bar
|
||||
title="开票通知"
|
||||
title="工单批次"
|
||||
left-arrow
|
||||
left-arrow-color="#FFFFFF"
|
||||
:border="false"
|
||||
|
13
src/views/invoice/invoiceIndex.vue
Normal file
13
src/views/invoice/invoiceIndex.vue
Normal file
@ -0,0 +1,13 @@
|
||||
<template>
|
||||
<div class="wrap">票务首页</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "invoiceIndex"
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
Reference in New Issue
Block a user