diff --git a/src/api/accounts.js b/src/api/accounts.js index f1211b6..a4ad3ec 100644 --- a/src/api/accounts.js +++ b/src/api/accounts.js @@ -271,4 +271,22 @@ export function singleMerBillExport(type,data) { */ export function singleMerBillHeader(id,data) { return request.get(`financial_record/mer_title/${id}`, data) -} \ No newline at end of file +} +/** + * @description 补贴 -- 列表 + */ +export function subsidyListApi(data) { + return request.get(`system/financial/subsidy/index`, data) +} +/** + * @description 补贴审核 + */ +export function subsidyStatusApi(data) { + return request.post(`system/financial/subsidy/status`, data) +} +/** + * @description 补贴修改 + */ +export function subsidyUpdateApi(data) { + return request.post(`system/financial/subsidy/update`, data) +} diff --git a/src/router/modules/accounts.js b/src/router/modules/accounts.js index 6550d95..61ed93b 100644 --- a/src/router/modules/accounts.js +++ b/src/router/modules/accounts.js @@ -83,7 +83,7 @@ const accountsRouter = activeMenu: `${roterPre}/accounts/merchantBill` }, component: () => import('@/views/accounts/statement/merchantDetail'), - hidden: true + hidden: true }, { path: 'reconciliation/order/:id/:type?', @@ -105,6 +105,15 @@ const accountsRouter = }, component: () => import('@/views/accounts/capitalFlow/index') }, + { + path: 'subsidy', + name: 'subsidy', + meta: { + title: '补贴记录', + noCache: true + }, + component: () => import('@/views/accounts/subsidy/index') + }, { path: 'transferRecord', name: 'AccountsTransferRecord', diff --git a/src/views/accounts/subsidy/index.vue b/src/views/accounts/subsidy/index.vue new file mode 100644 index 0000000..f6392ed --- /dev/null +++ b/src/views/accounts/subsidy/index.vue @@ -0,0 +1,187 @@ + + + + +