task#15638,增加上传发票接口
This commit is contained in:
@ -2,6 +2,7 @@ import Vue from "vue";
|
|||||||
import VueRouter from "vue-router";
|
import VueRouter from "vue-router";
|
||||||
Vue.use(VueRouter);
|
Vue.use(VueRouter);
|
||||||
import kpiRouter from './kpi-router'
|
import kpiRouter from './kpi-router'
|
||||||
|
import invoiceRouter from "@/router/invoice-router";
|
||||||
const routes = [
|
const routes = [
|
||||||
{
|
{
|
||||||
path: '/',
|
path: '/',
|
||||||
@ -84,7 +85,7 @@ const routes = [
|
|||||||
name: 'invoicingNotify',
|
name: 'invoicingNotify',
|
||||||
component: () => import('@/views/index/invoicingNotify.vue'),
|
component: () => import('@/views/index/invoicingNotify.vue'),
|
||||||
meta: {
|
meta: {
|
||||||
title: '开票通知'
|
title: '工单批次'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -92,7 +93,7 @@ const routes = [
|
|||||||
name: 'invoicingDetail',
|
name: 'invoicingDetail',
|
||||||
component: () => import('@/views/index/invoicingDetail'),
|
component: () => import('@/views/index/invoicingDetail'),
|
||||||
meta: {
|
meta: {
|
||||||
title: '开票通知详情'
|
title: '工单批次详情'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -232,6 +233,7 @@ const routes = [
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
...kpiRouter,
|
...kpiRouter,
|
||||||
|
...invoiceRouter,
|
||||||
]
|
]
|
||||||
|
|
||||||
const router = new VueRouter({
|
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="wrap">
|
||||||
<div class="navBar">
|
<div class="navBar">
|
||||||
<van-nav-bar
|
<van-nav-bar
|
||||||
title="开票通知详情"
|
title="工单批次详情"
|
||||||
left-arrow
|
left-arrow
|
||||||
left-arrow-color="#FFFFFF"
|
left-arrow-color="#FFFFFF"
|
||||||
:border="false"
|
:border="false"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<div class="navBar">
|
<div class="navBar">
|
||||||
<van-nav-bar
|
<van-nav-bar
|
||||||
title="开票通知"
|
title="工单批次"
|
||||||
left-arrow
|
left-arrow
|
||||||
left-arrow-color="#FFFFFF"
|
left-arrow-color="#FFFFFF"
|
||||||
:border="false"
|
: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