Commit 4e207689 authored by youjie's avatar youjie

机票发票展示

parent 11690bb9
...@@ -267,6 +267,15 @@ ...@@ -267,6 +267,15 @@
</div> </div>
</div> </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> </td>
</tr> </tr>
</tbody> </tbody>
...@@ -972,15 +981,22 @@ export default { ...@@ -972,15 +981,22 @@ export default {
this.emptyMore() this.emptyMore()
} }
}, },
openDetails(item) { openDetails(item,type) {
let href; let href;
let url = this.domainManager().erpRoutingUrl; let url = this.domainManager().erpRoutingUrl;
let data = [ let data = [];
{ if(type){
path: "FinancialDocumentsDetail", data.push({
id: item.FrID, path: "invoicesManagerDetail",
}, id: item.ID,
]; InvoiceApplyType: 4
})
}else{
data.push({
path: "FinancialDocumentsDetail",
id: item.FrID,
})
}
href = href =
url + url +
"automaticLogin?token=" + "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