diff --git a/ant-design-vue-jeecg/src/views/system/monitor/locationStatus.vue b/ant-design-vue-jeecg/src/views/system/monitor/locationStatus.vue
index b07340a..8f8a960 100644
--- a/ant-design-vue-jeecg/src/views/system/monitor/locationStatus.vue
+++ b/ant-design-vue-jeecg/src/views/system/monitor/locationStatus.vue
@@ -39,8 +39,8 @@
             <li>
               <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
                 <a-button type="primary" @click="search()" icon="search" style="margin-left: 8px;">查询</a-button>
-                <a-button @click='expressDelivery()' v-if="expressDeliveryVisible" type='primary' style="margin-left: 8px;">快速出库</a-button>
-                <a-button @click="expressStorage()" type="primary" v-if="expressStorageVisible" style="margin-left: 8px;">快速入库</a-button>
+                <a-button @click='expressDelivery()' v-if="expressDeliveryVisible" type='primary' style="margin-left: 8px;">平库出库</a-button>
+                <a-button @click="expressStorage()" type="primary" v-if="expressStorageVisible" style="margin-left: 8px;">平库入库</a-button>
               </span>
             </li>
           </ul>
@@ -284,7 +284,7 @@ export default {
           for (let i of newArr) {
             let param = {
               materialCode: i.materialCode,
-              shipQty: i.qty,
+              shipQty: 0,
               inventoryDetailId: i.id,
               containerCode: i.containerCode
             }
@@ -303,10 +303,16 @@ export default {
     // 显示快速出库
     revealExpressDelivery(code, materialCode) {
       this.expressDeliveryVisible = !!materialCode;
+      if (this.zoneCode != 'P') {
+        this.expressDeliveryVisible = false;
+      }
     },
     // 显示快速入库
     revealExpressStorage(code) {
       this.expressStorageVisible = !!code;
+      if (this.zoneCode != 'P') {
+        this.expressStorageVisible = false;
+      }
     },
     //关闭tips
     mClose(x) {