Blame view

config/routers/finance.ts 4.6 KB
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  export default [
    {
      path: "/finance2/apitalAccount", // 资金账户
      component: "./finance/ApitalAccount",
    },
    {
      path: "/finance2/accountInit", //开账设置
      component: "./finance/AccountInit",
    },
    {
      path: "/finance2/shopAccountAuth", //门店资金账户授权
      component: "./finance/ShopAccountAuth",
    },
    {
      path: "/finance2/userAccountAuth", //人员资金账户授权
      component: "./finance/UserAccountAuth",
    },
    {
      path: "/finance2/tradeCompany", //往来单位设置
      component: "finance/TradeCompany",
    },
    {
      path: "/finance2/companyRelationAuth", //往来单位关系设置
      component: "finance/CompanyRelationAuth",
    },
    {
fd16749f   zhaofeng   往来单位关系设置
27
28
29
30
      path: "/finance2/companyRelationAuth/create", //往来单位关系设置==》新增
      component: "finance/CompanyRelationCreate",
    },
    {
212a4c07   zhaolin   划扣专用账户
31
32
33
34
      path: "/finance2/specialAccountSetting/deductAccount", //划扣专用账户
      component: "./finance/SpecialAccount/DeductAccount",
    },
    {
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
      path: "/finance2/specialAccountSetting/financingCompany", // 融资公司账户
      component: "./finance/SpecialAccount/FinancingCompany",
    },
    {
      path: "/finance2/specialAccountSetting/factoryCash", // 厂家现金账户
      component: "./finance/SpecialAccount/FactoryCash",
    },
    {
      path: "/finance2/specialAccountSetting/factoryBill", // 厂家票据启票账户
      component: "./finance/SpecialAccount/FactoryBill",
    },
    {
      path: "/finance2/specialAccountSetting/company", //金融公司账户
      component: "./finance/SpecialAccount/Company",
    },
    {
      path: "/finance2/specialAccountSetting/factoryDiscount", //折让账户
      component: "./finance/SpecialAccount/FactoryDiscount",
    },
    {
      path: "/finance2/specialAccountSetting/insuCompany", //保险公司到账账户
      component: "./finance/SpecialAccount/InsuCompany",
    },
    {
      path: "/finance2/specialAccountSetting/loanBank", //贷款银行账户
      component: "./finance/SpecialAccount/LoanBank",
    },
    {
      path: "/finance2/specialAccountSetting/casThreePack", //贷款银行账户
      component: "./finance/SpecialAccount/CasThreePack",
    },
    {
      path: "/finance2/financeSubject", //财务主体
      component: "./finance/FinanceSubject",
    },
    {
      path: "/finance2/reimburse/reimburseConfig", //报销费用设置
      component: "./finance/Reimburse/ReimburseConfig",
    },
    {
      path: "/finance2/reimburse/reimburseFeeScope", //报销费用范围设置
      component: "./finance/Reimburse/ReimburseFeeScope",
    },
    {
      path: "/finance2/reimburse/reimburseFeeMaterial", //报销材料设置
      component: "./finance/Reimburse/ReimburseFeeMaterial",
    },
    {
      path: "/finance2/financeConfig", //财务配置
      component: "./finance/FinanceConfig",
    },
    {
      path: "/finance2/poundageConfig/subsidySetting", //手续费补贴设置
      component: "./finance/PoundageConfig/SubsidySetting",
    },
    {
      path: "/finance2/poundageConfig/wechatMerchant", //微信商户号手续费设置
      component: "./finance/PoundageConfig/WechatMerchant",
    },
    {
e4a0dd8b   zhaolin   商户号手续费配置
95
96
97
98
      path: "/finance2/poundageConfig/poundageMerchant", //商户号手续费设置
      component: "./finance/PoundageConfig/PoundageMerchant",
    },
    {
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
      path: "/finance2/poundageConfig/transferMethodSetting", //转账方式设置
      component: "./finance/PoundageConfig/TransferMethodSetting",
    },
    {
      path: "/finance2/poundageConfig/transfer", //转账手续费设置
      component: "./finance/PoundageConfig/Transfer",
    },
    {
      path: "/finance2/poundageConfig/customer", //收客户手续费设置
      component: "./finance/PoundageConfig/Customer",
    },
    {
      path: "/finance2/poundageConfig/pos", //pos机手续费设置
      component: "./finance/PoundageConfig/POS",
    },
    {
      path: "/finance2/poundageConfig/posAuth", //pos机授权
      component: "./finance/PoundageConfig/POSAuth",
    },
    {
      path: "/finance2/financeInvestor", //投资主体
      component: "./finance/FinanceInvestor",
    },
    {
      path: "/finance2/basicConfig/businessDetails", //业务详情
      component: "./finance/BasicConfig/BusinessDetails",
    },
    {
      path: "/finance2/basicConfig/businessType", //业务类型
      component: "./finance/BasicConfig/BusinessType",
    },
    {
      path: "/finance2/basicConfig/financeType", //财务款项
      component: "./finance/BasicConfig/FinanceType",
    },
    {
      path: "/finance2/poundageConfig/freePoundage", //免手续费设置
      component: "./finance/PoundageConfig/FreePoundage",
    },
    {
      path: "/finance2/customerAccount", //客户账户
      component: "./finance/CustomerAccount",
    },
da99f708   zhaofeng   款项配置
142
143
144
145
    {
      path: "/finance2/PaymentAllocation", // 款项配置
      component: "./finance/PaymentAllocation",
    },
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
146
  ];