|
@@ -1,5 +1,4 @@
|
|
|
<template>
|
|
|
- <view>
|
|
|
<view class="box-head"><uni-mall-head ref="refUniMallHead" @change="tabChange"></uni-mall-head></view>
|
|
|
<view class="box-list">
|
|
|
<u-checkbox-group v-model="checkboxList" placement="column" :activeColor="$settingStore.themeColor.color" @change="checkboxChange">
|
|
@@ -55,7 +54,6 @@
|
|
|
</u-button>
|
|
|
</view>
|
|
|
</view>
|
|
|
- </view>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
@@ -198,6 +196,10 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+.boxWrap{
|
|
|
+ position: relative;
|
|
|
+ height:100%;
|
|
|
+}
|
|
|
.box-head {
|
|
|
position: fixed;
|
|
|
left: 0px;
|
|
@@ -210,10 +212,16 @@ export default {
|
|
|
z-index: 999;
|
|
|
}
|
|
|
.box-list {
|
|
|
+ position: absolute;
|
|
|
+ width:100%;
|
|
|
+ z-index: 0;
|
|
|
padding-top: 52px;
|
|
|
//#ifdef APP-PLUS || MP-WEIXIN
|
|
|
padding-bottom: 60px;
|
|
|
//#endif
|
|
|
+ //#ifdef H5
|
|
|
+ padding-bottom: 60px;
|
|
|
+ //#endif
|
|
|
.box-list-item {
|
|
|
position: relative;
|
|
|
height: 60px;
|
|
@@ -292,6 +300,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.box-list-item-department + .box-list-item-user {
|
|
|
margin-top: 10px;
|
|
|
}
|
|
@@ -300,14 +309,13 @@ export default {
|
|
|
.box-foot {
|
|
|
position: fixed;
|
|
|
bottom: 0px;
|
|
|
+ z-index: 1;
|
|
|
width: 100%;
|
|
|
height: 60px;
|
|
|
background: #ffffff;
|
|
|
- z-index: 999;
|
|
|
box-shadow: 1px 1px 4px rgb(26 26 26 / 10%);
|
|
|
display: flex;
|
|
|
padding: 0 15px;
|
|
|
-
|
|
|
&-left {
|
|
|
margin: auto auto auto 0;
|
|
|
|