Authored by jianhui_wang

no message

... ... @@ -87,7 +87,7 @@ public class UserInfoImportServiceImpl implements IBusinessImportService {
UserRegisterBuyInfoBO_id.setBuy("未购买");
} else {
UserRegisterBuyInfoBO_id.setId(i + 1);
UserRegisterBuyInfoBO_id.setMobile(userProfile.getMobile().substring(0, 3) + " **** " + userProfile.getMobile().substring(7));
UserRegisterBuyInfoBO_id.setMobile(mobile!=null?mobile:userProfile.getMobile().substring(0, 3) + " **** " + userProfile.getMobile().substring(7));
UserRegisterBuyInfoBO_id.setRegister("已注册");
UserRegisterBuyInfoBO_id.setUid(userProfile.getUid());
UserRegisterBuyInfoBO_id.setRegisterTime(DateUtils.getDateString(userProfile.getCreateTime()));
... ...
... ... @@ -181,13 +181,6 @@
}
});
// $("#searchLinkbutton").linkbutton({
// onClick: function () {
// $('#productBuyLimitListTable').datagrid('load', getParams());
//
// }
// });
$("#exportButton").linkbutton({
onClick: function () {
window.open(contextPath + "/batch/export.do?type=userRegisterBuyInfoserviceImpl&queryConf=" + JSON.stringify(getParams()));
... ...
... ... @@ -28,7 +28,7 @@
uploadInputName: "file", //上传文件的控件名称
url: contextPath + "/batch/import", //提交到后端的url
queryParams: {
type: "MobileUidImport", //spring-web-context.xml 文件配置实现类 <entry key="productBuyLimitImport" value-ref="productBuyLimitServiceImpl"/>
type: "MobileUidImport",
args: "import"
}, //提交到后端额外参数
showFileName: false, //上传成功后,是否显示文件名
... ...