From e2f7915a9a0795ee7493662e0f7e432cdd1200de Mon Sep 17 00:00:00 2001 From: "DESKTOP-369JRHT\\12997" <9> Date: Mon, 22 Jul 2024 22:39:23 +0800 Subject: [PATCH] no message --- fuintAdmin_zt/src/api/sys/pay.js | 39 +++ fuintAdmin_zt/src/views/setting/pay/index.vue | 301 ++++++++++++++++++ .../src/views/system/notify/index.vue | 6 + .../system/notify/page/img/icon-adduser.png | Bin 0 -> 629 bytes .../notify/page/img/icon-adduser@3x.png | Bin 0 -> 2486 bytes .../src/views/system/notify/page/mode.vue | 193 ++++++----- .../src/views/system/notify/page/record.vue | 247 +++++++++----- .../api/fuyou/entity/MerchantConfig.java | 7 + .../controller/DeptPriceInfoController.java | 93 ++++++ .../DeptServiceFeeInfoController.java | 93 ++++++ .../DeptTransactionInfoController.java | 93 ++++++ .../deptPay/entity/DeptPriceInfo.java | 43 +++ .../deptPay/entity/DeptServiceFeeInfo.java | 53 +++ .../deptPay/entity/DeptTransactionInfo.java | 48 +++ .../deptPay/mapper/DeptPriceInfoMapper.java | 85 +++++ .../mapper/DeptServiceFeeInfoMapper.java | 85 +++++ .../mapper/DeptTransactionInfoMapper.java | 85 +++++ .../mapper/xml/DeptPriceInfoMapper.xml | 121 +++++++ .../mapper/xml/DeptServiceFeeInfoMapper.xml | 146 +++++++++ .../mapper/xml/DeptTransactionInfoMapper.xml | 135 ++++++++ .../deptPay/service/DeptPriceInfoService.java | 58 ++++ .../service/DeptServiceFeeInfoService.java | 58 ++++ .../service/DeptTransactionInfoService.java | 58 ++++ .../impl/DeptPriceInfoServiceImpl.java | 89 ++++++ .../impl/DeptServiceFeeInfoServiceImpl.java | 89 ++++++ .../impl/DeptTransactionInfoServiceImpl.java | 89 ++++++ .../SysNotificationlogController.java | 93 ++++++ .../sys/controller/SysNotifyController.java | 93 ++++++ .../sys/entity/SysNotificationlog.java | 49 +++ .../fuint/business/sys/entity/SysNotify.java | 48 +++ .../sys/mapper/SysNotificationlogMapper.java | 85 +++++ .../business/sys/mapper/SysNotifyMapper.java | 85 +++++ .../mapper/xml/SysNotificationlogMapper.xml | 128 ++++++++ .../sys/mapper/xml/SysNotifyMapper.xml | 129 ++++++++ .../service/SysNotificationlogService.java | 58 ++++ .../sys/service/SysNotifyService.java | 58 ++++ .../impl/SysNotificationlogServiceImpl.java | 89 ++++++ .../service/impl/SysNotifyServiceImpl.java | 89 ++++++ 38 files changed, 3171 insertions(+), 147 deletions(-) create mode 100644 fuintAdmin_zt/src/api/sys/pay.js create mode 100644 fuintAdmin_zt/src/views/setting/pay/index.vue create mode 100644 fuintAdmin_zt/src/views/system/notify/page/img/icon-adduser.png create mode 100644 fuintAdmin_zt/src/views/system/notify/page/img/icon-adduser@3x.png create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/controller/DeptPriceInfoController.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/controller/DeptServiceFeeInfoController.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/controller/DeptTransactionInfoController.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/entity/DeptPriceInfo.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/entity/DeptServiceFeeInfo.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/entity/DeptTransactionInfo.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/mapper/DeptPriceInfoMapper.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/mapper/DeptServiceFeeInfoMapper.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/mapper/DeptTransactionInfoMapper.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/mapper/xml/DeptPriceInfoMapper.xml create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/mapper/xml/DeptServiceFeeInfoMapper.xml create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/mapper/xml/DeptTransactionInfoMapper.xml create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/service/DeptPriceInfoService.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/service/DeptServiceFeeInfoService.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/service/DeptTransactionInfoService.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/service/impl/DeptPriceInfoServiceImpl.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/service/impl/DeptServiceFeeInfoServiceImpl.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/deptPay/service/impl/DeptTransactionInfoServiceImpl.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/sys/controller/SysNotificationlogController.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/sys/controller/SysNotifyController.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/sys/entity/SysNotificationlog.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/sys/entity/SysNotify.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/sys/mapper/SysNotificationlogMapper.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/sys/mapper/SysNotifyMapper.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/sys/mapper/xml/SysNotificationlogMapper.xml create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/sys/mapper/xml/SysNotifyMapper.xml create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/sys/service/SysNotificationlogService.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/sys/service/SysNotifyService.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/sys/service/impl/SysNotificationlogServiceImpl.java create mode 100644 fuintBackend/fuint-application/src/main/java/com/fuint/business/sys/service/impl/SysNotifyServiceImpl.java diff --git a/fuintAdmin_zt/src/api/sys/pay.js b/fuintAdmin_zt/src/api/sys/pay.js new file mode 100644 index 000000000..c4244608e --- /dev/null +++ b/fuintAdmin_zt/src/api/sys/pay.js @@ -0,0 +1,39 @@ +import request from '@/utils/request' + +// 分页查询所有的订单信息 +export function getPayListApi(query) { + return request({ + url: 'api/merchantConfig/list', + method: 'get', + params: query + + }) +} + +// +export function deletePayApi(PayId) { + return request({ + url: 'api/merchantConfig/' + PayId, + method: 'delete' + + }) +} +// +export function savePayApi(data) { + return request({ + url: 'api/merchantConfig', + method: 'post', + data: data + }) +} + +// 保存修改信息 +export function updatePayApi(data) { + return request({ + url: 'api/merchantConfig', + method: 'put', + data: data + }) +} + + diff --git a/fuintAdmin_zt/src/views/setting/pay/index.vue b/fuintAdmin_zt/src/views/setting/pay/index.vue new file mode 100644 index 000000000..95572967a --- /dev/null +++ b/fuintAdmin_zt/src/views/setting/pay/index.vue @@ -0,0 +1,301 @@ + + + + + diff --git a/fuintAdmin_zt/src/views/system/notify/index.vue b/fuintAdmin_zt/src/views/system/notify/index.vue index 86655b1d2..7a0894c32 100644 --- a/fuintAdmin_zt/src/views/system/notify/index.vue +++ b/fuintAdmin_zt/src/views/system/notify/index.vue @@ -1,5 +1,9 @@