|
|
@@ -13,14 +13,14 @@
|
|
|
<view class="bg-#fff" :style="{ height: safeAreaBottom + 'px' }"></view>
|
|
|
<view class="bottom-circle-line" :class="{ 'bottom-circle-line-active': btnStyle == 'close' }" :style="{ bottom: safeAreaBottom + 'px' }">
|
|
|
<view class="bottom-circle d-flex" :style="{ backgroundImage: 'url(https://yujin-szyy.oss-cn-chengdu.aliyuncs.com/szyy/images-plt/plant/storage/send_btm_bg_c.png)' }">
|
|
|
- <view class="flex1 d-flex flex-cln a-c pt-160 pl-30">
|
|
|
+ <view @click="showFeatureUnavailable" class="flex1 d-flex flex-cln a-c pt-160 pl-30">
|
|
|
<view>
|
|
|
<image class="w-68 h-68" src="https://yujin-szyy.oss-cn-chengdu.aliyuncs.com/szyy/images-plt/plant/storage/xzhwk_icon_sd.png" mode="widthFix" />
|
|
|
</view>
|
|
|
<view class="f-s-28 c-#333">下载货位卡</view>
|
|
|
<view class="f-s-22 c-#999">库存结余清晰</view>
|
|
|
</view>
|
|
|
- <view class="d-flex flex-cln a-c pt-24">
|
|
|
+ <view class="d-flex flex-cln a-c pt-24" @click="showFeatureUnavailable">
|
|
|
<view>
|
|
|
<image class="w-68 h-68" src="https://yujin-szyy.oss-cn-chengdu.aliyuncs.com/szyy/images-plt/plant/storage/xzsyrk_icon_sd.png" mode="widthFix" />
|
|
|
</view>
|
|
|
@@ -43,6 +43,8 @@
|
|
|
<view class="bg-#fff" :style="{ height: safeAreaBottom + 'px' }"></view>
|
|
|
</template>
|
|
|
<script setup lang="ts">
|
|
|
+import { showFeatureUnavailable } from '@/utils/common';
|
|
|
+
|
|
|
const windowInfo = uni.getWindowInfo();
|
|
|
const safeAreaBottom = windowInfo.safeAreaInsets.bottom;
|
|
|
const btnStyle = ref('add')
|