From 69f63076c859deeb0488859e996e8b7012f0eef6 Mon Sep 17 00:00:00 2001 From: xiaozhiyong Date: Tue, 11 Jun 2024 08:40:08 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/financialCenter/invoice.js | 11 + financialCenter/invoice/pool/index.vue | 271 +++++++++++++++++++++++++ pages.json | 11 +- pages/index/menu.json | 7 + 4 files changed, 299 insertions(+), 1 deletion(-) create mode 100644 api/financialCenter/invoice.js create mode 100644 financialCenter/invoice/pool/index.vue diff --git a/api/financialCenter/invoice.js b/api/financialCenter/invoice.js new file mode 100644 index 0000000..e84e0d3 --- /dev/null +++ b/api/financialCenter/invoice.js @@ -0,0 +1,11 @@ +import request from '@/utils/request' + +export default { + getInvoicePoolPage(data = {}) { + return request({ + url: '/oil-finance/internalCompany/getInvoicePoolPage', + method: 'post', + data: data + }) + }, +} diff --git a/financialCenter/invoice/pool/index.vue b/financialCenter/invoice/pool/index.vue new file mode 100644 index 0000000..caa3461 --- /dev/null +++ b/financialCenter/invoice/pool/index.vue @@ -0,0 +1,271 @@ + + + + + \ No newline at end of file diff --git a/pages.json b/pages.json index 46fb927..5462a35 100644 --- a/pages.json +++ b/pages.json @@ -447,7 +447,6 @@ } }, - { "path": "serviceStation/detail", "style": { @@ -456,6 +455,16 @@ "enablePullDownRefresh": false } + }, + { + "path": "invoice/pool/index", + "style": { + "navigationBarBackgroundColor": "#2866FF", + "navigationBarTitleText": "发票池", + "navigationStyle": "custom", + "enablePullDownRefresh": false + } + } ] diff --git a/pages/index/menu.json b/pages/index/menu.json index ad9a968..42596d1 100644 --- a/pages/index/menu.json +++ b/pages/index/menu.json @@ -165,6 +165,13 @@ "router":"/financialCenter/settlementDoc/manage/index", "lable":"finance:settlementDoc:manage", "image":"../../static/newindex/customerList.png" + }, + { + "icon":"iconxiugaijiage", + "name":"发票池", + "router":"/financialCenter/invoice/pool/index", + "lable":"finance:settlementDoc:manage", + "image":"../../static/newindex/distributeReverseList.png" } ] },