Browse Source

修改开门吗展示样式

xielongfei 5 năm trước cách đây
mục cha
commit
ade1a00f35

+ 4 - 1
pages/authentication/selectHouse.vue

@@ -185,6 +185,7 @@
 				this.form.ceng = data.item.name
 				this.ceng = data.item.id
 				this.getLouData(this.name,4,this.ceng,'门牌')
+				
 			},
 			// 房屋号选择确定
 			confirmHome(data) {
@@ -203,7 +204,6 @@
 				this.name = data.item.comtyId
 				uni.setStorageSync('comtyId', this.name)
 				this.getLouData(this.name, 1, '', 'lou')
-
 			},
 			//楼层选择确定
 			confirmLou(data) {
@@ -222,6 +222,7 @@
 				this.form.hoodNum = data.item.name
 				this.hoodNum = data.item.id
 				this.getLouData(this.name, 3,this.hoodNum , '层')
+				
 			},
 			// 发表
 			submit() {
@@ -236,6 +237,8 @@
 					 }).then((res)=>{
 						 if(res.code==0){
 							 uni.setStorageSync('homeId',this.home)
+							 let str=this.form.houseName+this.form.lou+this.form.hoodNum+this.form.ceng+this.form.home
+							 uni.setStorageSync('homeAdress',str)
 							 // 判断认证房屋时  是否已经微信授权登录过了
 							 if (!uni.getStorageSync('createBy')) {
 							 	uni.navigateTo({

+ 1 - 0
pages/visitor/doorCode.vue

@@ -166,6 +166,7 @@
 		font-family: PingFang SC;
 		font-weight: bold;
 		line-height: 110rpx;
+		text-align: center;
 		color: rgba(41, 138, 253, 1);
 		position: absolute;
 		left: 60rpx;

+ 8 - 7
pages/visitor/historyList.vue

@@ -108,8 +108,9 @@
 						if (res.code == 0) {
 							this.total=res.data.total
 					         if(this.data.length>=res.data.total){
-								 
+								 pullScroll.finish();
 							 }else{
+								 pullScroll.success();
 								 let data = res.data.rows
 								 this.data = this.data.concat(data);
 							 }
@@ -121,12 +122,12 @@
 							})
 						}
 					})
-					// 判断数据是否加载完毕
-					if (this.data.length ==this.taotal) {
-						pullScroll.finish();
-					} else {
-						pullScroll.success();
-					}
+					// // 判断数据是否加载完毕
+					// if (this.data.length ==this.taotal) {
+					// 	pullScroll.finish();
+					// } else {
+					// 	pullScroll.success();
+					// }
 				}, 500);
 			}
 			},