Compare commits

..

No commits in common. "f378347063fea13fef0895a3dc3ad547dda84fc9" and "4c41d6fad9e46b862b58bcc6b76d9d8ac4fbd20c" have entirely different histories.

2 changed files with 18 additions and 35 deletions

View File

@ -175,38 +175,16 @@ export default {
} }
if (this.isEdit) { if (this.isEdit) {
// //
orderUpdate({ orderUpdate({ ...this.form }).then((res) => {
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 {
orderCreate({ this.form.status = 1
code: this.form.code, this.form.triggerOrigin = 1
name: this.form.name, orderCreate({ ...this.form }).then((res) => {
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,15 +244,20 @@ export default {
btnName: '终止', btnName: '终止',
showTip: '终止', showTip: '终止',
showParam: { showParam: {
type: '&', type: '|',
data: [ data: [
{ {
type: 'equal', type: 'equal',
name: 'status', name: 'status',
value: 3 value: 2
} },
] {
} type: 'equal',
name: 'status',
value: 3
}
]
}
} }
: undefined, : undefined,
this.$auth.hasPermi('base:order-manage:cancel') this.$auth.hasPermi('base:order-manage:cancel')