Merge pull request '订单' (#80) from projects/mes-zjl into projects/mes-test

Reviewed-on: #80
This commit is contained in:
朱菊兰 2023-11-15 14:23:23 +08:00
commit 51d6ce5dbb

View File

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