|
@@ -1,7 +1,7 @@
|
1
|
1
|
<template>
|
2
|
2
|
<view>
|
3
|
3
|
<uni-drawer :visible="visibleDrawer" mode="right" @close="closeDrawer()">
|
4
|
|
- <scroll-view class="drawer-list" scroll-y :style="{'height': drawerHeight}">
|
|
4
|
+ <scroll-view class="drawer-list" scroll-y :style="{'height': '100%'}">
|
5
|
5
|
<block v-for="(item, index) in menuList" :key="index">
|
6
|
6
|
<!-- 单选、多选 isMutiple是否支持多选-->
|
7
|
7
|
<view v-if="item.type == 'custom' && item.detailList.length">
|
|
@@ -141,19 +141,19 @@
|
141
|
141
|
<view class="dateContent inspectState-content flex">
|
142
|
142
|
<!-- https://ext.dcloud.net.cn/plugin?id=1873#detail -->
|
143
|
143
|
<ld-select :multiple="true" :list="inspectStateList" label-key="label" value-key="value" placeholder="请选择"
|
144
|
|
- v-model="result.inspectState" @change="inspectStateChange"></ld-select>
|
|
144
|
+ v-model="result.inspectState" @change="inspectStateChange" @parentCancel="parentCancel"></ld-select>
|
145
|
145
|
</view>
|
146
|
146
|
</view>
|
147
|
147
|
</block>
|
148
|
|
- </scroll-view>
|
149
|
|
- <view class="filter-content-footer flex justify-center">
|
150
|
|
- <view class="filter-content-footer-item" @tap="resetClick">
|
151
|
|
- <text>重置</text>
|
152
|
|
- </view>
|
153
|
|
- <view class="filter-content-footer-item" :style="{color}" @tap="sureClick">
|
154
|
|
- <text>确认</text>
|
|
148
|
+ <view class="filter-content-footer flex justify-center">
|
|
149
|
+ <view class="filter-content-footer-item" @tap="resetClick">
|
|
150
|
+ <text>重置</text>
|
|
151
|
+ </view>
|
|
152
|
+ <view class="filter-content-footer-item" :style="{color}" @tap="sureClick">
|
|
153
|
+ <text>确认</text>
|
|
154
|
+ </view>
|
155
|
155
|
</view>
|
156
|
|
- </view>
|
|
156
|
+ </scroll-view>
|
157
|
157
|
</uni-drawer>
|
158
|
158
|
<mx-date-picker :show="showPicker" :color="color" :type="dateType" :value="dateValue" :show-tips="true"
|
159
|
159
|
:show-seconds="true" @confirm="onSelected" @cancel="onSelected" />
|
|
@@ -268,6 +268,15 @@
|
268
|
268
|
};
|
269
|
269
|
},
|
270
|
270
|
methods: {
|
|
271
|
+ parentCancel(flag) {
|
|
272
|
+ if (flag == 1) {
|
|
273
|
+ document.querySelector('.uni-drawer__content').style.width = '100vw';
|
|
274
|
+ document.querySelector('.drawer-list').style.padding = '0';
|
|
275
|
+ } else {
|
|
276
|
+ document.querySelector('.uni-drawer__content').style.width = '200px';
|
|
277
|
+ document.querySelector('.drawer-list').style.padding = '0 ' + uni.upx2px(20) + "px";
|
|
278
|
+ }
|
|
279
|
+ },
|
271
|
280
|
getSelectedObj() {
|
272
|
281
|
return this.commonResultObj();
|
273
|
282
|
},
|