From ab1fa81d7531b4e2f843dad0bfc5ef3aced1cdd1 Mon Sep 17 00:00:00 2001 From: huaxinzhu <15565133664@163.com> Date: Tue, 19 Oct 2021 16:11:43 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=93=E7=AE=97=E8=AF=A6=E6=83=85order=5Fid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/asset/settlementbill/index.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/views/system/asset/settlementbill/index.vue b/src/views/system/asset/settlementbill/index.vue index 87fe27d..1a20dc5 100644 --- a/src/views/system/asset/settlementbill/index.vue +++ b/src/views/system/asset/settlementbill/index.vue @@ -198,7 +198,7 @@ }, /** 详情 跳转 */ viewDetails(row) { - const indexId = row.id ? row.id : 0; + const indexId = row.order_id ? row.order_id : 0; getVerifyrecord({order_id: indexId}).then(res=> { if(res.code == 1 && res.data) { this.detailDialog = true; @@ -214,7 +214,6 @@ if (res.data.order_goods_detail) { this.orderGoodsDetail = res.data.order_goods_detail; } - }else { this.$message({type: 'error',message: res.message ? res.message : 'æ•°æ®è¯·æ±‚失败'}); } -- 2.18.1