浏览代码

检查列表的检查状态可以多选

seimin 3 年之前
父节点
当前提交
1d1ccd95d9
共有 2 个文件被更改,包括 24 次插入13 次删除
  1. 19 10
      components/fjj-condition/fjj-condition.vue
  2. 5 3
      components/ld-select/ld-select.vue

+ 19 - 10
components/fjj-condition/fjj-condition.vue

@@ -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
       },

+ 5 - 3
components/ld-select/ld-select.vue

@@ -174,10 +174,12 @@
174 174
       showModal() { // 显示model
175 175
         if (!this.disabled) {
176 176
           this.isShowModal = true
177
+          this.$emit('parentCancel', 1)
177 178
         }
178 179
       },
179 180
       hideModal() { // 隐藏model
180 181
         this.isShowModal = false
182
+        this.$emit('parentCancel', 0)
181 183
       }
182 184
     }
183 185
   }
@@ -251,7 +253,7 @@
251 253
     height: 100vh;
252 254
     position: fixed;
253 255
     top: 0;
254
-    left: calc(220px - 100vw);
256
+    right: 0;
255 257
     z-index: 9999;
256 258
     opacity: 0;
257 259
     outline: 0;
@@ -261,7 +263,7 @@
261 263
     backface-visibility: hidden;
262 264
     perspective: 2000rpx;
263 265
     background: rgba(0, 0, 0, 0.6);
264
-    transition: all 0.3s ease-in-out 0s;
266
+    transition: all 0.1s ease-in-out 0s;
265 267
     pointer-events: none;
266 268
     margin-bottom: -1000rpx;
267 269
 
@@ -300,7 +302,7 @@
300 302
 
301 303
   .select-modal.show {
302 304
     opacity: 1;
303
-    transition-duration: 0.3s;
305
+    transition-duration: 0.1s;
304 306
     -ms-transform: scale(1);
305 307
     transform: scale(1);
306 308
     overflow-x: hidden;