|
|
@@ -16,10 +16,12 @@
|
|
|
</block>
|
|
|
</div>
|
|
|
|
|
|
- <div class="app-footer" v-if="!$util.isEmpty(ids)">
|
|
|
- <div class="admin-button-com big blue" @click="batchFh()">全部发货</div>
|
|
|
- <div class="admin-button-com big blue" style="margin-left:50upx;" @click="batchPrint()">合并打印</div>
|
|
|
- </div>
|
|
|
+ <view class="bottom-bar-view" v-if="!$util.isEmpty(ids)">
|
|
|
+ <view class="bar-content">
|
|
|
+ <button class="admin-button-com big blue" @click="batchFh()">全部发货</button>
|
|
|
+ <button class="admin-button-com big blue" style="margin-left: 50upx;" @click="batchPrint()">合并打印</button>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
|
|
|
<modal-module :show="fhLabelShow" @click="fhConfirm" :maskClosable="true" title="物流信息" padding="30rpx 30rpx" >
|
|
|
<template v-slot:content>
|
|
|
@@ -282,9 +284,36 @@ page{
|
|
|
padding: 10upx 0 40upx;
|
|
|
}
|
|
|
}
|
|
|
- // 按钮
|
|
|
- .app-footer {
|
|
|
- justify-content: flex-end;
|
|
|
- }
|
|
|
+}
|
|
|
+
|
|
|
+// 按钮
|
|
|
+.bottom-bar-view {
|
|
|
+ position: fixed;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ z-index: 9999;
|
|
|
+ width: 100%;
|
|
|
+ background-color: #FFFFFF;
|
|
|
+ border-top: 1upx solid #eee;
|
|
|
+ box-shadow: 0upx -1upx 6upx 0upx rgba(4, 0, 0, 0.06);
|
|
|
+
|
|
|
+ /* #ifdef MP-WEIXIN */
|
|
|
+ padding-bottom: constant(safe-area-inset-bottom); /* iOS 11.2- */
|
|
|
+ padding-bottom: env(safe-area-inset-bottom); /* iOS 11.2+ */
|
|
|
+ /* #endif */
|
|
|
+
|
|
|
+ /* #ifdef APP-PLUS */
|
|
|
+ padding-bottom: constant(safe-area-inset-bottom); /* iOS 11.2- */
|
|
|
+ padding-bottom: env(safe-area-inset-bottom); /* iOS 11.2+ */
|
|
|
+ /* #endif */
|
|
|
+
|
|
|
+ .bar-content {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ padding: 10upx 40upx;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|