<template>
|
<el-dialog
|
custom-class="sy-modal"
|
|
:title="title"
|
:close-on-click-modal="false"
|
width="600px"
|
:before-close="close"
|
>
|
<template #default>
|
<div class="sy-default-form-modal-content add-input-task-frame" v-loading="loading">
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
<el-form-item label="任务号">
|
<el-input v-model="form.taskNo" disabled />
|
</el-form-item>
|
<el-form-item label="数量" prop="qty">
|
<el-input-number v-model="form.qty" :min="1" />
|
</el-form-item>
|
</el-form>
|
</div>
|
</template>
|
<template #footer>
|
<span class="dialog-footer">
|
<el-button @click="onClose">取 消</el-button>
|
<el-button type="primary" @click="onSubmit(false)">提 交</el-button>
|
<el-button type="primary" @click="onSubmit(true)">提交并继续新增</el-button>
|
</span>
|
</template>
|
</el-dialog>
|
</template>
|
|
<script>
|
const defaultForm = {
|
taskNo:'',
|
qty:3
|
}
|
export default {
|
name:'tasksOfCarriersInputAddModalCompontent',
|
emits:['submitCallback','update:visible'],
|
props:{
|
visible:{
|
type:Boolean,
|
default:false
|
}
|
},
|
data(){
|
return {
|
title:'新建载具入库任务',
|
loading:false,
|
form:{...defaultForm},
|
rules:{
|
qty:[
|
{ required: true, message: '请录入数量!', trigger: 'blur' }
|
]
|
}
|
}
|
},
|
watch:{
|
visible(newVal,oldVal){
|
if (newVal!==oldVal) {
|
if (newVal) {
|
this.initForm();
|
} else {
|
this.clearForm();
|
}
|
}
|
}
|
},
|
methods:{
|
initForm(){
|
this.restForm()
|
this.$nextTick(()=>{
|
this.$refs.form.clearValidate()
|
})
|
},
|
clearForm(){
|
this.form = {...defaultForm}
|
},
|
restForm(){
|
this.form = {...defaultForm}
|
this.getTaskNo()
|
},
|
close(){
|
this.$emit('update:visible',false)
|
},
|
onClose(){
|
this.close();
|
},
|
onSubmit(isMore){
|
this.$refs.form.validate((valid) => {
|
if (valid) {
|
this.dealSubmit((f)=>{
|
if (f) {
|
if (isMore) {
|
this.restForm()
|
this.$nextTick(()=>{
|
this.$refs.form.clearValidate()
|
})
|
} else {
|
this.close();
|
}
|
this.$emit('submitCallback',!isMore)
|
}
|
})
|
}
|
})
|
},
|
dealSubmit(callback){
|
let params = {...this.form};
|
this.loading = true
|
this.$api.post('AddInStoreTaskSlaver',params,{block:'taskMain'}).then((d)=>{
|
this.loading = false
|
callback && callback(true)
|
}).catch((err)=>{
|
this.loading = false
|
callback && callback(false)
|
})
|
},
|
getTaskNo() {
|
this.loading = true
|
this.$api.get('GeneratePlanTaskNo',{},{block:'taskMain'}).then((d)=>{
|
this.form.taskNo = d;
|
this.loading = false
|
}).catch((err)=>{
|
this.loading = false
|
})
|
}
|
}
|
}
|
</script>
|
|
<style scoped lang="scss">
|
|
</style>
|