Sfoglia il codice sorgente

订单

pull/80/head
juzi 10 mesi fa
parent
commit
0ae68aacef
1 ha cambiato i file con 2 aggiunte e 3 eliminazioni
  1. +2
    -3
      src/views/order/base/orderManage/components/addWorkOrder.vue

+ 2
- 3
src/views/order/base/orderManage/components/addWorkOrder.vue Vedi File

@@ -203,7 +203,6 @@ export default {
methods: {
init(data, param) {
this.form.orderId = data.id
this.form.orderName = data.name
this.getList()
if (param === 'add') {
this.isBind = false
@@ -260,12 +259,12 @@ export default {
orderIssue({ ..._this.form }).then(res => {
if (res.code === 0) {
_this.$modal.msgSuccess("操作成功")
let name = this.form.orderName
let name = this.form.name
_this.$emit('addWorkOrderSubmit')
// 询问是否添加预使用主原料
_this.$modal.confirm('是否添加预使用主原料信息?').then(function() {
_this.$router.push({
path: '/core/core-work-order?orderName='+encodeURI(name)
path: '/core/core-work-order?workOrderName='+encodeURI(name)
})
})
}


Caricamento…
Annulla
Salva