From f28c92b15808088eeec70442f0d45cf4ed6543e8 Mon Sep 17 00:00:00 2001
From: haoxuan <haoxuan>
Date: 星期四, 04 一月 2024 17:14:18 +0800
Subject: [PATCH] 销售明细单,产品信息的销售单价一直是0的问题修改

---
 src/views/other/payment/saleInvoice/index.vue |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/views/other/payment/saleInvoice/index.vue b/src/views/other/payment/saleInvoice/index.vue
index bd13fb7..0ed89c1 100644
--- a/src/views/other/payment/saleInvoice/index.vue
+++ b/src/views/other/payment/saleInvoice/index.vue
@@ -101,7 +101,7 @@
       keyword: "",
       keywordType: "",
       tableColumn: [
-        { label: "鍙戠エ缂栧彿", prop: "invoiceNumber", default: true },
+        { label: "鍙戠エ缂栧彿", prop: "number", default: true },
         { label: "涓婚", prop: "subject" },
         { label: "瀹㈡埛鍚嶇О", prop: "client_name" },
         { label: "绁ㄦ嵁绫诲瀷", prop: "invoiceType_name" },
@@ -189,9 +189,9 @@
       }
       await getInvoiceList(params)
         .then((res) => {
-          if (res.data.code === 200) {
-            if (res.data.data.data && res.data.data.data.length > 0) {
-              const list = res.data.data.data.map((item) => {
+          if (res.code === 200) {
+            if (res.data.data && res.data.data.length > 0) {
+              const list = res.data.data.map((item) => {
                 return {
                   ...item,
                   client_name: item.Client.name,
@@ -200,7 +200,7 @@
                 }
               })
               this.tableList.tableInfomation = list || []
-              this.pagerOptions.totalCount = res.data.data.count
+              this.pagerOptions.totalCount = res.data.count
             } else {
               this.tableList.tableInfomation = []
             }

--
Gitblit v1.8.0