服装智能制造软件平台V3.0
http://182.92.169.222/hhxy/#/user/login
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
178 lines
5.9 KiB
178 lines
5.9 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="updateTime"> |
|
<j-date placeholder="请选择创建日期" v-model="model.createTime" :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" style="width: 100%" disabled/> |
|
</a-form-model-item> |
|
</a-col> |
|
<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="partmentnae"> |
|
<j-popup |
|
v-model="model.partmentnae" |
|
field="partmentnae" |
|
org-fields="id,depart_name" |
|
dest-fields="partmentId,partmentnae" |
|
code="findckadmin" |
|
:multi="true" |
|
@input="popupCallback" |
|
/> |
|
</a-form-model-item> |
|
</a-col> |
|
<a-col :span="24"> |
|
<a-form-model-item label="是否专属" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="exclusive"> |
|
<j-dict-select-tag type="radio" v-model="model.exclusive" dictCode="yn" placeholder="请选择是否专属" /> |
|
</a-form-model-item> |
|
</a-col> |
|
<!-- <a-col :span="24"> |
|
<a-form-model-item label="仓库存储规则" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="type"> |
|
<j-dict-select-tag type="list" v-model="model.type" dictCode="goods_category" placeholder="请选择仓库存储规则" /> |
|
</a-form-model-item> |
|
</a-col>--> |
|
<a-col :span="24"> |
|
<a-form-model-item label="地址" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="address"> |
|
<a-input v-model="model.address" placeholder="请输入地址" ></a-input> |
|
</a-form-model-item> |
|
</a-col> |
|
|
|
<a-col :span="24"> |
|
<a-form-model-item label="电话" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="phoe"> |
|
<a-input v-model="model.phoe" placeholder="请输入电话" ></a-input> |
|
</a-form-model-item> |
|
</a-col> |
|
|
|
|
|
<a-col :span="24"> |
|
<a-form-model-item label="管理员" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="username"> |
|
<j-popup |
|
v-model="model.username" |
|
field="username" |
|
org-fields="id,realname" |
|
dest-fields="userId,username" |
|
code="findck" |
|
:multi="true" |
|
@input="popupCallback" |
|
/> |
|
</a-form-model-item> |
|
</a-col> |
|
<a-col :span="24"> |
|
<a-form-model-item label="库存预定" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="state"> |
|
<j-dict-select-tag type="radio" v-model="model.state" dictCode="yn" placeholder="请选择库存预定" /> |
|
</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: 'StarehouseForm', |
|
components: { |
|
}, |
|
props: { |
|
//表单禁用 |
|
disabled: { |
|
type: Boolean, |
|
default: false, |
|
required: false |
|
} |
|
}, |
|
data () { |
|
return { |
|
model:{ |
|
exclusive : "0", |
|
state : "1" |
|
}, |
|
labelCol: { |
|
xs: { span: 24 }, |
|
sm: { span: 5 }, |
|
}, |
|
wrapperCol: { |
|
xs: { span: 24 }, |
|
sm: { span: 16 }, |
|
}, |
|
confirmLoading: false, |
|
validatorRules: { |
|
name: [ |
|
{ required: true, message: '请输入名称!'}, |
|
], |
|
partmentnae: [ |
|
{ required: true, message: '请输入部门!'}, |
|
], |
|
phoe: [ |
|
{ required: false}, |
|
{ pattern: /^1[3456789]\d{9}$/, message: '请输入正确的手机号码!'}, |
|
], |
|
}, |
|
url: { |
|
add: "/starehouse/starehouse/add", |
|
edit: "/starehouse/starehouse/edit", |
|
queryById: "/starehouse/starehouse/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; |
|
}) |
|
} |
|
|
|
}) |
|
}, |
|
popupCallback(value,row){ |
|
this.model = Object.assign(this.model, row); |
|
}, |
|
} |
|
} |
|
</script> |