w问题修复
This commit is contained in:
parent
cabc1c1b4a
commit
fe92a1e7b0
|
|
@ -662,7 +662,6 @@ export default {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
outTime:'',
|
outTime:'',
|
||||||
remarkLease:'',
|
|
||||||
groupedLeaseOutDetailRecord: [],
|
groupedLeaseOutDetailRecord: [],
|
||||||
oldGroupedLeaseOutDetailRecord: [],
|
oldGroupedLeaseOutDetailRecord: [],
|
||||||
}
|
}
|
||||||
|
|
@ -846,7 +845,6 @@ export default {
|
||||||
this.leaseType = row.leaseType
|
this.leaseType = row.leaseType
|
||||||
this.resetDialogQuery()
|
this.resetDialogQuery()
|
||||||
this.timeTemp = row.estimateLeaseTime
|
this.timeTemp = row.estimateLeaseTime
|
||||||
this.remarkLease = row.remarkLease
|
|
||||||
// this.getDialogList()
|
// this.getDialogList()
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -861,7 +859,7 @@ export default {
|
||||||
// 提取年、月、日并格式化为 YYYY-MM-DD 格式
|
// 提取年、月、日并格式化为 YYYY-MM-DD 格式
|
||||||
const formattedDate = `${date.getFullYear()}-${String(date.getMonth() + 1).padStart(2, '0')}-${String(date.getDate()).padStart(2, '0')}`;
|
const formattedDate = `${date.getFullYear()}-${String(date.getMonth() + 1).padStart(2, '0')}-${String(date.getDate()).padStart(2, '0')}`;
|
||||||
this.codeOutForm.createTime = formattedDate;
|
this.codeOutForm.createTime = formattedDate;
|
||||||
this.codeOutForm.remark = this.remarkLease
|
this.codeOutForm.remark = row.remark
|
||||||
this.outNum = row.outNum
|
this.outNum = row.outNum
|
||||||
this.outQuery.typeId = row.typeId
|
this.outQuery.typeId = row.typeId
|
||||||
this.outObj = row
|
this.outObj = row
|
||||||
|
|
@ -884,7 +882,7 @@ export default {
|
||||||
// 提取年、月、日并格式化为 YYYY-MM-DD 格式
|
// 提取年、月、日并格式化为 YYYY-MM-DD 格式
|
||||||
const formattedDate = `${date.getFullYear()}-${String(date.getMonth() + 1).padStart(2, '0')}-${String(date.getDate()).padStart(2, '0')}`;
|
const formattedDate = `${date.getFullYear()}-${String(date.getMonth() + 1).padStart(2, '0')}-${String(date.getDate()).padStart(2, '0')}`;
|
||||||
this.numOutForm.createTime = formattedDate
|
this.numOutForm.createTime = formattedDate
|
||||||
this.numOutForm.remark = this.remarkLease
|
this.numOutForm.remark = row.remark
|
||||||
// console.log(row)
|
// console.log(row)
|
||||||
let obj = {}
|
let obj = {}
|
||||||
this.$set(obj, 'taskId', row.taskId)
|
this.$set(obj, 'taskId', row.taskId)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue