服装智能制造软件平台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.
158 lines
5.7 KiB
158 lines
5.7 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="createTime"> |
|
<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="userId"> |
|
<j-select-user-by-dep v-model="model.userId" /> |
|
</a-form-model-item> |
|
</a-col> |
|
<a-col :span="24"> |
|
<a-form-model-item label="客户类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="customerType"> |
|
<j-dict-select-tag type="list" v-model="model.customerType" dictCode="khlx" placeholder="请选择客户类型" /> |
|
</a-form-model-item> |
|
</a-col> |
|
<a-col :span="24"> |
|
<a-form-model-item label="发票类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="invoiceType"> |
|
<j-dict-select-tag type="list" v-model="model.invoiceType" dictCode="fplx" placeholder="请选择发票类型" /> |
|
</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="taxIdentificationNumber"> |
|
<a-input v-model="model.taxIdentificationNumber" placeholder="请输入纳税人识别号" ></a-input> |
|
</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="telephone"> |
|
<a-input v-model="model.telephone" placeholder="请输入电话" ></a-input> |
|
</a-form-model-item> |
|
</a-col> |
|
<a-col :span="24"> |
|
<a-form-model-item label="开户行" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="bankDeposit"> |
|
<a-input v-model="model.bankDeposit" placeholder="请输入开户行" ></a-input> |
|
</a-form-model-item> |
|
</a-col> |
|
<a-col :span="24"> |
|
<a-form-model-item label="账号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="accountNumber"> |
|
<a-input v-model="model.accountNumber" placeholder="请输入账号" ></a-input> |
|
</a-form-model-item> |
|
</a-col> |
|
<a-col :span="24"> |
|
<a-form-model-item label="排序" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="sort"> |
|
<a-input-number v-model="model.sort" placeholder="请输入排序" style="width: 100%" /> |
|
</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: 'CustomerInvoiceForm', |
|
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: { |
|
telephone: [ |
|
{ required: false}, |
|
{ pattern: /^1[3456789]\d{9}$/, message: '请输入正确的手机号码!'}, |
|
], |
|
}, |
|
url: { |
|
add: "/customerinvoice/customerInvoice/add", |
|
edit: "/customerinvoice/customerInvoice/edit", |
|
queryById: "/customerinvoice/customerInvoice/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> |