|
|
@@ -263,11 +263,11 @@
|
|
|
<el-button type="primary" size="mini" @click="ComAudit" v-if="formData.CheckStatus == 0">审核</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
- <el-dialog title="待开发票" :visible.sync="invoiceVisible">
|
|
|
+ <el-dialog :title="invoicetitle" :visible.sync="invoiceVisible" width="70%">
|
|
|
<el-card class="box-card">
|
|
|
<div slot="header">
|
|
|
<span>
|
|
|
- <i class="icon icon-table2"></i> 待开发票
|
|
|
+ <i class="icon icon-table2"></i> {{this.invoicetitle}}
|
|
|
</span>
|
|
|
<span style="float: right;">
|
|
|
<el-form ref="form" :inline="true" style="margin-top: -10px">
|
|
|
@@ -279,24 +279,27 @@
|
|
|
</div>
|
|
|
<div class="table-layout" style="margin-top: 0px">
|
|
|
<el-row>
|
|
|
- <el-col :span="6" class="table-cell-title">单位名称</el-col>
|
|
|
- <el-col :span="6" class="table-cell-title">税号</el-col>
|
|
|
- <el-col :span="12" class="table-cell-title">注册地址</el-col>
|
|
|
+ <el-col :span="9" class="table-cell-title">单位名称</el-col>
|
|
|
+ <el-col :span="10" class="table-cell-title">注册地址</el-col>
|
|
|
+ <el-col :span="5" class="table-cell-title">税号</el-col>
|
|
|
</el-row>
|
|
|
|
|
|
<el-row>
|
|
|
- <el-col :span="6" class="table-cell">{{this.formDataInvoice.SupplierName}}</el-col>
|
|
|
- <el-col :span="6" class="table-cell">{{this.formDataInvoice.CommercialNo}}</el-col>
|
|
|
- <el-col :span="12" class="table-cell">{{this.formDataInvoice.Address}}</el-col>
|
|
|
+ <el-col :span="9" class="table-cell">{{this.formDataInvoice.SupplierName}}</el-col>
|
|
|
+ <el-col :span="10" class="table-cell">{{this.formDataInvoice.Address}}</el-col>
|
|
|
+ <el-col :span="5" class="table-cell">{{this.formDataInvoice.CommercialNo}}</el-col>
|
|
|
+
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
- <el-col :span="12" class="table-cell-title">开户银行</el-col>
|
|
|
- <el-col :span="12" class="table-cell-title">银行账号</el-col>
|
|
|
+ <el-col :span="9" class="table-cell-title">开户银行</el-col>
|
|
|
+ <el-col :span="10" class="table-cell-title">银行账号</el-col>
|
|
|
+ <el-col :span="5" class="table-cell-title">邮箱</el-col>
|
|
|
</el-row>
|
|
|
|
|
|
<el-row>
|
|
|
- <el-col :span="12" class="table-cell">{{this.formDataInvoice.DepositBank}}</el-col>
|
|
|
- <el-col :span="12" class="table-cell">{{this.formDataInvoice.BankAccount}}</el-col>
|
|
|
+ <el-col :span="9" class="table-cell">{{this.formDataInvoice.DepositBank}}</el-col>
|
|
|
+ <el-col :span="10" class="table-cell">{{this.formDataInvoice.BankAccount}}</el-col>
|
|
|
+ <el-col :span="5" class="table-cell">{{this.formDataInvoice.Email}}</el-col>
|
|
|
</el-row>
|
|
|
</div>
|
|
|
</el-card>
|
|
|
@@ -372,6 +375,7 @@
|
|
|
urlList: [], // 照片地址数组
|
|
|
urlList2: [], // 照片地址数组2
|
|
|
bigUrl: '',
|
|
|
+ invoicetitle: '待开发票',
|
|
|
Auditshow: false,
|
|
|
dialogVisible: false,
|
|
|
invoiceVisible: false,
|
|
|
@@ -485,6 +489,7 @@
|
|
|
Address: '',
|
|
|
DepositBank: '',
|
|
|
BankAccount: '',
|
|
|
+ Email: '',
|
|
|
Amount: ''
|
|
|
},
|
|
|
paymentinfoList: [],
|
|
|
@@ -568,6 +573,7 @@
|
|
|
}
|
|
|
},
|
|
|
rowClick (val) {
|
|
|
+ console.log(val, 'val')
|
|
|
let SupplierType = ''
|
|
|
if (val.Type === '1') {
|
|
|
if (val.SupplierTypeCode === '01') {
|
|
|
@@ -611,6 +617,11 @@
|
|
|
}
|
|
|
this.$router.push('oilsupplier/supplierstorage/' + val.Id + '/' + SupplierType + '?certid=' + val.CertId)
|
|
|
} else if (val.Type === '8') {
|
|
|
+ if (val.Status === '未开') {
|
|
|
+ this.invoicetitle = '待开发票'
|
|
|
+ } else {
|
|
|
+ this.invoicetitle = '已开发票'
|
|
|
+ }
|
|
|
this.initInvoiceDatas(val.Id)
|
|
|
this.invoiceVisible = true
|
|
|
} else if (val.Type === '9') {
|
|
|
@@ -927,8 +938,8 @@
|
|
|
border-top: 1px solid #DCDFE6;
|
|
|
}
|
|
|
.table-cell {
|
|
|
- height: 40px;
|
|
|
- line-height: 20px;
|
|
|
+ /*height: 40px;*/
|
|
|
+ /*line-height: 20px;*/
|
|
|
border-right: 1px solid #DCDFE6;
|
|
|
border-bottom: 1px solid #DCDFE6;
|
|
|
padding: 10px;
|