diff --git a/src/api/merchant.js b/src/api/merchant.js index 92ad4f1..6affd03 100644 --- a/src/api/merchant.js +++ b/src/api/merchant.js @@ -26,6 +26,13 @@ const merchant = { data: data, }); }, + phoneLogin: async (data) => { + return request({ + url: '/index/login/smsLogin', + method: Method.POST, + data: data, + }); + }, getMenu: async (data) => { return request({ url: '/index/business/getMenu', @@ -596,6 +603,23 @@ const merchant = { data: data }); }, + againWithdrawal: async (data) => { + return request({ + url: '/index/business/againWithdrawal', + method: Method.POST, + data: data + }); + }, + checkOrder: async (data) => { + return request({ + url: '/index/business/checkOrder', + method: Method.POST, + data: data, + headers: { + message: true, + } + }); + }, } export default merchant; diff --git a/src/assets/images/ts1.png b/src/assets/images/ts1.png new file mode 100755 index 0000000..a1002e0 Binary files /dev/null and b/src/assets/images/ts1.png differ diff --git a/src/assets/images/ts2.png b/src/assets/images/ts2.png new file mode 100755 index 0000000..50fda3d Binary files /dev/null and b/src/assets/images/ts2.png differ diff --git a/src/assets/images/ts3.png b/src/assets/images/ts3.png new file mode 100755 index 0000000..c1ec1eb Binary files /dev/null and b/src/assets/images/ts3.png differ diff --git a/src/assets/images/ts4.png b/src/assets/images/ts4.png new file mode 100755 index 0000000..47f7b05 Binary files /dev/null and b/src/assets/images/ts4.png differ diff --git a/src/components/Pay/Alipay.vue b/src/components/Pay/Alipay.vue index e680852..00b8973 100644 --- a/src/components/Pay/Alipay.vue +++ b/src/components/Pay/Alipay.vue @@ -1,5 +1,5 @@