From 02f85f84ce3d2212736e231c376dd084a7153783 Mon Sep 17 00:00:00 2001
From: 石广澎 <shiguangpeng@163.com>
Date: 星期四, 30 十一月 2023 15:09:15 +0800
Subject: [PATCH] feat: 库存管理 出库管理、采购管理、报废管理 新增时物品查询增加机构限制

---
 admin-web/src/views/dashboard/index.vue |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/admin-web/src/views/dashboard/index.vue b/admin-web/src/views/dashboard/index.vue
index e210eb0..25a5676 100644
--- a/admin-web/src/views/dashboard/index.vue
+++ b/admin-web/src/views/dashboard/index.vue
@@ -13,7 +13,7 @@
             </el-radio-group>
             <div class="to-more" @click="nav('/stock/transfer/transferissue')">鏌ョ湅鏇村 ></div>
           </div>
-          <el-table v-loading="waitLoading" :data="waitWorkData" class="top-tb" height="265" :show-header="false"
+          <el-table v-loading="waitLoading" :data="waitWorkData" class="top-tb" height="220" :show-header="false"
                     size="medium">
             <el-table-column prop="businessFormCode" align="center" width="130"></el-table-column>
             <el-table-column prop="inWarehouseName" align="left" min-width="130">
@@ -34,7 +34,7 @@
             </el-table-column>
             <el-table-column prop="date" label="鎿嶄綔" fixed="right" align="center" width="80">
               <template slot-scope="scope">
-                <el-button @click.native.prevent="aduitThis(scope.row)" size="mini" type="primary">澶勭悊</el-button>
+                <el-button style="padding: 4.5px 15px" @click.native.prevent="aduitThis(scope.row)" size="mini" type="primary">澶勭悊</el-button>
               </template>
             </el-table-column>
             <el-empty slot="empty" description="鏆傛棤鏁版嵁"></el-empty>
@@ -54,7 +54,7 @@
             </el-radio-group>
             <div class="to-more" @click="nav('/stock/ledger/alertQuery')">鏌ョ湅鏇村 ></div>
           </div>
-          <el-table v-loading="earlyLoading" :data="earlyWarningData" class="top-tb" height="265" :show-header="false"
+          <el-table v-loading="earlyLoading" :data="earlyWarningData" class="top-tb" height="220" :show-header="false"
                     size="medium">
             <el-table-column prop="baseGoodsTemplateName" align="left" min-width="130">
               <template slot-scope="{row}">
@@ -182,6 +182,7 @@
     };
   },
   created() {
+    console.log(this.userInfo)
     this.getAuditList()
     this.getWarningList()
     getGoodsNumPrice().then(res => {
@@ -334,9 +335,10 @@
 .total-item {
   width: 19%;
   padding: 12px 20px;
-  border-radius: 8px;
+  border-radius: 4px;
   margin-right: 1%;
   background-color: #FFFFFF;
+  border-left: 4px solid #fb6260;
 }
 
 .total-item:last-child {

--
Gitblit v1.9.1