139 lines
4.6 KiB
139 lines
4.6 KiB
<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="name">
|
|
<a-input v-model="model.name" placeholder="请输入仓库名称" ></a-input>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="24">
|
|
<a-form-model-item label="仓管员" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="contacts">
|
|
<a-input v-model="model.contacts" placeholder="请输入仓管员" ></a-input>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="24">
|
|
<a-form-model-item label="手机号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="phone">
|
|
<a-input v-model="model.phone" placeholder="请输入手机号" ></a-input>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="24">
|
|
<a-form-model-item label="仓库地址" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="addr">
|
|
<a-input v-model="model.addr" placeholder="请输入仓库地址" ></a-input>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="24">
|
|
<a-form-model-item label="区域" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="region">
|
|
<a-input v-model="model.region" placeholder="请输入区域" ></a-input>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="24">
|
|
<a-form-model-item label="是否启用" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="enable">
|
|
<j-dict-select-tag type="list" v-model="model.enable" dictCode="ifSale" placeholder="请选择是否启用" />
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="24">
|
|
<a-form-model-item label="创建时间" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="crateTime">
|
|
<j-date placeholder="请选择创建时间" v-model="model.createTime" :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" style="width: 100%" />
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="24">
|
|
<a-form-model-item label="创建部门" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="orgCode">
|
|
<a-input v-model="model.orgCode" placeholder="请输入创建部门" ></a-input>
|
|
</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'
|
|
|
|
export default {
|
|
name: 'StoreInfoForm',
|
|
components: {
|
|
},
|
|
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: "/erp/storeInfo/add",
|
|
edit: "/erp/storeInfo/edit",
|
|
queryById: "/erp/storeInfo/queryById"
|
|
}
|
|
}
|
|
},
|
|
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.$emit('ok');
|
|
}else{
|
|
that.$message.warning(res.message);
|
|
}
|
|
}).finally(() => {
|
|
that.confirmLoading = false;
|
|
})
|
|
}
|
|
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script> |