|
@@ -107,34 +107,34 @@
|
|
|
</template>
|
|
</template>
|
|
|
<el-empty v-else :description="$t('common.empty')" />
|
|
<el-empty v-else :description="$t('common.empty')" />
|
|
|
<el-dialog v-model="dialogVisible" :title="$t('common.applyInvoice')" width="784">
|
|
<el-dialog v-model="dialogVisible" :title="$t('common.applyInvoice')" width="784">
|
|
|
- <div class="dialog_title">发票抬头信息</div>
|
|
|
|
|
|
|
+ <div class="dialog_title">{{ $t('personalCenter.fpttxx') }}</div>
|
|
|
<el-form :model="invoiceData" class="demo-form-inline" label-position="top" :rules="rules" ref="ruleFormRef">
|
|
<el-form :model="invoiceData" class="demo-form-inline" label-position="top" :rules="rules" ref="ruleFormRef">
|
|
|
<el-row :gutter="16">
|
|
<el-row :gutter="16">
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="抬头类型">
|
|
|
|
|
|
|
+ <el-form-item :label="$t('personalCenter.ttlx')">
|
|
|
<el-radio-group v-model="invoiceData.invoiceType">
|
|
<el-radio-group v-model="invoiceData.invoiceType">
|
|
|
- <el-radio value="0" size="large">个人</el-radio>
|
|
|
|
|
- <el-radio value="1" size="large">企业单位</el-radio>
|
|
|
|
|
|
|
+ <el-radio value="0" size="large">{{ $t('personalCenter.personal') }}</el-radio>
|
|
|
|
|
+ <el-radio value="1" size="large">{{ $t('personalCenter.company') }}</el-radio>
|
|
|
</el-radio-group>
|
|
</el-radio-group>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="购方名称" prop="invoiceTitle">
|
|
|
|
|
- <el-input v-model="invoiceData.invoiceTitle" placeholder="请输入" clearable />
|
|
|
|
|
|
|
+ <el-form-item :label="$t('personalCenter.gfmc')" prop="invoiceTitle">
|
|
|
|
|
+ <el-input v-model="invoiceData.invoiceTitle" :placeholder="$t('common.placeholderInput')" clearable />
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
<template v-if="invoiceData.invoiceType == 1">
|
|
<template v-if="invoiceData.invoiceType == 1">
|
|
|
<el-row :gutter="16">
|
|
<el-row :gutter="16">
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="购方税号" prop="taxNumber">
|
|
|
|
|
- <el-input v-model="invoiceData.taxNumber" placeholder="请输入" clearable />
|
|
|
|
|
|
|
+ <el-form-item :label="$t('personalCenter.code')" prop="taxNumber">
|
|
|
|
|
+ <el-input v-model="invoiceData.taxNumber" :placeholder="$t('common.placeholderInput')" clearable />
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="公司地址">
|
|
|
|
|
- <el-input v-model="invoiceData.otherInfo.address" placeholder="请输入" clearable />
|
|
|
|
|
|
|
+ <el-form-item :label="$t('personalCenter.companyAddress')">
|
|
|
|
|
+ <el-input v-model="invoiceData.otherInfo.address" :placeholder="$t('common.placeholderInput')" clearable />
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
|
|
@@ -144,20 +144,20 @@
|
|
|
<template v-if="invoiceData.invoiceType == 1">
|
|
<template v-if="invoiceData.invoiceType == 1">
|
|
|
<el-row :gutter="16">
|
|
<el-row :gutter="16">
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="公司电话">
|
|
|
|
|
- <el-input v-model="invoiceData.otherInfo.mobile" placeholder="请输入" clearable />
|
|
|
|
|
|
|
+ <el-form-item :label="$t('personalCenter.companyPhone')">
|
|
|
|
|
+ <el-input v-model="invoiceData.otherInfo.mobile" :placeholder="$t('common.placeholderInput')" clearable />
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="公司开户行">
|
|
|
|
|
- <el-input v-model="invoiceData.otherInfo.bank" placeholder="请输入" clearable />
|
|
|
|
|
|
|
+ <el-form-item :label="$t('personalCenter.companyBank')">
|
|
|
|
|
+ <el-input v-model="invoiceData.otherInfo.bank" :placeholder="$t('common.placeholderInput')" clearable />
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
<el-row :gutter="16">
|
|
<el-row :gutter="16">
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="开户行账号">
|
|
|
|
|
- <el-input v-model="invoiceData.otherInfo.account" placeholder="请输入" clearable />
|
|
|
|
|
|
|
+ <el-form-item :label="$t('personalCenter.bankAccount')">
|
|
|
|
|
+ <el-input v-model="invoiceData.otherInfo.account" :placeholder="$t('common.placeholderInput')" clearable />
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
|