Compare commits

..

No commits in common. "f8d033c97afc4804f827c004ea6541bebbd81deb" and "0ba8d3bff87a070dcb9f489b2277a39acd671c87" have entirely different histories.

2 changed files with 18 additions and 25 deletions

View File

@ -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 16:05:10 * @LastEditTime: 2024-02-28 14:45:58
* @Description: * @Description:
--> -->
<template> <template>
@ -409,32 +409,25 @@ export default {
}); });
}, },
async confirmIns() { async confirmIns() {
this.$refs['dataForm'].validate((valid) => { await this.getConfirmed().then(confirm => {
if (!valid) { this.$axios({
return; url:
} '/base/equipment-check-order/confirm?confirmPerson=' +
this.$nextTick(() => { this.$store.getters.userId,
this.getConfirmed().then(confirm => { method: 'put',
this.$axios({ data: [this.dataForm.id],
url: }).then(res =>{
'/base/equipment-check-order/confirm?confirmPerson=' + if (res.code == 0) {
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() {

View File

@ -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,