Toggle navigation
Toggle navigation
This project
Loading...
Sign in
monitor_v3
/
hg-monitor-web
·
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
张凯
2 years ago
Commit
b55471a449c01c9bf872e1df936f6dbe6ce430b3
1 parent
61c23705
fix:【工作日志查看】搜索功能按照汇报人搜索下拉无数据选项,禅道bug#1609
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
hg-monitor-web-base/src/main/resources/static/src/controller/workReportView.js
hg-monitor-web-base/src/main/resources/static/src/controller/workReportView.js
View file @
b55471a
...
...
@@ -330,7 +330,7 @@ layui.define(['table', 'form', 'sessions', 'admin', 'common', 'echarts', 'laydat
url
:
domainName
+
'/mj/user/page?username=&nickname=&enabled=&perPage=10000&page=1&accessToken='
+
common
.
getMjToken
(),
success
:
function
(
response
)
{
var
options
=
"<option value=''>=选择汇报人=</option>"
;
$
.
each
(
response
,
function
(
i
,
v
)
{
$
.
each
(
response
.
data
.
rows
,
function
(
i
,
v
)
{
options
+=
"<option value='"
+
v
.
username
+
"'>"
+
v
.
nickname
+
"</option>"
});
$
(
'#slt-workreport-user'
).
html
(
options
);
...
...
Please
register
or
login
to post a comment