<template>
|
<el-dialog
|
custom-class="sy-modal"
|
|
title="出库任务顺序调整"
|
:close-on-click-modal="false"
|
width="600px"
|
:before-close="onClose"
|
>
|
<div class="tasks-of-output-sequence-modal-compontent" v-loading="loading">
|
<el-form ref="form" :model="form" :rules="rules" label-width="90px" size="small">
|
<el-form-item label="任务号">{{row.TaskNo}}</el-form-item>
|
<el-form-item label="当前顺序">
|
{{row.TaskSequence?row.TaskSequence:''}}
|
</el-form-item>
|
<el-form-item label="调整顺序" prop="taskSequence">
|
<el-input-number v-model="form.taskSequence" :min="1" />
|
</el-form-item>
|
</el-form>
|
<el-alert title="顺序号,最小数为1,数字越小,表示出库任务越提前" type="warning" :closable="false" />
|
</div>
|
<template #footer>
|
<span class="dialog-footer">
|
<el-button @click="onClose">取 消</el-button>
|
<el-button type="primary" @click="onSubmit">确 定</el-button>
|
</span>
|
</template>
|
</el-dialog>
|
</template>
|
|
<script>
|
const defaultForm = {
|
id:null,
|
taskSequence:1
|
}
|
export default {
|
name:'tasksOfOutputSequenceModalCompontent',
|
emits:['submitCallback','update:visible'],
|
props:{
|
visible:{
|
type:Boolean,
|
default:false
|
},
|
row:{
|
type:Object,
|
default:function(){
|
return {}
|
}
|
}
|
},
|
data(){
|
return {
|
title:'',
|
loading:false,
|
form:{...defaultForm},
|
rules:{
|
taskSequence:[
|
{ validator:this.validateInput, trigger: 'change' }
|
]
|
}
|
}
|
},
|
watch:{
|
visible(newVal,oldVal){
|
if (newVal!==oldVal) {
|
if (newVal) {
|
this.initForm();
|
} else {
|
this.clearForm();
|
}
|
}
|
}
|
},
|
methods:{
|
initForm(){
|
this.form.id = this.row.Id;
|
},
|
clearForm(){
|
this.form = {...defaultForm}
|
},
|
restForm(){
|
this.form = {...defaultForm,...{uLoginName:'USER-'+this.$utils.createUuid()}}
|
},
|
close(){
|
this.$emit('update:visible',false)
|
},
|
onClose(){
|
this.close();
|
},
|
onSubmit(){
|
this.$refs.form.validate((valid) => {
|
if (valid) {
|
this.dealSubmit((f)=>{
|
if (f) {
|
this.$message.success('顺序调整成功!')
|
this.close();
|
this.$emit('submitCallback')
|
}
|
})
|
}
|
})
|
},
|
validateInput(rule,value,callback){
|
if (value !== parseInt(value)) {
|
callback(new Error('顺序只能是整数!'))
|
} else {
|
callback()
|
}
|
},
|
dealSubmit(callback){
|
let params = {...this.form};
|
this.loading = true
|
this.$api.put('UpdateTaskSequence',params,{block:'taskMain'}).then((d)=>{
|
this.loading = false
|
callback && callback(true)
|
}).catch((err)=>{
|
this.loading = false
|
callback && callback(false)
|
})
|
}
|
}
|
}
|
</script>
|
|
<style scoped lang="scss">
|
.tasks-of-output-sequence-modal-compontent{
|
padding: 4px 0 12px 0;
|
}
|
</style>
|