task#15638,增加上传发票接口

This commit is contained in:
2024-11-01 11:15:20 +08:00
parent 432be97178
commit 8aafdc9bff
5 changed files with 30 additions and 4 deletions

View File

@ -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({

View File

@ -0,0 +1,11 @@
const invoiceRouter = [
{
path: '/invoiceIndex',
name: 'invoiceIndex',
component: () => import('@/views/invoice/invoiceIndex'),
meta:{
title: '道路救援',
}
},
]
export default invoiceRouter

View File

@ -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"

View File

@ -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"

View File

@ -0,0 +1,13 @@
<template>
<div class="wrap">票务首页</div>
</template>
<script>
export default {
name: "invoiceIndex"
}
</script>
<style scoped>
</style>