Merge pull request 'projects/mesxc-dy' (#217) from projects/mesxc-dy into projects/mesxc-test
Reviewed-on: #217
This commit is contained in:
commit
e0aa0b7052
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2024-02-28 14:45:58
|
* @LastEditTime: 2024-02-28 16:05:10
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -409,25 +409,32 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
async confirmIns() {
|
async confirmIns() {
|
||||||
await this.getConfirmed().then(confirm => {
|
this.$refs['dataForm'].validate((valid) => {
|
||||||
this.$axios({
|
if (!valid) {
|
||||||
url:
|
return;
|
||||||
'/base/equipment-check-order/confirm?confirmPerson=' +
|
}
|
||||||
this.$store.getters.userId,
|
this.$nextTick(() => {
|
||||||
method: 'put',
|
this.getConfirmed().then(confirm => {
|
||||||
data: [this.dataForm.id],
|
this.$axios({
|
||||||
}).then(res =>{
|
url:
|
||||||
if (res.code == 0) {
|
'/base/equipment-check-order/confirm?confirmPerson=' +
|
||||||
|
this.$store.getters.userId,
|
||||||
|
method: 'put',
|
||||||
|
data: [this.dataForm.id],
|
||||||
|
}).then(res =>{
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit("refreshDataList");
|
||||||
|
this.$message.success('已确认');
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}).catch(() => {
|
||||||
this.visible = false;
|
this.visible = false;
|
||||||
this.$emit("refreshDataList");
|
this.$emit("refreshDataList");
|
||||||
this.$message.success('已确认');
|
this.$message.success('取消确认');
|
||||||
}
|
})
|
||||||
}).catch(() => {
|
|
||||||
this.visible = false;
|
|
||||||
this.$emit("refreshDataList");
|
|
||||||
this.$message.success('取消确认');
|
|
||||||
})
|
})
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
// 表单提交
|
// 表单提交
|
||||||
dataFormSubmit() {
|
dataFormSubmit() {
|
||||||
|
@ -177,7 +177,7 @@ export default {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.$modal
|
this.$modal
|
||||||
.confirm('是否确认所有选中保养单"?')
|
.confirm('是否确认所有选中巡检单"?')
|
||||||
.then(() => {
|
.then(() => {
|
||||||
return this.$axios({
|
return this.$axios({
|
||||||
url: '/base/equipment-check-order/confirm?confirmPerson=' + this.$store.getters.userId,
|
url: '/base/equipment-check-order/confirm?confirmPerson=' + this.$store.getters.userId,
|
||||||
|
Loading…
Reference in New Issue
Block a user