<template>
|
<div ref="container">
|
<a-modal
|
:title="title"
|
:width="800"
|
:visible="visible"
|
:confirmLoading="confirmLoading"
|
:getContainer="() => $refs.container"
|
:maskStyle="{'top':'93px','left':'154px'}"
|
:wrapClassName="wrapClassNameInfo()"
|
:mask="isDesktop()"
|
:maskClosable="false"
|
@ok="handleOk"
|
@cancel="handleCancel"
|
cancelText="取消"
|
okText="保存"
|
style="top:100px;height: 50%;">
|
<template slot="footer">
|
<a-button key="back" v-if="isReadOnly" @click="handleCancel">
|
取消
|
</a-button>
|
</template>
|
<a-spin :spinning="confirmLoading">
|
<a-form :form="form">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="属性名">
|
<a-input placeholder="请输入属性名" v-decorator.trim="[ 'attributeName', validatorRules.attributeName]" />
|
</a-form-item>
|
</a-form>
|
<a-form :form="form">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="属性值">
|
<a-textarea :rows="2" placeholder="请输入属性值(用竖线隔开,比如:红色|橙色|黄色|绿色)" v-decorator.trim="[ 'attributeValue', validatorRules.attributeValue]" />
|
</a-form-item>
|
</a-form>
|
</a-spin>
|
</a-modal>
|
</div>
|
</template>
|
<script>
|
import pick from 'lodash.pick'
|
import {addMaterialAttribute,editMaterialAttribute,checkMaterialAttribute } from '@/api/api'
|
import {mixinDevice} from '@/utils/mixin'
|
export default {
|
name: "MaterialAttributeModal",
|
mixins: [mixinDevice],
|
data () {
|
return {
|
title:"操作",
|
visible: false,
|
model: {},
|
isReadOnly: false,
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 5 },
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 16 },
|
},
|
confirmLoading: false,
|
form: this.$form.createForm(this),
|
validatorRules:{
|
attributeName:{
|
rules: [
|
{ required: true, message: '请输入属性名!' },
|
{ min: 1, max: 10, message: '长度在 1 到 10 个字符', trigger: 'blur' },
|
{ validator: this.validateAttributeName}
|
]
|
},
|
attributeValue:{
|
rules: [
|
{ required: true, message: '请输入属性值(用竖线隔开)!' }
|
]
|
}
|
}
|
}
|
},
|
created () {
|
},
|
methods: {
|
add () {
|
this.edit({});
|
},
|
edit (record) {
|
this.form.resetFields();
|
this.model = Object.assign({}, record);
|
this.visible = true;
|
this.$nextTick(() => {
|
this.form.setFieldsValue(pick(this.model, 'attributeName', 'attributeValue'))
|
});
|
},
|
close () {
|
this.$emit('close');
|
this.visible = false;
|
},
|
handleOk () {
|
const that = this;
|
// 触发表单验证
|
this.form.validateFields((err, values) => {
|
if (!err) {
|
that.confirmLoading = true;
|
let formData = Object.assign(this.model, values);
|
let obj;
|
if(!this.model.id){
|
obj=addMaterialAttribute(formData);
|
}else{
|
obj=editMaterialAttribute(formData);
|
}
|
obj.then((res)=>{
|
if(res.code === 200){
|
that.$emit('ok');
|
}else{
|
that.$message.warning(res.data.message);
|
}
|
}).finally(() => {
|
that.confirmLoading = false;
|
that.close();
|
})
|
}
|
})
|
},
|
handleCancel () {
|
this.close()
|
},
|
validateAttributeName(rule, value, callback){
|
let params = {
|
name: value,
|
id: this.model.id?this.model.id:0
|
};
|
checkMaterialAttribute(params).then((res)=>{
|
if(res && res.code===200) {
|
if(!res.data.status){
|
callback();
|
} else {
|
callback("名称已经存在");
|
}
|
} else {
|
callback(res.data);
|
}
|
});
|
}
|
}
|
}
|
</script>
|
<style scoped>
|
|
</style>
|