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 @@