Commit 62a48105 authored by xiejb's avatar xiejb

订单详情 跳转发票列表 与 发票详情页面

parent c42bcc9a
......@@ -180,18 +180,20 @@ export default {
openGoodsList() {
this.$router.push({
path: 'goodsInfo',
query: this.$store.state.linkInfo
query: this.detailData
})
},
/* 打开发票列表页面 */
openOrderInvoice() {
this.$router.push({
path: 'orderInvoice',
query: this.$store.state.linkInfo
query: this.detailData
})
},
/* 打开单个发票页面 */
openInvoice(item) {
openInvoice(model) {
let item = this.detailData
item.invoiceNo = model.invoiceNo
this.$router.push({
path: 'orderInvoiecDetail',
query: item
......
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