| 
@@ -32,8 +32,8 @@ | 
 | 
@@ -32,8 +32,8 @@ | 
| 
32
 | 
 			</view>
 | 
32
 | 
 			</view>
 | 
| 
33
 | 
 		</mescroll-body>
 | 
33
 | 
 		</mescroll-body>
 | 
| 
34
 | 
 		<!-- 告警筛选 -->
 | 
34
 | 
 		<!-- 告警筛选 -->
 | 
| 
35
 | 
-		<u-popup @close="close" closeable bgColor="#fff" :show="show" mode="bottom" :round="20">
 | 
 | 
   | 
| 
36
 | 
-			<view class="filter">
 | 
35
 | 
+		<u-popup @close="close" closeable bgColor="#fff" :show="show" mode="bottom" :round="20"  @touchmove.stop.prevent="disabledScroll">
 | 
| 
 | 
   | 
36
 | 
+			<view class="filter"  @touchmove.stop.prevent="disabledScroll">
 | 
| 
37
 | 
 				<view class="filter-title"><text>筛选条件</text></view>
 | 
37
 | 
 				<view class="filter-title"><text>筛选条件</text></view>
 | 
| 
38
 | 
 				<FilterItem :filterList="issueStatus" title="下发状态" @clickTag="currentIndex => handleClickTag(currentIndex, issueStatus)"></FilterItem>
 | 
38
 | 
 				<FilterItem :filterList="issueStatus" title="下发状态" @clickTag="currentIndex => handleClickTag(currentIndex, issueStatus)"></FilterItem>
 | 
| 
39
 | 
 				<view class="button-group">
 | 
39
 | 
 				<view class="button-group">
 | 
 | 
@@ -118,6 +118,9 @@ export default { | 
 | 
@@ -118,6 +118,9 @@ export default { | 
| 
118
 | 
 		format(date) {
 | 
118
 | 
 		format(date) {
 | 
| 
119
 | 
 			return formatToDate(date, 'YYYY-MM-DD HH:mm:ss');
 | 
119
 | 
 			return formatToDate(date, 'YYYY-MM-DD HH:mm:ss');
 | 
| 
120
 | 
 		},
 | 
120
 | 
 		},
 | 
| 
 | 
   | 
121
 | 
+		disabledScroll(){
 | 
| 
 | 
   | 
122
 | 
+			return;
 | 
| 
 | 
   | 
123
 | 
+		},
 | 
| 
121
 | 
 		/*上拉加载的回调: 其中page.num:当前页 从1开始, page.size:每页数据条数,默认10 */
 | 
124
 | 
 		/*上拉加载的回调: 其中page.num:当前页 从1开始, page.size:每页数据条数,默认10 */
 | 
| 
122
 | 
 		upCallback() {
 | 
125
 | 
 		upCallback() {
 | 
| 
123
 | 
 			//联网加载数据
 | 
126
 | 
 			//联网加载数据
 | 
 | 
@@ -289,4 +292,4 @@ export default { | 
 | 
@@ -289,4 +292,4 @@ export default { | 
| 
289
 | 
 		}
 | 
292
 | 
 		}
 | 
| 
290
 | 
 	}
 | 
293
 | 
 	}
 | 
| 
291
 | 
 }
 | 
294
 | 
 }
 | 
| 
292
 | 
-</style> | 
295
 | 
+</style> |