Toggle navigation
Toggle navigation
This project
Loading...
Sign in
YOHOBUY
/
yohobuy-union
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
jianhui_wang
8 years ago
Commit
cb21daf589a58061ea5e48ab7c9bdb7ef0056c24
1 parent
b4d99c5c
用户信息查询
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
12 deletions
dal/src/main/resources/META-INF/mybatis/IOrdersMapper.xml
server/src/main/java/com/yoho/unions/server/service/impl/UserInfoImportServiceImpl.java
web/src/main/webapp/html/userInfo/userInfoList.html
dal/src/main/resources/META-INF/mybatis/IOrdersMapper.xml
View file @
cb21daf
...
...
@@ -50,7 +50,7 @@
select count(1)
from orders
where uid = #{uid,jdbcType=INTEGER}
and order_status
>= 600
and order_status
in(600,700)
and create_time > #{createTime,jdbcType=INTEGER}
</select>
...
...
server/src/main/java/com/yoho/unions/server/service/impl/UserInfoImportServiceImpl.java
View file @
cb21daf
...
...
@@ -80,7 +80,7 @@ public class UserInfoImportServiceImpl implements IBusinessImportService {
UserRegisterBuyInfoBO
UserRegisterBuyInfoBO_id
=
new
UserRegisterBuyInfoBO
();
if
(
userProfile
==
null
)
{
UserRegisterBuyInfoBO_id
.
setId
(
i
+
1
);
UserRegisterBuyInfoBO_id
.
setMobile
(
mobile
.
substring
(
0
,
3
)
+
" **** "
+
mobile
.
substring
(
7
)
);
UserRegisterBuyInfoBO_id
.
setMobile
(
mobile
==
null
?
""
:
mobile
);
UserRegisterBuyInfoBO_id
.
setRegister
(
"未注册"
);
UserRegisterBuyInfoBO_id
.
setUid
(
uid
<=
0
?
0
:
uid
);
UserRegisterBuyInfoBO_id
.
setRegisterTime
(
"0"
);
...
...
web/src/main/webapp/html/userInfo/userInfoList.html
View file @
cb21daf
...
...
@@ -107,13 +107,14 @@
align
:
"center"
}]],
cache
:
false
,
pagination
:
true
,
layout
:
false
,
pageSize
:
10
,
pageList
:
[
10
],
// pagination: true,
pagination
:
false
,
// pageSize: 10,
// pageList: [10],
singleSelect
:
true
});
// $(".pagination-page-list").hide();
// $(".pagination-links").hide();
});
function
batchProgramDialog
()
{
...
...
@@ -173,16 +174,18 @@
align
:
"center"
}]],
cache
:
false
,
pagination
:
true
,
layout
:
false
,
pageSize
:
10
,
pageList
:
[
10
],
idField
:
"mobile"
,
// pagination: true,
pagination
:
false
,
// pageSize: 10,
// pageList: [10],
// idField: "mobile",
singleSelect
:
true
,
checkOnSelect
:
false
,
onLoadSuccess
:
function
()
{
}
});
// $(".pagination-page-list").hide();
// $(".pagination-links").hide();
}
});
...
...
Please
register
or
login
to post a comment