From 1e9fa82cb2fe2c15f46bd1dd73f5c878c74b83b8 Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期四, 04 八月 2022 15:35:50 +0800
Subject: [PATCH] 1.系统多账号登录问题2.采购订单页面样式修改及数据渲染

---
 src/views/zzmx/jpgj.vue |   28 +++++++++++++++++++++++-----
 1 files changed, 23 insertions(+), 5 deletions(-)

diff --git a/src/views/zzmx/jpgj.vue b/src/views/zzmx/jpgj.vue
index e685e1c..e971ff8 100644
--- a/src/views/zzmx/jpgj.vue
+++ b/src/views/zzmx/jpgj.vue
@@ -114,41 +114,48 @@
             prop="RowNum"
             width="50"
             label="搴忓彿"
+            fixed
           />
           <el-table-column
             prop="partcode"
+            min-width="160"
             label="浜у搧缂栫爜"
             sortable="custom"
           />
           <el-table-column
             prop="partname"
             label="浜у搧鍚嶇О"
+            min-width="160"
             sortable="custom"
           />
           <el-table-column
             prop="partspec"
             label="浜у搧瑙勬牸"
-            width="110"
+            min-width="110"
             sortable="custom"
           />
           <el-table-column
             prop="wksp_name"
             label="鐢熶骇杞﹂棿"
+            min-width="110"
             sortable="custom"
           />
           <el-table-column
             prop="route_name"
             label="宸ヨ壓璺嚎"
             sortable="custom"
+            min-width="110"
           />
           <el-table-column
             prop="stepname"
             label="鍔犲伐宸ュ簭"
             sortable="custom"
+            min-width="110"
           />
           <el-table-column
             prop="eqp_name"
             label="鍔犲伐璁惧"
+            min-width="110"
             sortable="custom"
           />
           <el-table-column
@@ -178,6 +185,7 @@
 
           <el-table-column
             label="鎿嶄綔"
+            fixed="right"
           >
             <template slot-scope="{row}">
               <div class="operationClass">
@@ -308,16 +316,19 @@
             prop="eqpcode"
             label="璁惧缂栫爜"
             sortable="custom"
+            min-width="110"
           />
           <el-table-column
             prop="eqpname"
             label="璁惧鍚嶇О"
+            min-width="110"
             sortable="custom"
           />
           <el-table-column
             prop="wksp_name"
             sortable="custom"
             label="鐢熶骇杞﹂棿"
+            min-width="110"
           />
           <el-table-column
             sortable="custom"
@@ -423,8 +434,6 @@
 
 <script>
 import Pagination from '@/components/Pagination'
-import { AddUpdateOrganization, DeleteOrganization } from '@/api/jcsz'
-import { getCookie } from '@/utils/auth'
 import {
   BeatRateSearch, DeleteBeatRate,
   PartSelect,
@@ -528,18 +537,27 @@
     }
   },
   created() {
-    this.getBeatRateSearch()
-    this.getPartSelect()
+    this.handleRequest()
   },
   mounted() {
     window.addEventListener('resize', this.getHeight)
     this.getHeight()
   },
   methods: {
+
+    handleRequest() {
+      this.getBeatRateSearch().then(res => {
+        if (res.code === '200') {
+          this.getPartSelect()
+        }
+      })
+    },
+
     async getBeatRateSearch() {
       const res = await BeatRateSearch(this.form)
       this.tableData = res.data
       this.total = res.count
+      return { code: res.code }
     },
     // 鎺掑簭鏀瑰彉鏃�
     sortChange({ column, prop, order }) {

--
Gitblit v1.9.3