<template>
|
<el-dialog
|
custom-class="sy-modal"
|
|
title="新建非本体机序列号"
|
:close-on-click-modal="false"
|
width="400px"
|
:before-close="onClose"
|
>
|
<div class="special-management-new-modal" v-loading="loading">
|
<el-form ref="form" :model="form" :rules="rules" label-width="90px" size="small">
|
<el-form-item label="序列号" prop="serialNumber">
|
<el-input v-model.trim="form.serialNumber" clearable placeholder="请输入..." ></el-input>
|
</el-form-item>
|
</el-form>
|
</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 = {
|
serialNumber:''
|
}
|
export default {
|
name:'specialManagementNewModal',
|
emits:['submitCallback','update:visible'],
|
props:{
|
visible:{
|
type:Boolean,
|
default:false
|
}
|
},
|
data(){
|
return {
|
title:'',
|
loading:false,
|
form:{...defaultForm},
|
rules:{
|
serialNumber:[
|
{ required: true, message: '请输入序列号!', trigger: 'blur' }
|
]
|
}
|
}
|
},
|
watch:{
|
visible(newVal,oldVal){
|
if (newVal!==oldVal) {
|
if (newVal) {
|
this.initForm();
|
} else {
|
this.clearForm();
|
}
|
}
|
}
|
},
|
methods:{
|
initForm(){
|
|
},
|
clearForm(){
|
this.form = {...defaultForm}
|
},
|
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')
|
}
|
})
|
}
|
})
|
},
|
dealSubmit(callback){
|
let params = {...this.form};
|
this.loading = true
|
this.$api.post('Post',params,{block:'special'}).then((d)=>{
|
this.loading = false
|
callback && callback(true)
|
}).catch((err)=>{
|
this.loading = false
|
callback && callback(false)
|
})
|
}
|
}
|
}
|
</script>
|
|
<style scoped lang="scss">
|
.special-management-new-modal{
|
padding: 8px 16px 0 0;
|
}
|
</style>
|