Merge branch 'projects/mesxc-test' into projects/mesxc-lb

This commit is contained in:
lb 2024-03-01 11:20:00 +08:00
commit f378347063
2 changed files with 35 additions and 18 deletions

View File

@ -175,16 +175,38 @@ export default {
} }
if (this.isEdit) { if (this.isEdit) {
// //
orderUpdate({ ...this.form }).then((res) => { orderUpdate({
code: this.form.code,
name: this.form.name,
planQuantity: this.form.planQuantity,
planProductId: this.form.planProductId,
priority: this.form.priority,
planStartTime: this.form.planStartTime,
planFinishTime: this.form.planFinishTime,
remark: this.form.remark,
id: this.form.id,
specifications: this.form.specifications
}).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$modal.msgSuccess("操作成功"); this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit') this.$emit('successSubmit')
} }
}) })
} else { } else {
this.form.status = 1 orderCreate({
this.form.triggerOrigin = 1 code: this.form.code,
orderCreate({ ...this.form }).then((res) => { name: this.form.name,
planQuantity: this.form.planQuantity,
planProductId: this.form.planProductId,
priority: this.form.priority,
planStartTime: this.form.planStartTime,
planFinishTime: this.form.planFinishTime,
remark: this.form.remark,
id: this.form.id,
specifications: this.form.specifications,
status: 1,
triggerOrigin: 1
}).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$modal.msgSuccess("操作成功"); this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit') this.$emit('successSubmit')

View File

@ -244,20 +244,15 @@ export default {
btnName: '终止', btnName: '终止',
showTip: '终止', showTip: '终止',
showParam: { showParam: {
type: '|', type: '&',
data: [ data: [
{ {
type: 'equal', type: 'equal',
name: 'status', name: 'status',
value: 2 value: 3
}, }
{ ]
type: 'equal', }
name: 'status',
value: 3
}
]
}
} }
: undefined, : undefined,
this.$auth.hasPermi('base:order-manage:cancel') this.$auth.hasPermi('base:order-manage:cancel')