| | |
| | | </div> |
| | | <div class="info_list_item" style="width: 100%;"> |
| | | <div class="info_list_item_label">地址、电话:</div> |
| | | <div class="info_list_item_val">{{userInfo.company.invoiceAddr}} {{userInfo.company.phone}}</div> |
| | | <div class="info_list_item_val">{{userInfo.company.taxAddr}}</div> |
| | | </div> |
| | | <div class="info_list_item" style="width: 100%;"> |
| | | <div class="info_list_item_label">开票金额:</div> |
| | |
| | | <el-radio v-model="type" label="0">电子发票</el-radio> |
| | | <div class="list_val"> |
| | | <div class="list_val_label">接收地址:</div> |
| | | <el-input v-model="val" :disabled="type === '1'" placeholder="111222333@qq.com"></el-input> |
| | | <el-input v-model="val" :disabled="type === '1'" placeholder="" ></el-input> |
| | | </div> |
| | | </div> |
| | | <div class="list" style="width: 100%;"> |
| | | <el-radio v-model="type" label="1">纸质发票</el-radio> |
| | | <div class="list_val"> |
| | | <div class="list_val_label">接收地址:</div> |
| | | <el-input v-model="val1" :disabled="type === '0'" placeholder="安徽省合肥市经济技术开发区莲花路以东、石门路以南莲花路1# 0551-63450845"></el-input> |
| | | <el-input v-model="val1" :disabled="type === '0'" placeholder=""></el-input> |
| | | </div> |
| | | </div> |
| | | </div> |
| | |
| | | open (title, target) { |
| | | this.title = title |
| | | this.type = '0' |
| | | this.val = '' |
| | | this.val1 = '' |
| | | this.visible = true |
| | | this.$nextTick(() => { |
| | | for (const key in this.form) { |
| | | this.form[key] = target[key] |
| | | } |
| | | }) |
| | | this.val = this.userInfo.company.invoiceEmail |
| | | this.val1 = this.userInfo.company.invoiceAddr |
| | | }, |
| | | confirm () { |
| | | if (!this.val && !this.val1) { |