20 lines
622 B
JavaScript
20 lines
622 B
JavaScript
export default {
|
|
cashierServiceloginregister(data) { //用户注册
|
|
return uni.api.post("/cashierService/login/register", data);
|
|
},
|
|
cashierServiceloginregister(data) { //APP登录
|
|
return uni.api.post("/login/app/login", data);
|
|
},
|
|
phoneValidateCode(data) { //验证码
|
|
return uni.api.get("/phoneValidateCode", data);
|
|
},
|
|
homehomePageUp(data) { //首页上半部分
|
|
return uni.api.post("/home/homePageUp", data);
|
|
},
|
|
home(data) { //首页上半部分
|
|
return uni.api.post("/home", data);
|
|
},
|
|
locationdistrict(data) { //获取行政区域(区,街道)
|
|
return uni.api.get("/location/district", data);
|
|
},
|
|
} |