bug
Esse commit está contido em:
pai
7319d72dfd
commit
fecf5f083d
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* @Author: Do not edit
|
||||
* @Date: 2023-11-20 11:05:00
|
||||
* @LastEditTime: 2024-04-22 09:03:11
|
||||
* @LastEditTime: 2024-04-29 14:13:18
|
||||
* @LastEditors: DY
|
||||
* @Description: 质量和报废
|
||||
*/
|
||||
@ -71,11 +71,11 @@ export function createInspection (data) {
|
||||
}
|
||||
|
||||
// 撤销质量检查信息
|
||||
export function deleteByCancel (query) {
|
||||
export function deleteByCancel (data) {
|
||||
return request({
|
||||
url: '/base/quality-inspection-record/deleteByCancel',
|
||||
method: 'delete',
|
||||
params: query
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* @Author: Do not edit
|
||||
* @Date: 2023-11-20 11:02:29
|
||||
* @LastEditTime: 2024-04-22 09:39:49
|
||||
* @LastEditTime: 2024-04-29 16:56:15
|
||||
* @LastEditors: DY
|
||||
* @Description:
|
||||
*/
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!--
|
||||
* @Author: Do not edit
|
||||
* @Date: 2024-01-09 13:48:42
|
||||
* @LastEditTime: 2024-04-28 16:55:37
|
||||
* @LastEditTime: 2024-04-29 16:35:33
|
||||
* @LastEditors: DY
|
||||
* @Description:
|
||||
-->
|
||||
@ -134,14 +134,15 @@ export default {
|
||||
})
|
||||
},
|
||||
addRecord (value) {
|
||||
const now = new Date() // 创建一个表示当前时间的Date对象
|
||||
const formattedTime = `${now.getFullYear()}-${(now.getMonth() + 1).toString().padStart(2, '0')}-${now.getDate().toString().padStart(2, '0')} ${now.getHours().toString().padStart(2, '0')}:${now.getMinutes().toString().padStart(2, '0')}:${now.getSeconds().toString().padStart(2, '0')}`
|
||||
const now = new Date().getTime() // 创建一个表示当前时间的Date对象
|
||||
// const formattedTime = `${now.getFullYear()}-${(now.getMonth() + 1).toString().padStart(2, '0')}-${now.getDate().toString().padStart(2, '0')} ${now.getHours().toString().padStart(2, '0')}:${now.getMinutes().toString().padStart(2, '0')}:${now.getSeconds().toString().padStart(2, '0')}`
|
||||
// console.log(formattedTime)
|
||||
if (!this.isCancel) {
|
||||
createInspection({
|
||||
...this.listQuery,
|
||||
inspectionDetId: value.detId,
|
||||
checkTime: formattedTime
|
||||
checkTime: now,
|
||||
source: 1
|
||||
}).then(res => {
|
||||
if (res.data.code === 0) {
|
||||
// this.typeList.forEach(element => {
|
||||
@ -160,7 +161,7 @@ export default {
|
||||
deleteByCancel({
|
||||
...this.listQuery,
|
||||
inspectionDetId: value.detId,
|
||||
checkTime: formattedTime
|
||||
checkTime: now
|
||||
}).then(res => {
|
||||
if (res.data.code === 0) {
|
||||
// this.typeList.forEach(element => {
|
||||
@ -192,6 +193,8 @@ export default {
|
||||
this.count = this.typeList[0][0].sunCount
|
||||
if (this.typeList[0][0]?.resetMethod === 1) {
|
||||
this.showReset = true
|
||||
} else {
|
||||
this.showReset = false
|
||||
}
|
||||
} else {
|
||||
this.typeList = []
|
||||
|
Carregando…
Referência em uma nova issue
Block a user