// 获取发票列表


async getInvoiceList(id) {


const result = await invoiceList({ exhibitionId: id });


console.log(result);


if (result.code === 200) {


let arryNew = []


result.rows.map((item) => {


const obj = {


companyAndPhone:item.producerInfo.address + "+" + item.producerInfo.phone,


mailingAndAddress:item.address+"+"+item.phone


};


arryNew.push(Object.assign({}, item,obj))


});


console.log(arryNew);


this.invoiceLists = arryNew;


}


},