|
|
@@ -88,7 +88,16 @@ export const resetToInitialStatus = () => {
|
|
|
export const addAlipayAccount = params => {
|
|
|
return http.post(PORT_NONE + `/merchantUser/addAlipayAccount`, params);
|
|
|
};
|
|
|
+
|
|
|
+//删除支付宝账号
|
|
|
+export const deleteAlipayAccount = () => {
|
|
|
+ return http.post(PORT_NONE + `/merchantUser/deleteAlipayAccount`, {});
|
|
|
+};
|
|
|
//提现申请-提交
|
|
|
export const cashOut = params => {
|
|
|
- return http.get(PORT_NONE + `/incomeManage/cashOut`, params);
|
|
|
+ return http.post(PORT_NONE + `/incomeManage/cashOut`, params);
|
|
|
+};
|
|
|
+
|
|
|
+export const getCheckPayPasswordTwo = params => {
|
|
|
+ return http.get(PORT_NONE + `/merchantUser/checkPayPassword`, params);
|
|
|
};
|