164 lines
4.4 KiB
Vue
164 lines
4.4 KiB
Vue
<template>
|
|
<div class="invoice-modal">
|
|
<Modal v-model="invoiceAvailable" width="600" footer-hide>
|
|
<p slot="header">
|
|
<span>发票信息</span>
|
|
</p>
|
|
<!-- 普通发票 -->
|
|
<div class="nav-content">
|
|
<Form :model="invoiceForm" ref="form" label-position="left" :rules="ruleInline" :label-width="110">
|
|
<FormItem label="发票类型">
|
|
<RadioGroup v-model="invoice" type="button" button-style="solid">
|
|
<Radio @on-change="changeInvoice" :label="1">电子普通发票</Radio>
|
|
<Radio :label="2" :disabled="true">增值税专用发票</Radio>
|
|
</RadioGroup>
|
|
</FormItem>
|
|
<FormItem label="发票抬头">
|
|
<RadioGroup v-model="type" @on-change="changeInvoice" type="button" button-style="solid">
|
|
<Radio :label="1">个人</Radio>
|
|
<Radio :label="2">单位</Radio>
|
|
</RadioGroup>
|
|
</FormItem>
|
|
<FormItem label="个人名称" v-if="type === 1" prop="receiptTitle">
|
|
<i-input v-model="invoiceForm.receiptTitle"></i-input>
|
|
</FormItem>
|
|
<FormItem label="单位名称" v-if="type === 2" prop="receiptTitle">
|
|
<i-input v-model="invoiceForm.receiptTitle"></i-input>
|
|
</FormItem>
|
|
<FormItem label="纳税人识别号" v-if="type === 2" prop="taxpayerId">
|
|
<i-input v-model="invoiceForm.taxpayerId"></i-input>
|
|
</FormItem>
|
|
<FormItem label="发票内容">
|
|
<RadioGroup v-model="invoiceForm.receiptContent" type="button" button-style="solid">
|
|
<Radio label="商品明细">商品明细</Radio>
|
|
<Radio label="商品类别">商品类别</Radio>
|
|
</RadioGroup>
|
|
</FormItem>
|
|
</Form>
|
|
<div style="text-align: center">
|
|
<Button type="primary" :loading="loading" @click="submit">保存发票信息</Button>
|
|
<Button type="default" @click="invoiceAvailable = false">取消</Button>
|
|
</div>
|
|
</div>
|
|
</Modal>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { receiptSelect } from '@/api/cart.js';
|
|
import { TINumber } from '@/plugins/RegExp.js';
|
|
export default {
|
|
name: 'invoiceModal',
|
|
data () {
|
|
return {
|
|
invoice: 1, // 发票类型
|
|
invoiceAvailable: false, // 模态框显隐
|
|
loading: false, // 提交状态
|
|
invoiceForm: {
|
|
// 普票表单
|
|
receiptTitle: '', // 发票抬头
|
|
taxpayerId: '', // 纳税人识别号
|
|
receiptContent: '商品明细' // 发票内容
|
|
},
|
|
type: 1, // 1 个人 2 单位
|
|
ruleInline: {
|
|
taxpayerId: [
|
|
{ required: true, message: '请填写纳税人识别号' },
|
|
{ pattern: TINumber, message: '请填写正确的纳税人识别号' }
|
|
]
|
|
}
|
|
};
|
|
},
|
|
props: ['invoiceData'],
|
|
watch: {
|
|
invoiceData: {
|
|
handler (val) {
|
|
this.invoiceForm = { ...val };
|
|
|
|
if (val.taxpayerId) {
|
|
this.type = 2;
|
|
} else {
|
|
this.type = 1;
|
|
}
|
|
},
|
|
deep: true,
|
|
immeadite: true
|
|
}
|
|
},
|
|
methods: {
|
|
/**
|
|
* 选择发票抬头
|
|
*/
|
|
changeInvoice (val) {
|
|
this.$nextTick(() => {
|
|
this.type = val;
|
|
});
|
|
},
|
|
|
|
/**
|
|
* 保存判断
|
|
*/
|
|
save () {
|
|
let flage = true;
|
|
|
|
// 保存分为两种类型,个人以及企业
|
|
const { receiptTitle } = JSON.parse(
|
|
JSON.stringify(this.invoiceForm)
|
|
);
|
|
// 判断是否填写发票抬头
|
|
if (!receiptTitle) {
|
|
this.$Message.error('请填写发票抬头!');
|
|
flage = false;
|
|
return false;
|
|
}
|
|
|
|
if (this.type === 2) {
|
|
this.$refs.form.validate((valid) => {
|
|
if (!valid) {
|
|
flage = false;
|
|
}
|
|
});
|
|
} else {
|
|
delete this.invoiceForm.taxpayerId;
|
|
}
|
|
|
|
return flage;
|
|
},
|
|
|
|
async submit () {
|
|
if (this.save()) {
|
|
this.loading = true;
|
|
let submit = {
|
|
way: this.$route.query.way,
|
|
...this.invoiceForm
|
|
};
|
|
let receipt = await receiptSelect(submit);
|
|
if (receipt.success) {
|
|
this.$emit('change', true);
|
|
}
|
|
|
|
this.loading = false;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
/** 普票 */
|
|
.inv-type {
|
|
text-align: center;
|
|
}
|
|
.add-inv {
|
|
font-size: 12px;
|
|
color: #438cde;
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: $theme_color;
|
|
}
|
|
}
|
|
|
|
.nav-content {
|
|
width: 500px;
|
|
margin: 10px auto;
|
|
}
|
|
</style>
|