Browse Source

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

pull/224/head
lb 6 months ago
parent
commit
f378347063
2 changed files with 35 additions and 18 deletions
  1. +26
    -4
      src/views/order/base/orderManage/components/orderAdd.vue
  2. +9
    -14
      src/views/order/base/orderManage/index.vue

+ 26
- 4
src/views/order/base/orderManage/components/orderAdd.vue View File

@@ -175,16 +175,38 @@ export default {
}
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) {
this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit')
}
})
} else {
this.form.status = 1
this.form.triggerOrigin = 1
orderCreate({ ...this.form }).then((res) => {
orderCreate({
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,
status: 1,
triggerOrigin: 1
}).then((res) => {
if (res.code === 0) {
this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit')


+ 9
- 14
src/views/order/base/orderManage/index.vue View File

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


Loading…
Cancel
Save