From c501ba0a53f79febb80ac344eaf093b0181945ab Mon Sep 17 00:00:00 2001 From: xiaozhiyong Date: Wed, 13 Nov 2024 13:21:59 +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 --- .../balanceInquiry.js | 12 + api/bankEnterpriseConnection/payment.js | 25 + .../balanceInquiry/components/listItem.vue | 332 ++++++++++ .../balanceInquiry/index.vue | 365 +++++++++++ .../payment/components/listItem.vue | 341 ++++++++++ bankEnterpriseConnection/payment/details.vue | 601 ++++++++++++++++++ bankEnterpriseConnection/payment/index.vue | 576 +++++++++++++++++ .../companyManagement/detail.vue | 2 +- oilAccount/page/accountRecharge/index.vue | 2 +- oilAccount/page/companyRecharge/index.vue | 2 +- pages.json | 29 + pages/index/menu.json | 22 + priceAdjustmentTask/page/index.vue | 2 +- utils/request.js | 53 +- 14 files changed, 2337 insertions(+), 27 deletions(-) create mode 100644 api/bankEnterpriseConnection/balanceInquiry.js create mode 100644 api/bankEnterpriseConnection/payment.js create mode 100644 bankEnterpriseConnection/balanceInquiry/components/listItem.vue create mode 100644 bankEnterpriseConnection/balanceInquiry/index.vue create mode 100644 bankEnterpriseConnection/payment/components/listItem.vue create mode 100644 bankEnterpriseConnection/payment/details.vue create mode 100644 bankEnterpriseConnection/payment/index.vue diff --git a/api/bankEnterpriseConnection/balanceInquiry.js b/api/bankEnterpriseConnection/balanceInquiry.js new file mode 100644 index 0000000..f77320b --- /dev/null +++ b/api/bankEnterpriseConnection/balanceInquiry.js @@ -0,0 +1,12 @@ +import request from '@/utils/request' + +export default { + getCEBBalanceList () { + return request({ + url: '/oil-finance/ceb/getCEBBalanceList', + method: 'get' + }) + }, + + +} diff --git a/api/bankEnterpriseConnection/payment.js b/api/bankEnterpriseConnection/payment.js new file mode 100644 index 0000000..eccb57c --- /dev/null +++ b/api/bankEnterpriseConnection/payment.js @@ -0,0 +1,25 @@ +import request from '@/utils/request' + +export default { + getByPage(params) { + return request({ + url: '/oil-finance/bankEnterpriseTransfer/getByPage', + method: 'post', + data: params + }) + }, + audit(params) { + return request({ + url: '/oil-finance/bankEnterpriseTransfer/audit', + method: 'post', + data: params + }) + }, + transferVerification(id) { + return request({ + url: `/oil-finance/ceb/transferVerification/${id}`, + method: 'get' + }) + }, + +} \ No newline at end of file diff --git a/bankEnterpriseConnection/balanceInquiry/components/listItem.vue b/bankEnterpriseConnection/balanceInquiry/components/listItem.vue new file mode 100644 index 0000000..6c9be2e --- /dev/null +++ b/bankEnterpriseConnection/balanceInquiry/components/listItem.vue @@ -0,0 +1,332 @@ + + + + + \ No newline at end of file diff --git a/bankEnterpriseConnection/balanceInquiry/index.vue b/bankEnterpriseConnection/balanceInquiry/index.vue new file mode 100644 index 0000000..240b0d7 --- /dev/null +++ b/bankEnterpriseConnection/balanceInquiry/index.vue @@ -0,0 +1,365 @@ + + + + + \ No newline at end of file diff --git a/bankEnterpriseConnection/payment/components/listItem.vue b/bankEnterpriseConnection/payment/components/listItem.vue new file mode 100644 index 0000000..e996695 --- /dev/null +++ b/bankEnterpriseConnection/payment/components/listItem.vue @@ -0,0 +1,341 @@ + + + + + \ No newline at end of file diff --git a/bankEnterpriseConnection/payment/details.vue b/bankEnterpriseConnection/payment/details.vue new file mode 100644 index 0000000..1684419 --- /dev/null +++ b/bankEnterpriseConnection/payment/details.vue @@ -0,0 +1,601 @@ + + + + + \ No newline at end of file diff --git a/bankEnterpriseConnection/payment/index.vue b/bankEnterpriseConnection/payment/index.vue new file mode 100644 index 0000000..f54aa7e --- /dev/null +++ b/bankEnterpriseConnection/payment/index.vue @@ -0,0 +1,576 @@ + + + + + \ No newline at end of file diff --git a/customerManagement/companyManagement/detail.vue b/customerManagement/companyManagement/detail.vue index bd169c6..9d201f7 100644 --- a/customerManagement/companyManagement/detail.vue +++ b/customerManagement/companyManagement/detail.vue @@ -24,7 +24,7 @@ - + 默认 diff --git a/oilAccount/page/accountRecharge/index.vue b/oilAccount/page/accountRecharge/index.vue index 0e5dd85..572bca0 100644 --- a/oilAccount/page/accountRecharge/index.vue +++ b/oilAccount/page/accountRecharge/index.vue @@ -41,7 +41,7 @@ - + diff --git a/oilAccount/page/companyRecharge/index.vue b/oilAccount/page/companyRecharge/index.vue index 671d406..99942c2 100644 --- a/oilAccount/page/companyRecharge/index.vue +++ b/oilAccount/page/companyRecharge/index.vue @@ -29,7 +29,7 @@ - + diff --git a/pages.json b/pages.json index 3a7e6ec..11f779a 100644 --- a/pages.json +++ b/pages.json @@ -475,6 +475,35 @@ } ] }, + { + "root": "bankEnterpriseConnection", + "pages": [ + { + "path": "balanceInquiry/index", + "style": { + "navigationBarTitleText": "账户余额", + "navigationStyle": "custom", + "enablePullDownRefresh": false + } + }, + { + "path": "payment/index", + "style": { + "navigationBarTitleText": "付款管理", + "navigationStyle": "custom", + "enablePullDownRefresh": false + } + }, + { + "path": "payment/details", + "style": { + "navigationBarTitleText": "详情", + + "enablePullDownRefresh": false + } + } + ] + }, { "root": "userManagement", "pages": [ diff --git a/pages/index/menu.json b/pages/index/menu.json index 166a3d6..464c056 100644 --- a/pages/index/menu.json +++ b/pages/index/menu.json @@ -181,6 +181,28 @@ } ] }, + { + "name": "银企直联", + "icon": "iconqichexiangguan-jiayouzhan", + "label": "bankEnterpriseConnection", + "colorOpen": false, + "submenu": [ + { + "icon": "iconxiugaijiage", + "name": "账户余额", + "router": "/bankEnterpriseConnection/balanceInquiry/index", + "lable": "finance:enterprise:account", + "image": "../../static/newindex/accountEnterpriseList.png" + }, + { + "icon": "iconxiugaijiage", + "name": "付费管理", + "router": "/bankEnterpriseConnection/payment/index", + "lable": "finance:serviceStation:account", + "image": "../../static/newindex/accountServiceStationList.png" + } + ] + }, { "name": "用户管理", "icon": "iconxiugaiyonghuxinxi", diff --git a/priceAdjustmentTask/page/index.vue b/priceAdjustmentTask/page/index.vue index ab2cca2..4e4de53 100644 --- a/priceAdjustmentTask/page/index.vue +++ b/priceAdjustmentTask/page/index.vue @@ -37,7 +37,7 @@ - +