1、调整配载、总单

2、新增收付款模块
This commit is contained in:
2026-08-22 21:11:48 +08:00
parent 1962bee882
commit 5fcb82c0c0
51 changed files with 11663 additions and 1506 deletions
+114
View File
@@ -2,6 +2,120 @@ import Layout from '@/page/index/index.vue';
import Store from '@/store/';
export default [
{
path: '/payment/bill-payment/form',
component: Layout,
children: [
{
path: '',
name: '汇票付款表单',
meta: { keepAlive: false, activeMenu: '/payment/bill-payment' },
component: () => import('@/views/payment/bill-payment-form.vue'),
},
],
},
{
path: '/payment/bill-ledger/form',
component: Layout,
children: [
{
path: '',
name: '汇票台账表单',
meta: { keepAlive: false, activeMenu: '/payment/bill-ledger' },
component: () => import('@/views/payment/bill-ledger-form.vue'),
},
],
},
{
path: '/payment/receipt-claim-record/form',
component: Layout,
children: [
{
path: '',
name: '认领记录详情',
meta: { keepAlive: false, activeMenu: '/payment/receipt-claim-record' },
component: () => import('@/views/payment/receipt-claim-record-form.vue'),
},
],
},
{
path: '/payment/receipt-flow/form',
component: Layout,
children: [
{
path: '',
name: '收款流水认领',
meta: { keepAlive: false, activeMenu: '/payment/receipt-flow' },
component: () => import('@/views/payment/receipt-flow-form.vue'),
},
],
},
{
path: '/payment/invoice-receipt/form',
component: Layout,
children: [
{
path: '',
name: '收票登记',
meta: { keepAlive: false, activeMenu: '/payment/invoice-receipt' },
component: () => import('@/views/payment/invoice-receipt-form.vue'),
},
],
},
{
path: '/payment/invoice-application/form',
component: Layout,
children: [
{
path: '',
name: '开票申请',
meta: { keepAlive: false, activeMenu: '/payment/invoice-application' },
component: () => import('@/views/payment/invoice-application-form.vue'),
},
],
},
{
path: '/payment/payment-application/form',
component: Layout,
children: [
{
path: '',
name: '付款申请',
meta: { keepAlive: false, activeMenu: '/payment/payment-application' },
component: () => import('@/views/payment/payment-application-form.vue'),
},
],
},
{
path: '/settlement/pre-settlement/form',
component: Layout,
children: [
{
path: '',
name: '新增编辑预结算',
meta: {
keepAlive: false,
activeMenu: '/settlement/pre-settlement',
},
component: () => import('@/views/settlement/pre-settlement-form.vue'),
},
],
},
{
path: '/settlement/formal-settlement/form',
component: Layout,
children: [
{
path: '',
name: '新增编辑正式结算',
meta: {
keepAlive: false,
activeMenu: '/settlement/formal-settlement',
},
component: () => import('@/views/settlement/formal-settlement-form.vue'),
},
],
},
{
path: '/business/contract-manage/form',
component: Layout,