From 28d38f132ff7c6a1239df6c56f2da0a021bd4e96 Mon Sep 17 00:00:00 2001
From: value <z1292839451@163.com>
Date: 星期三, 13 九月 2023 16:12:08 +0800
Subject: [PATCH] 销售订单bug修复

---
 src/components/view/raw-ins.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/components/view/raw-ins.vue b/src/components/view/raw-ins.vue
index e2229b3..1d5b2e3 100644
--- a/src/components/view/raw-ins.vue
+++ b/src/components/view/raw-ins.vue
@@ -106,8 +106,8 @@
       <span>鍘熸潗鏂欑紪鐮侊細</span>
       <el-input
         v-model="search.code"
-        size="small"
         placeholder="璇疯緭鍏�"
+        size="small"
         style="width: 224px;margin-right: 30px;"
         clearable
       ></el-input>
@@ -244,8 +244,8 @@
       this.selectRawInspectsList();
     },
     selectRawInspectsList() {
-      this.axios
-        .post(this.$api.url.selectRawInspectsList, this.search)
+      this.$axios
+        .get(this.$api.url.selectRawInspectsList, { params: this.search })
         .then(res => {
           this.tableData = res.data.row;
           this.total = res.data.total;

--
Gitblit v1.9.3