| 1234567891011121314151617181920212223242526272829303132333435363738 |
- import https from "@/plugins/luch-request_0.0.7/request";
- /** *
- * 客户列表 b
- */
- export const getList = data => {
- return https.get("/custom/list", data);
- };
- /** *
- * 商家端客户详情,包括资产、订单和备注 b
- */
- 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);
- };
- //获取访客
- export const getVisit = data => {
- return https.get("/custom/get-visit", data);
- };
|