diff --git a/jeepay-ui-manager/src/api/manage.js b/jeepay-ui-manager/src/api/manage.js index 0a38d0426adbf85683ba5174fdd27c04bd5a4436..c8d598a070d7342248d7b7c66db7207eb5ff5959 100644 --- a/jeepay-ui-manager/src/api/manage.js +++ b/jeepay-ui-manager/src/api/manage.js @@ -74,6 +74,8 @@ export const API_URL_USER_ROLE_RELA_LIST = '/api/sysUserRoleRelas' /** 服务商、商户管理 **/ export const API_URL_ISV_LIST = '/api/isvInfo' export const API_URL_MCH_LIST = '/api/mchInfo' +/** 商户App管理 **/ +export const API_URL_MCH_APP = '/api/mchApps' /** 支付订单管理 **/ export const API_URL_PAY_ORDER_LIST = '/api/payOrder' /** 退款订单管理 **/ @@ -185,7 +187,7 @@ export function getIsvPayConfigUnique (infoId, ifCode) { }) } -export function getMcgPayConfigUnique (infoId, ifCode) { +export function getMchPayConfigUnique (infoId, ifCode) { return request.request({ url: '/api/mch/payConfigs/' + infoId + '/' + ifCode, method: 'get' diff --git a/jeepay-ui-manager/src/components/JeepayCard/JeepayCard.vue b/jeepay-ui-manager/src/components/JeepayCard/JeepayCard.vue index 0b68dc450c8479112949dcf70bf49297739c5945..b57be6d1475c1ae8d88c617cb9f1d683b2f3f6ce 100644 --- a/jeepay-ui-manager/src/components/JeepayCard/JeepayCard.vue +++ b/jeepay-ui-manager/src/components/JeepayCard/JeepayCard.vue @@ -18,7 +18,7 @@ add-icon
- 新增{{ name }} + 新建{{ name }}
diff --git a/jeepay-ui-manager/src/config/appConfig.js b/jeepay-ui-manager/src/config/appConfig.js index 8e36138f1a39c89a4252c09438263723ea4a5659..85d7e3b9450be96cd95c12775f1e01860c0ee4c5 100644 --- a/jeepay-ui-manager/src/config/appConfig.js +++ b/jeepay-ui-manager/src/config/appConfig.js @@ -28,6 +28,7 @@ export const asyncRouteDefine = { 'IfDefinePage': { defaultPath: '/ifdefines', component: () => import('@/views/payconfig/payIfDefine/List') }, 'IsvListPage': { defaultPath: '/isv', component: () => import('@/views/isv/IsvList') }, // 服务商列表 'MchListPage': { defaultPath: '/mch', component: () => import('@/views/mch/MchList') }, // 商户列表 + 'MchAppPage': { defaultPath: '/apps', component: () => import ('@/views/mchApp/List') }, // 商户应用列表 'PayOrderListPage': { defaultPath: '/payOrder', component: () => import('@/views/order/pay/PayOrderList') }, // 支付订单列表 'RefundOrderListPage': { defaultPath: '/refundOrder', component: () => import('@/views/order/refund/RefundOrderList') }, // 退款订单列表 'MchNotifyListPage': { defaultPath: '/notify', component: () => import('@/views/order/notify/MchNotifyList') }, // 商户通知列表 diff --git a/jeepay-ui-manager/src/views/mch/MchList.vue b/jeepay-ui-manager/src/views/mch/MchList.vue index 8a74b55701976b044d82e0c288232f0d9bcd1511..a5d8f652b70be7396e4ebe1f62dc34f7e4344941 100644 --- a/jeepay-ui-manager/src/views/mch/MchList.vue +++ b/jeepay-ui-manager/src/views/mch/MchList.vue @@ -58,7 +58,7 @@ @@ -68,8 +68,6 @@ - - + + diff --git a/jeepay-ui-manager/src/views/mchApp/List.vue b/jeepay-ui-manager/src/views/mchApp/List.vue new file mode 100644 index 0000000000000000000000000000000000000000..9c12dc7f1cd539e8edadbd506f4d747b876b30be --- /dev/null +++ b/jeepay-ui-manager/src/views/mchApp/List.vue @@ -0,0 +1,130 @@ + + + + + diff --git a/jeepay-ui-manager/src/views/mch/MchPayConfigAddOrEdit.vue b/jeepay-ui-manager/src/views/mchApp/MchPayConfigAddOrEdit.vue similarity index 96% rename from jeepay-ui-manager/src/views/mch/MchPayConfigAddOrEdit.vue rename to jeepay-ui-manager/src/views/mchApp/MchPayConfigAddOrEdit.vue index fb1f6021728d8f17996a1235243d5fc012621f19..5ca1963bc95be033a8f6de091992ad77750b97e4 100644 --- a/jeepay-ui-manager/src/views/mch/MchPayConfigAddOrEdit.vue +++ b/jeepay-ui-manager/src/views/mchApp/MchPayConfigAddOrEdit.vue @@ -78,7 +78,7 @@ + + diff --git a/jeepay-ui-merchant/src/views/mchApp/List.vue b/jeepay-ui-merchant/src/views/mchApp/List.vue new file mode 100644 index 0000000000000000000000000000000000000000..ec930d362ac4a6c74eaff43a1fc2636e37ed15cd --- /dev/null +++ b/jeepay-ui-merchant/src/views/mchApp/List.vue @@ -0,0 +1,124 @@ + + + + + diff --git a/jeepay-ui-merchant/src/views/mchApp/MchPayConfigAddOrEdit.vue b/jeepay-ui-merchant/src/views/mchApp/MchPayConfigAddOrEdit.vue new file mode 100644 index 0000000000000000000000000000000000000000..830d1569f38678d79817561cc4eb6627d3ed035f --- /dev/null +++ b/jeepay-ui-merchant/src/views/mchApp/MchPayConfigAddOrEdit.vue @@ -0,0 +1,268 @@ + + + + diff --git a/jeepay-ui-merchant/src/views/mchApp/MchPayIfConfigList.vue b/jeepay-ui-merchant/src/views/mchApp/MchPayIfConfigList.vue new file mode 100644 index 0000000000000000000000000000000000000000..215218543a180e1c9789648646f9ec3210db4c9e --- /dev/null +++ b/jeepay-ui-merchant/src/views/mchApp/MchPayIfConfigList.vue @@ -0,0 +1,244 @@ + + + + + diff --git a/jeepay-ui-merchant/src/views/mchApp/MchPayPassageAddOrEdit.vue b/jeepay-ui-merchant/src/views/mchApp/MchPayPassageAddOrEdit.vue new file mode 100644 index 0000000000000000000000000000000000000000..f3a433cd2ba1d26e0927e275a3e9d8c46ed6889b --- /dev/null +++ b/jeepay-ui-merchant/src/views/mchApp/MchPayPassageAddOrEdit.vue @@ -0,0 +1,219 @@ + + + +