Browse Source

代码更新

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

+ 1 - 4
components/linzq-citySelect/linzq-citySelect.vue

@@ -58,6 +58,7 @@
 			<view class="city-div" v-for="(item, index) in searchList" @click="back_city(item)" :key="index">
 				<text class="city">{{ item.areaName }}</text>
 			</view>
+			
 		</scroll-view>
 
 		<!-- 右侧字母 -->
@@ -131,7 +132,6 @@
 				po_tips: '重新定位',
 			}
 		},
-
 		created() {
 			this.getCityData()
 			//获取存储的最近访问
@@ -404,14 +404,11 @@
 		width: 100%;
 		transition: left 0.3s ease;
 	}
-
 	.hide {
 		left: 100%;
 		width: 100%;
 		transition: left 0.3s ease;
 	}
-
-
 	.title {
 		font-size: 30upx;
 		color: white;

+ 1 - 1
pages/authentication/checkIng.vue

@@ -19,7 +19,7 @@
 		},
 		onUnload() {
 			uni.switchTab({
-				url: '../mine/mine',
+				url: '../mine/myHouse',
 			})
 		},
 	}

+ 0 - 1
pages/authentication/city.vue

@@ -18,7 +18,6 @@
 			
 		},
 		methods: {
-		
 			//选择城市
 			back_city(data) {
 				uni.navigateTo({

+ 7 - 1
pages/circle/circles.vue

@@ -31,7 +31,7 @@
 							<image :src="img" style="width: 246rpx;height: 420rpx;" v-for="(img,index2) in item.photosUrlList" :key="index2" mode="aspectFill"  @tap="previewImage(item.photosUrlList,index2)"></image>
 						</view> -->
 						<view class="img"  style="display: flex;flex-wrap: wrap;" v-show="item.photosUrlList.length>0" >
-							<image :src="img"  @tap="previewImage(item.photosUrlList,index2)" mode="aspectFill" style="width:180rpx;height:180rpx;margin-right: 10rpx;margin-bottom: 10rpx;" v-for="(img,index2) in item.photosUrlList"
+							<image :src="img"  @tap="previewImage(item.photosUrlList,index2)" mode="aspectFill" style="width:180rpx;height:180rpx;margin-bottom: 10rpx;" v-for="(img,index2) in item.photosUrlList"
 							 :key="index2"></image>
 						</view>
 						<!-- 点赞 -->
@@ -410,6 +410,12 @@
 </script>
 
 <style lang="scss">
+	.img image{
+		padding-right: 10rpx;
+	}
+	.img image:nth-child(3n){
+		padding-right: 0rpx;
+	}
 	.popupClose {
 		width: 44rpx;
 		height: 44rpx;

+ 0 - 7
pages/complain/evaluateCompalin.vue

@@ -28,13 +28,6 @@
 					<textarea placeholder="请填写评价" style="width: 95%;height: 96%;margin-left: 10rpx;margin-top: 10rpx;" v-model="textRea"
 					 cursor-spacing="120" maxlength="300"></textarea>
 				</view>
-				<!-- 图片盒字 -->
-				<!-- <view style="width:646rpx;height: 114rpx;position: absolute;left: 24rpx;bottom: 40rpx;display: flex;">
-					<view style="height: 114rpx;margin-right: 10rpx;display: flex;justify-content: space-between;" v-show="imgData" >
-						<image style="width: 114rpx;height: 114rpx;margin-right: 10rpx;" :src="item.path" v-for="(item,index) in imgData" :key="index"></image>
-					</view>
-					<image src="../../static/circle_image@2x.png" style="width: 114rpx;height: 114rpx;" @tap="uploadImg(item)"></image>
-				</view> -->
 			</view>
 		</view>
 		<button class="submit" :class="{active:starNum && textRea}" @tap="submit">提交</button>

+ 0 - 24
pages/complain/index.vue

@@ -95,30 +95,6 @@
 					this.loadData(pullScroll);
 				}, 200);
 			},
-			// 
-			downData(pullScroll){
-				this.pageNum = pullScroll.page
-				setTimeout(() => {
-					this.http.httpRequest('/wxapplet/owneradvice/list', 'get', {
-						pageNum: pullScroll.page,
-						pageSize: this.pageSize,
-						userId: uni.getStorageSync("userId")
-					}).then((res) => {
-						if (res.code == 0) {
-							this.data = res.data.rows
-							pullScroll.finish();
-						} else {
-							pullScroll.finish();
-							uni.showToast({
-								title: res.msg,
-								"icon": 'none'
-							})
-						}
-					}).catch(()=>{
-						pullScroll.finish();
-					})
-				}, 500);
-			},
 			//获取加载数据
 			loadData(pullScroll) {
 				this.pageNum = pullScroll.page

+ 0 - 5
pages/family/family.vue

@@ -85,14 +85,9 @@
 				this.http.httpRequest('/wxapplet/owner/peolepass/locklist', 'get', {
 					cardNo: uni.getStorageSync('idNumber')
 				}, true).then((res) => {
-					console.log(res)
 					if (res.code == 0) {
 						// 判断返回数据是否为空
 						if(res.data.rows.length==0){
-							// uni.showToast({
-							// 	title:'暂无数据',
-							// 	'icon':'none'
-							// })
 							this.visible=true
 						}else{
 							this.visible=false

+ 1 - 1
pages/index/detail.vue

@@ -21,7 +21,6 @@
 					<text style="margin-top: 20rpx;">
 						{{data.content}}
 					</text>
-
 				</view>
 			</view>
 			<view class="company">青海旺业物业有限公司</view>
@@ -55,6 +54,7 @@
 			this.getdetail()
 		},
 		methods: {
+			// 获取详情信息
 			getdetail() {
 				uni.showLoading({
 					mask:true,

+ 1 - 2
pages/mine/mine.vue

@@ -105,7 +105,6 @@
 			this.status=uni.getStorageSync('houseStatus')
 		},
 		onLoad() {
-			
 			this.status=uni.getStorageSync('houseStatus')
 		},
 		methods: {
@@ -131,10 +130,10 @@
 					pageNum: 1,
 					pageSize: 10
 				}, true).then((res) => {
-					uni.hideLoading()
 					console.log(res)
 					if (res.code == 0) {
 						this.carNum = res.data.rows.length
+						uni.hideLoading()
 					} else {
 						uni.hideLoading()
 					}

+ 0 - 10
pages/mine/myBike.vue

@@ -13,11 +13,6 @@
 						
 						<view class="num">{{item.carNo}}</view>
 					</view>
-					<!-- <view class="right" @tap="seeMore(index)">
-						<view class="tong">通行记录</view>
-						<image src="../../static/icon_combo_nor@2x.png" style="width: 20rpx;height: 12rpx;margin-top: 15rpx;" v-show="!item.show"></image>
-						<image src="../../static/icon_combo_set@2x.png" style="width: 20rpx;height: 12rpx;margin-top: 15rpx;" v-show="item.show"></image>
-					</view> -->
 				</view>
 			</view>
 		</scroll>
@@ -89,11 +84,6 @@
 					// })
 				}, 500);
 			},
-		
-			// 查看或隐藏记录
-			seeMore(index) {
-				this.data[index].show = !this.data[index].show
-			},
 			// 绑定新的车辆
 			addCar() {
 				uni.navigateTo({

+ 0 - 1
pages/mine/myInfo.vue

@@ -81,7 +81,6 @@
 				},true).then((res)=>{
 					console.log(res)
 					if(res.code==0){
-						
 						// 判断当前返回值是否是网络路径图片
 						if(res.data.avatar.indexOf('https://')==-1){
 							this.headPhoto=this.getBase64ImageUrl(res.data.avatar)

+ 1 - 7
pages/onlineRpair/index.vue

@@ -43,7 +43,6 @@
 				</view>
 			</view>
 		</scroll>
-
 		<!-- 底部按钮 -->
 		<view class="btnBox" @tap="myRepairs">
 			我要报修
@@ -137,12 +136,7 @@
 					}).catch(() => {
 						pullScroll.finish();
 					})
-					// // 判断数据是否加载完毕
-					// if (this.data.length >=this.total) {
-					// 	pullScroll.finish();
-					// } else {
-					// 	pullScroll.success();
-					// }
+				
 				}, 500);
 			},
 			// 我的评价

+ 0 - 8
pages/onlineRpair/repairsEvaluate.vue

@@ -26,14 +26,6 @@
 				<view class="textContent">
 					<textarea placeholder="请填写评价" style="width: 95%;height: 96%;margin-left: 10rpx;margin-top: 10rpx;" v-model="textRea" cursor-spacing="120" maxlength="300"></textarea>
 				</view>
-				<!-- 图片盒字 -->
-				<!-- <view style="width:646rpx;height: 114rpx;position: absolute;left: 24rpx;bottom: 40rpx;display: flex;">
-					
-					<image style="width: 114rpx;height: 114rpx;margin-right: 10rpx;" :src="item" v-for="(item,index) in imgData" :key="index"></image>
-					<image src="../../static/circle_image@2x.png" style="width: 114rpx;height: 114rpx;" @tap="uploadImg(item)"></image>
-					
-
-				</view> -->
 			</view>
 		</view>
 		<button class="submit" :class="{active:starNum && textRea}" @tap="submit" >提交</button>

+ 0 - 3
pages/openDoor/openDoorList.vue

@@ -22,11 +22,8 @@
 							解锁时间:{{item.createTime}}
 						</view>
 					</view>
-
 				</view>
-			
 			<!-- </view> -->
-			
 		</view>
 
 	</view>

+ 1 - 0
pages/register/register.vue

@@ -112,6 +112,7 @@
 					url: '/pages/login/login'
 				})
 			},
+		
 			// 获取验证码
 			getCode() {
 				if (this.phoneLength != 11) {

+ 0 - 21
pages/visitor/historyList.vue

@@ -51,27 +51,6 @@
 							</view>
 							<view class="right">{{item.passTime}}</view>
 						</view>
-						<!-- <view style="width: 100%;display: flex;justify-content: space-between;margin-top: 24rpx;">
-							<view class="left">
-								一键解锁记录:
-							</view>
-							<view class="right" style="display: flex;flex-wrap: wrap;width: 306rpx;">2020-02-05 17:10:15解锁 2020-02-05
-								17:10:15解锁</view>
-						</view> -->
-						<!-- <view style="width: 100%;display: flex;justify-content: space-between;margin-top: 24rpx;">
-							<view class="left">
-								二维码密码:
-							</view>
-							<view class="right">EEEEEE</view>
-						</view> -->
-						<!-- 	<view style="width: 100%;display: flex;justify-content: space-between;margin-top: 24rpx;">
-							<view class="left">
-								二维码:
-							</view>
-							<view class="right">
-								<image src="../../static/complain_icon_complain@2x.png" style="width: 120rpx;height: 120rpx;"></image>
-							</view>
-						</view> -->
 					</view>
 				</view>
 			</scroll>