Commit 62a48105 authored by xiejb's avatar xiejb

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

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