Bladeren bron

服务对接

LuChongMei 1 week geleden
bovenliggende
commit
8b48748c04
1 gewijzigde bestanden met toevoegingen van 39 en 14 verwijderingen
  1. 39 14
      jp-mobile/pages/service/LyService.vue

+ 39 - 14
jp-mobile/pages/service/LyService.vue

@@ -9,7 +9,7 @@
 			</view>
 		</view>
 
-		
+
 		<view class="line-box">
 			<view :style="[{top:CustomBar + 'px'}]">
 				<mescroll-body ref="mescrollRef" @init="mescrollInit" @down="downCallback" :up="upOption"
@@ -37,9 +37,13 @@
 					</view>
 				</mescroll-body>
 			</view>
-			<button class="btn_add"  type="primary" @click="add">新增服务</button>
-			<view style="height: 40rpx;"></view>
+			
+			<!-- <view style="height: 40rpx;"></view> -->
+		</view>
+		<view class="btn_add">
+			<button type="primary" @click="add">新增服务</button>
 		</view>
+
 	</view>
 </template>
 
@@ -61,16 +65,33 @@
 				title: "服务记录",
 				isBack: true, // 是否显示返回按钮
 				bgColor: 'bg-blue', // 背景颜色
-				finish:true,
+				finish: true,
 				curWord: "", //当前搜索关键词
-				range: [
-				          { value: 999, text: "全部" },
-				          { value: 1, text: "反馈大走访" },
-				          { value: 2, text: "正在办理" },
-						  { value: 3, text: "难以化解" },
-						  { value: 4, text: "持续跟踪" },
-						  { value: 5, text: "提请会办" },
-				        ],
+				range: [{
+						value: 999,
+						text: "全部"
+					},
+					{
+						value: 1,
+						text: "反馈大走访"
+					},
+					{
+						value: 2,
+						text: "正在办理"
+					},
+					{
+						value: 3,
+						text: "难以化解"
+					},
+					{
+						value: 4,
+						text: "持续跟踪"
+					},
+					{
+						value: 5,
+						text: "提请会办"
+					},
+				],
 				dataList: [], // 数据列表
 				modalName: null,
 				tablePage: {
@@ -123,9 +144,11 @@
 					this.mescroll.endErr();
 				})
 			},
-			change(val){
+			change(val) {
 				this.dataList = []
-				if(this.curWord == ''){this.curWord = 999}
+				if (this.curWord == '') {
+					this.curWord = 999
+				}
 				this.upCallback(this.tablePage)
 			},
 
@@ -293,6 +316,7 @@
 		padding-right: 20rpx;
 		margin-top: 20rpx;
 		height: 75vh;
+		overflow: auto;
 	}
 
 	.mart-t {
@@ -745,4 +769,5 @@
 		/* 标题文本颜色 */
 		font-weight: bold;
 	}
+
 </style>