Commit 4d0d6c6e authored by xinzhedeai's avatar xinzhedeai

feater:隐患详情,清理无用代码

parent b9776da9
......@@ -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(){
getDetail4INIT() { // 安全检查模板初始化
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
}
}
}
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment