Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
GaoQuYingJiH5-ASD
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xinzhedeai
GaoQuYingJiH5-ASD
Commits
4d0d6c6e
Commit
4d0d6c6e
authored
Apr 03, 2025
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feater:隐患详情,清理无用代码
parent
b9776da9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
32 deletions
+49
-32
_check_info.js
src/_check_info.js
+49
-32
No files found.
src/_check_info.js
View file @
4d0d6c6e
...
...
@@ -13,47 +13,26 @@ window.onload = function() {
},
0
);
}
// 初始化检查项数据结构
function
createCheckItem
(
id
)
{
return
{
id
:
id
,
title
:
`检查项目
${
id
}
`
,
selected
:
null
,
subChecks
:
Array
.
from
({
length
:
10
},
(
_
,
i
)
=>
({
id
:
i
+
1
,
checked
:
false
})),
description
:
''
,
photos
:
[],
deadlineDays
:
''
,
deadlineDate
:
''
};
}
new
Vue
({
el
:
'
#app
'
,
data
:
{
flag
:
'
ZG_XQ
'
,
// 值为ADD新增、JC_XQ检查详情、ZG_XQ整改详情、YH_XQ隐患详情
flag
:
'
ADD
'
,
flag
:
'
ADD
'
,
// flag: 'JC_XQ',
// flag: 'YH_XQ',
showDeadlinePicker
:
false
,
deadlineOptions
:
[
'
1
'
,
'
3
'
,
'
5
'
,
'
7
'
],
checkData
:
[],
// 提交给后端,图片使用vant结构,base64,后端处理,不走爱山东中台。(数据量大!)
originCheckData
:
[],
checkPageIndex
:
0
,
currentItem
:
null
,
noCount
:
0
,
noCount
:
0
,
totalItems
:
0
,
notNullCount
:
0
,
// 外层表单信息
checkDate
:
gemhoUtil
.
getTargetDateYMD
(),
// 检查日期
checkPeopleName
:
''
,
// 检查人员
checkPeopleName
:
''
,
// 检查人员
rectificationDeadline
:
''
,
// 整改截止日期
reviewDate
:
''
,
// 隐患审核日期
reviewRecord
:
''
,
originCheckData
:
[],
},
mounted
()
{
this
.
getDetail
()
...
...
@@ -85,7 +64,8 @@ window.onload = function() {
});
},
getOriginMatchedItemById
(
id
)
{
const
result
=
this
.
originCheckData
[
this
.
checkPageIndex
][
'
gqCheckItemVoList
'
].
find
(
item
=>
item
.
id
===
id
)
||
[]
const
result
=
this
.
originCheckData
[
this
.
checkPageIndex
][
'
gqCheckItemVoList
'
].
find
(
item
=>
item
.
id
===
id
)
||
[]
return
JSON
.
parse
(
JSON
.
stringify
(
result
))
},
// 处理单选变化
...
...
@@ -95,8 +75,10 @@ window.onload = function() {
console
.
log
(
val
,
newItem
,
'
数据改变了。。。。newItem
'
)
newItem
.
itemAnswer
=
val
// console.log(this.checkData[this.checkPageIndex]['gqCheckItemVoList'])
this
.
$set
(
this
.
checkData
[
this
.
checkPageIndex
][
'
gqCheckItemVoList
'
],
index
,
newItem
);
console
.
log
(
val
,
this
.
checkData
[
this
.
checkPageIndex
][
'
gqCheckItemVoList
'
][
index
],
'
数据改变了后
'
,
index
)
this
.
$set
(
this
.
checkData
[
this
.
checkPageIndex
][
'
gqCheckItemVoList
'
],
index
,
JSON
.
parse
(
JSON
.
stringify
()));
console
.
log
(
val
,
this
.
checkData
[
this
.
checkPageIndex
][
'
gqCheckItemVoList
'
][
index
],
'
数据改变了后
'
,
index
)
},
// 文件上传处理
handleFileUpload
(
file
)
{
...
...
@@ -120,17 +102,52 @@ window.onload = function() {
formatDate
(
date
)
{
return
`
${
date
.
getFullYear
()}
-
${(
date
.
getMonth
()
+
1
).
toString
().
padStart
(
2
,
'
0
'
)}
-
${
date
.
getDate
().
toString
().
padStart
(
2
,
'
0
'
)}
`
;
},
getDetail
(){
getDetail
4INIT
()
{
// 安全检查模板初始化
this
.
checkDate
=
res
.
checkDate
// 检查日期
this
.
checkPeopleName
=
res
.
checkPeopleName
// 检查人员
this
.
rectificationDeadline
=
res
.
rectificationDeadline
// 整改截止日期
this
.
reviewDate
=
res
.
reviewDate
// 隐患审核日期
this
.
reviewRecord
=
res
.
reviewRecord
this
.
totalItems
=
res
.
itemAllCount
,
// 表单数据
this
.
checkData
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
))
// 表单数据
this
.
checkData
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
))
this
.
originCheckData
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
))
},
getDetail4YH_XQ
()
{
// 隐患详情
const
reqParam
=
{
"
merId
"
:
"
1
"
,
}
this
.
checkDate
=
res
.
checkDate
// 检查日期
this
.
checkPeopleName
=
res
.
checkPeopleName
// 检查人员
this
.
rectificationDeadline
=
res
.
rectificationDeadline
// 整改截止日期
this
.
reviewDate
=
res
.
reviewDate
// 隐患审核日期
this
.
reviewRecord
=
res
.
reviewRecord
// 表单数据
this
.
checkData
=
res
.
data
},
getDetail4JC_XQ
()
{
// 检查单详情
const
reqParam
=
{
"
merId
"
:
"
1
"
,
}
this
.
checkDate
=
res
.
data
.
checkTime
// 检查日期
this
.
checkPeopleName
=
res
.
data
.
checkPeopleName
// 检查人员
this
.
checkData
=
res
.
data
.
gqCheckTypeDtoList
this
.
noCount
=
res
.
data
.
hiddenCount
this
.
notNullCount
=
res
.
data
.
notRectifiedCount
this
.
totalItems
=
res
.
itemAllCount
},
add4ZG_XQ
()
{
const
reqParam
=
{
"
merId
"
:
"
1
"
,
"
gqCheckTypeVoList
"
:
this
.
checkData
,
}
},
add4JC_XQ
()
{
const
reqParam
=
{
"
merId
"
:
"
1
"
,
"
gqCheckTypeVoList
"
:
this
.
checkData
}
}
}
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment