| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- import https from "@/plugins/luch-request_0.0.7/request";
- /** *
- * 客户列表 b
- */
- export const getList = data => {
- return https.get("/custom/list", data);
- };
- /** *
- * 商家端客户详情,包括资产、订单和备注
- */
- export const getUserDet = data => {
- return https.get("/custom/detail", data);
- };
- /** *
- * 获取客户详情,包括资产 b
- */
- export const getDet = data => {
- return https.get("/user/detail", data);
- };
- /** *
- * 添加客户 b
- */
- export const add = data => {
- return https.post("/custom/add", data);
- };
- // 延期付
- export const debt = data => {
- return https.get("/custom/debt", data);
- };
- /** *
- * 给客户充值 b
- */
- // export const rechargeB = data => {
- // return https.post('/user/recharge', data)
- // }
- /** *
- * 给客户升级 b
- */
- // export const upgrade = data => {
- // return https.post('/user/upgrade', data)
- // }
- /** *
- * 添加备注 b
- */
- // export const remarkAdd = data => {
- // return https.post('/merchant-remark/add', data)
- // }
- /** *
- * 删除备注 b
- */
- // export const remarkDel = data => {
- // return https.get('/merchant-remark/delete', data)
- // }
- /** *
- * 客户充值 b
- */
- // export const recharge = data => {
- // return https.get('/recharge/launch', data)
- // }
- /** *
- * 重置密码 b
- */
- // export const resetPassword = data => {
- // return https.post('/user/reset-pay-password', data)
- // }
|