<template>
|
<a-spin :spinning="confirmLoading">
|
<j-form-container :disabled="formDisabled">
|
<a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
|
<a-row>
|
<a-col :span="24">
|
<a-form-model-item label="类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="planCloseType">
|
<j-dict-select-tag :readOnly="disableSubmit" placeholder="请选择类型"
|
:triggerChange="true" dictCode="mdc_plan_type "
|
v-model="model.planCloseType" allow-clear/>
|
|
</a-form-model-item>
|
</a-col>
|
<a-col :span="24">
|
<a-form-model-item label="时间类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="planCloseTimeType">
|
<a-select v-model="model.planCloseTimeType" placeholder="请选择时间类型">
|
<a-select-option value="">请选择</a-select-option>
|
<a-select-option value="天">天</a-select-option>
|
<a-select-option value="周">周</a-select-option>
|
<a-select-option value="月">月</a-select-option>
|
</a-select>
|
</a-form-model-item>
|
</a-col>
|
<a-col :span="24">
|
<a-form-model-item label="时长(分钟)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="planCloseTimeLong">
|
<a-input-number :min="0" v-model="model.planCloseTimeLong" placeholder="请输入时长(分钟)" ></a-input-number>
|
</a-form-model-item>
|
</a-col>
|
<a-col :span="24">
|
<a-form-model-item label="备注" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="remark">
|
<a-textarea :maxLength="20" v-model="model.remark" placeholder="请输入备注" ></a-textarea>
|
</a-form-model-item>
|
</a-col>
|
</a-row>
|
</a-form-model>
|
</j-form-container>
|
</a-spin>
|
</template>
|
|
<script>
|
|
import { httpAction, getAction } from '@/api/manage'
|
import { validateDuplicateValue } from '@/utils/util'
|
import ATextarea from 'ant-design-vue/es/input/TextArea'
|
|
export default {
|
name: 'MdcplancloseForm',
|
components: {
|
ATextarea
|
},
|
props: {
|
//表单禁用
|
disabled: {
|
type: Boolean,
|
default: false,
|
required: false
|
}
|
},
|
data () {
|
return {
|
model:{
|
},
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 5 },
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 16 },
|
},
|
confirmLoading: false,
|
validatorRules: {
|
},
|
url: {
|
add: "/mdc/mdcPlanClose/add",
|
edit: "/mdc/mdcPlanClose/edit",
|
}
|
}
|
},
|
computed: {
|
formDisabled(){
|
return this.disabled
|
},
|
},
|
created () {
|
//备份model原始值
|
this.modelDefault = JSON.parse(JSON.stringify(this.model));
|
},
|
methods: {
|
add () {
|
this.edit(this.modelDefault);
|
},
|
edit (record) {
|
this.model = Object.assign({}, record);
|
this.visible = true;
|
},
|
submitForm () {
|
const that = this;
|
// 触发表单验证
|
this.$refs.form.validate(valid => {
|
if (valid) {
|
that.confirmLoading = true;
|
let httpurl = '';
|
let method = '';
|
if(!this.model.id){
|
httpurl+=this.url.add;
|
method = 'post';
|
}else{
|
httpurl+=this.url.edit;
|
method = 'put';
|
}
|
httpAction(httpurl,this.model,method).then((res)=>{
|
if(res.success){
|
// that.$message.success(res.message);
|
that.$notification.warning({
|
message:'消息',
|
description:res.message
|
});
|
that.$emit('ok');
|
}else{
|
// that.$message.warning(res.message);
|
that.$notification.warning({
|
message:'消息',
|
description:res.message
|
});
|
}
|
}).finally(() => {
|
that.confirmLoading = false;
|
})
|
}
|
|
})
|
},
|
}
|
}
|
</script>
|
<style scoped lang="less">
|
/deep/ .ant-input-number{
|
width: 100%!important;
|
}
|
</style>
|