多店铺绑定错误修改与丢单查询

This commit is contained in:
Lenovo 2024-08-12 16:57:33 +08:00
parent 824e5756a5
commit 17c00d71eb
1 changed files with 2 additions and 3 deletions

View File

@ -518,8 +518,6 @@ public class MeituanServiceImpl implements IMeituanService {
}
if (list.size() > 0) {
priPhoneInfo(list, cookie, getUrl);
}else{
break;
}
pageNum += 1;
JSONObject jo = merchantOrders(getUrl,pageNum, date, cookie);
@ -1077,11 +1075,12 @@ public class MeituanServiceImpl implements IMeituanService {
if("".equals(text)){
return "";
}
key = key+"=";
int index = text.indexOf(key);
if(index == -1){
return "";
}
key = key+"=";
String s = text.substring(index, text.length());
String value = s.substring(s.indexOf("=") + 1, s.indexOf(";"));
return value;