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
XuHaoJie
3 years ago
Commit
150b3d6ac8e85b6b67e465b3c55fa2444ed035c6
1 parent
7c402e76
杭州-乙方运维-解决项目评价部分列不展示问题。原因:数字类型列表不能展示,暂时处理
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
1 deletions
hg-monitor-web-zj/src/main/resources/static/vue3/src/components/page/operationMaintenance/pjt/index.js
hg-monitor-web-zj/src/main/resources/static/vue3/src/components/page/operationMaintenance/pjt/index.js
View file @
150b3d6
...
...
@@ -116,7 +116,22 @@ export default {
proxy
.
$http
.
post
(
"/api-web/bOpsScoreDetails/page"
,
params
,
function
(
res
)
{
if
(
res
&&
res
.
code
==
0
){
closeDetail
(
true
);
dataList
.
value
=
res
.
data
;
//Strat XuHaoJie 2021/12/31 10:56 TODO 解决列表不能展示数字类型的数据 暂时处理
let
li
=
res
.
data
.
map
(
item
=>
{
let
element
=
{
deduction
:
item
.
duration
,
id
:
item
.
id
,
item
:
item
.
item
,
projectScoreId
:
item
.
projectScoreId
,
rater
:
item
.
rater
,
remark
:
item
.
remark
+
''
,
score
:
item
.
score
+
''
,
standardScore
:
item
.
standardScore
+
''
}
return
element
;
});
dataList
.
value
=
li
;
//End XuHaoJie 2021/12/31 10:56 TODO 解决列表不能展示数字类型的数据 暂时处理
}
});
}
...
...
Please
register
or
login
to post a comment