|
|
@@ -23,9 +23,9 @@ const activity = {
|
|
|
|
|
|
//用户管理
|
|
|
const loginUser={
|
|
|
- detail:p => http.get('cyzh-ldt/loginuser/detail', {params:p}),
|
|
|
- submit:p => http.post('cyzh-ldt/loginuser/submit', p),
|
|
|
- login:p => http.post('cyzh-ldt/loginuser/login', p),
|
|
|
+ detail:p => http.get('ldt_user/loginuser/detail', {params:p}),
|
|
|
+ submit:p => http.post('ldt_user/loginuser/submit', p),
|
|
|
+ login:p => http.post('client/user/login', p),
|
|
|
payBefore:p => http.post('cyzh-ldt/loginuser/payBeforeNew', p),
|
|
|
payBeforeForNormal:p => http.post('cyzh-ldt/loginuser/payBeforeForNormal', p),
|
|
|
getBillrecordFromRedis:p => http.get('cyzh-ldt/loginuser/getBillrecordFromRedis', {params:p}),
|
|
|
@@ -34,35 +34,35 @@ const loginUser={
|
|
|
|
|
|
//商户管理
|
|
|
const shop={
|
|
|
- list:p => http.get('cyzh-ldt/shop/list', {params:p}),
|
|
|
- detail:p => http.get('cyzh-ldt/shop/detail', {params:p}),
|
|
|
+ list:p => http.get('ldt_shop/shop/list', {params:p}),
|
|
|
+ detail:p => http.get('ldt_shop/shop/detail', {params:p}),
|
|
|
}
|
|
|
|
|
|
//商场管理
|
|
|
const mall={
|
|
|
//获取商场列表
|
|
|
- list:p => http.get('cyzh-ldt/mall/list',{params:p}),
|
|
|
+ list:p => http.get('ldt_mall/mall/list',{params:p}),
|
|
|
}
|
|
|
|
|
|
//代理商
|
|
|
const agenter={
|
|
|
- list:p => http.get('cyzh-ldt/agenter/list',{params:p}),
|
|
|
- submit:p => http.post('cyzh-ldt/agenter/submit', p),
|
|
|
+ list:p => http.get('ldt_agent/agentrecord/list',{params:p}),
|
|
|
+ submit:p => http.post('ldt_agent/agentrecord/submit', p),
|
|
|
}
|
|
|
|
|
|
//代理类型
|
|
|
const agenterType={
|
|
|
- detail:p => http.get('cyzh-ldt/agentertype/detail',{params:p}),
|
|
|
+ detail:p => http.get('ldt_platform/platformsetting/detail',{params:p}),
|
|
|
}
|
|
|
|
|
|
|
|
|
//用户银行
|
|
|
const userBank={
|
|
|
- detail:p => http.get('cyzh-ldt/userbank/detail',{params:p}),
|
|
|
- list:p => http.get('cyzh-ldt/userbank/list',{params:p}),
|
|
|
- appList:p => http.get('cyzh-ldt/userbank/appList',{params:p}),
|
|
|
- submit:p => http.post('cyzh-ldt/userbank/submit', p),
|
|
|
- remove:p => http.post('cyzh-ldt/userbank/remove?ids='+p),
|
|
|
+ detail:p => http.get('ldt_user/userbank/detail',{params:p}),
|
|
|
+ list:p => http.get('ldt_user/userbank/list',{params:p}),
|
|
|
+ appList:p => http.get('ldt_user/userbank/appList',{params:p}),
|
|
|
+ submit:p => http.post('ldt_user/userbank/submit', p),
|
|
|
+ remove:p => http.post('ldt_user/userbank/remove?ids='+p),
|
|
|
}
|
|
|
|
|
|
//支付
|
|
|
@@ -76,12 +76,13 @@ const pay={
|
|
|
}
|
|
|
|
|
|
const billRecord={
|
|
|
- submit:p => http.post('cyzh-ldt/billrecord/submit', p),
|
|
|
- detail:p => http.get('cyzh-ldt/billrecord/detail', {params:p}),
|
|
|
+ addAgentOrder: p => http.post('/app/agent/addAgentOrder',p),
|
|
|
+ submit:p => http.post('ldt_bills/bills/submit', p),
|
|
|
+ detail:p => http.get('ldt_bills/bills/detail', {params:p}),
|
|
|
}
|
|
|
|
|
|
const setting = {
|
|
|
- feedback: p => http.post('feedback/submit', p)
|
|
|
+ feedback: p => http.post('ldt_feedback/feedback/submit', p)
|
|
|
}
|
|
|
|
|
|
const account = {
|
|
|
@@ -91,7 +92,7 @@ const account = {
|
|
|
|
|
|
//webSocket
|
|
|
const webSocket={
|
|
|
- sendInfo:p => http.post('cyzh-ldt/webSocket/sendInfo',p),
|
|
|
+ sendInfo:p => http.post('/webSocket/sendInfo',p),
|
|
|
}
|
|
|
|
|
|
|