Commit 4e207689 authored by youjie's avatar youjie

机票发票展示

parent 11690bb9
......@@ -267,6 +267,15 @@
</div>
</div>
</div>
<div class="documents-text">
<div class="documents-left">
<div>发票:</div>
<span
style="background: #dedede;color: black;"
v-for="(item,index) in item.InvoiceApplyList" :key="index"
@click="openDetails(item,1)">{{item.ID}}</span>
</div>
</div>
</td>
</tr>
</tbody>
......@@ -972,15 +981,22 @@ export default {
this.emptyMore()
}
},
openDetails(item) {
openDetails(item,type) {
let href;
let url = this.domainManager().erpRoutingUrl;
let data = [
{
path: "FinancialDocumentsDetail",
id: item.FrID,
},
];
let data = [];
if(type){
data.push({
path: "invoicesManagerDetail",
id: item.ID,
InvoiceApplyType: 4
})
}else{
data.push({
path: "FinancialDocumentsDetail",
id: item.FrID,
})
}
href =
url +
"automaticLogin?token=" +
......
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