Commit c8ad0e2d authored by 吴春's avatar 吴春

1

parent 3a98cabc
......@@ -191,9 +191,10 @@
<template v-else>
<span style="display:flex;align-items: center;">
<el-input placeholder v-model="msg.CompanyName"></el-input>
<el-checkbox v-model="checked">{{$t('objFill.v101.FinancialModule.baocunwcy')}}</el-checkbox>
<el-checkbox v-model="checked" >{{$t('objFill.v101.FinancialModule.baocunwcy')}}</el-checkbox>
</span>
</template>
 <el-checkbox v-model="isQMySelf" style="margin-top:10px;" @change="getCustomerInvoiceList()">{{$t('objFill.seeMySelfCompany')}}</el-checkbox>
</td>
</tr>
<tr>
......@@ -313,6 +314,7 @@
orderList: {},
isChang: 1,
checked: true,
isQMySelf:false,
CustomerList: [],
CompanyID: "",
images: [],
......@@ -559,10 +561,15 @@
);
},
getCustomerInvoiceList: function () {
let Type=0;
if(this.isQMySelf){
Type=1;
}
// 根据客户id 获取对应发票信息
this.apipost(
"InvoiceApply_get_GetCustomerInvoiceList", {
CustomerID: this.msg.CustomerId
CustomerID: this.msg.CustomerId,
Type:Type
},
res => {
if (res.data.resultCode == 1) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment