<template>
|
<vol-box v-model="show" title="分单" :width="800" :height="600">
|
<template #content>
|
<el-form ref="form" :model="form" label-width="90px">
|
<el-form-item label="数量">
|
<el-input type="text" v-model="this.num"></el-input>
|
</el-form-item>
|
</el-form>
|
</template>
|
<template #footer>
|
<div>
|
<el-button type="danger" size="small" plain @click="submit">
|
<i class="el-icon-check">确认</i>
|
</el-button>
|
<el-button size="small" type="primary" plain @click="() => { this.show = false }">
|
<i class="el-icon-close">关闭</i>
|
</el-button>
|
</div>
|
</template>
|
</vol-box>
|
</template>
|
|
<script>
|
import VolBox from '@/components/basic/VolBox.vue'
|
export default {
|
components: {
|
'vol-box': VolBox
|
},
|
data() {
|
return {
|
num: "",
|
row: {},
|
show: false
|
}
|
},
|
methods: {
|
open(row) {
|
this.show = true
|
this.row = row
|
},
|
submit() {
|
this.$emit('parentCall', ($vue) => {
|
if (
|
!this.id ||
|
!this.num ||
|
this.num == '',
|
this.id == ''
|
) {
|
this.$message.error('参数错误')
|
return
|
}
|
this.http.post(`/api/stockERP/SplitprintOrderNo`, {
|
num: this.num, // 修正参数名
|
model: this.row // 对象在请求体中传递
|
}, '数据处理中...')
|
.then((x) => {
|
if (!x.status) {
|
this.$message.error(x.message)
|
} else {
|
this.show = false
|
this.$Message.success("拆分成功")
|
$vue.refresh();
|
}
|
})
|
})
|
}
|
}
|
}
|
</script>
|