From 571da48131c3647c6e1468aab82c5b7e8a14ac28 Mon Sep 17 00:00:00 2001 From: Mr.Shi <1878285526@qq.com> Date: 星期一, 14 八月 2023 18:26:01 +0800 Subject: [PATCH] h5出库入库 --- h5_standard/src/components/common/Warehouse.vue | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/h5_standard/src/components/common/Warehouse.vue b/h5_standard/src/components/common/Warehouse.vue index 72312dd..c9579da 100644 --- a/h5_standard/src/components/common/Warehouse.vue +++ b/h5_standard/src/components/common/Warehouse.vue @@ -2,7 +2,7 @@ <van-popup v-model:show="props.show" position="bottom" - :style="{ height: '100%' }"> + :style="{ height: props.height }"> <div class="title"> <div class="close" @click="close"><van-icon name="arrow-down" size="30" color="#ffffff" /></div> </div> @@ -16,8 +16,7 @@ v-model:loading="loading" :finished="finished" finished-text="娌℃湁鏇村浜唦" - @load="onLoad" - > + @load="onLoad"> <div class="content_list"> <div class="content_list_item" v-for="(item, i) in list" :key="i" @click="jump(item)"> <div class="content_list_item_name">{{item.name}}</div> @@ -136,6 +135,10 @@ systemDicDataId: { type: String, default: '' + }, + height: { + type: String, + default: '100%' } }) -- Gitblit v1.9.3