lilei 2 vuotta sitten
vanhempi
commit
8a76f21171

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
-  "version": 1668135566914
+  "version": 1668137305269
 }

+ 5 - 1
src/views/numsGoodsShelves/replenishmentManagement/detailModal.vue

@@ -18,7 +18,11 @@
             <a-descriptions-item label="状态">{{ detailData&&detailData.billStateDictValue || '--' }}</a-descriptions-item>
             <a-descriptions-item label="出库时间">{{ detailData&&detailData.outStockTime || '--' }}</a-descriptions-item>
             <a-descriptions-item label="签收时间">{{ detailData&&detailData.putStockTime || '--' }}</a-descriptions-item>
-            <a-descriptions-item label="出库备注">{{ detailData&&detailData.remarks || '--' }}</a-descriptions-item>
+            <a-descriptions-item label="出库备注">
+              <div style="word-break: break-all;">
+                {{ detailData&&detailData.remarks || '--' }}
+              </div>
+            </a-descriptions-item>
             <a-descriptions-item label="关联销售单" :span="3" v-if="detailData.billState=='WAIT_CHECK' || detailData.billState=='WAIT_OUT_STOCK' || detailData.billState=='FINISH'">
               <a style="margin-right:10px;color:#00aaff;" v-for="item in salesOrderList" :key="item.id" @click="viewSales(item)">{{ item.salesBillNo }};</a>
               <a-button type="primary" class="button-info" @click="showPlModal=true">生成销售单</a-button>

+ 1 - 1
src/views/numsGoodsShelves/replenishmentManagement/list.vue

@@ -451,7 +451,7 @@ export default {
       })
       this.curBizType = this.$route.query && this.$route.query.bizType || this.curBizType
       this.queryByTypeSum()
-      if (this.curBizType == 'ALL') {
+      if (this.$route.query && this.$route.query.bizType == 'ALL') {
         this.openSlodOut = true
       }
     }