zhnghongrui 1 éve
szülő
commit
47d37d1dfc

+ 0 - 2
components/mypopup/mypopup.vue

@@ -40,9 +40,7 @@
 		},
 		watch: {
 			oldshow: function(newVal, oldVal) {
-				// console.log(newVal);
 				this.show = newVal;
-				console.log(newVal)
 			}
 		},
 		data() {

+ 0 - 1
components/selectPicker/select_picker.vue

@@ -120,7 +120,6 @@
 				this.$emit("close");
 			},
 			confirm() {
-				// console.log(this.mapSelectIndex)
 			}
 		}
 	}

+ 0 - 36
pages/TopPipeWork/TopPipeWork.vue

@@ -305,7 +305,6 @@
 		},
 		created() {
 			this.time = this.traversalTime(new Date().getTime()) //在data里定义变量-nowTime
-			console.log(this.time)
 		},
 		onLoad(options) {
 			if ('params' in options) {
@@ -378,7 +377,6 @@
 					success: (res) => {
 						if (res.confirm) {
 							this.imgArr.splice(index, 1)
-							console.log('this.imgarr', this.imgArr)
 							if (this.imgArr.length <= 0) {
 								this.photo = true;
 							}
@@ -392,7 +390,6 @@
 					title: '上传',
 					itemList: ['图片', '视频'],
 					success: (res) => {
-						console.log(res)
 						if (res.tapIndex == 0) {
 							this.chooseimage()
 						} else {
@@ -404,7 +401,6 @@
 			chooseimage() {
 
 				let _this = this;
-				console.log('图片', _this.headers)
 				uni.chooseImage({
 					sizeType: ['album', 'camera'],
 					success(resp) {
@@ -418,29 +414,19 @@
 
 								success: res => {
 									// 判断是否json字符串,将其转为json格式
-									console.log("结果", res)
-									// let data = _this.$u.test.jsonString(res
-									// 	.data) ? JSON.parse(res.data) : res.data;
 									let data = JSON.parse(res.data);
 									if (![200].includes(data.code)) {
-										// this.uploadError(index, data);
 										_this.$modal.msg(data.msg)
 									} else {
 										if (_this.progress === 100) {
-											console.log('_this.progress', _this.progress)
-											//console.log('data----', data)data
-											console.log('res--', res)
 											_this.imgArr.push(data.data.url)
-											console.log('imgArr', _this.imgArr)
 											_this.$modal.msg('上传成功!')
 											_this.photo = false;
 										}
 									}
 								},
 								fail: e => {
-									console.log(e)
 									_this.$modal.msg('上传失败!')
-									//_this.uploadError(index, e);
 								},
 								complete: res => {
 									uni.hideLoading();
@@ -450,17 +436,13 @@
 							});
 							task.onProgressUpdate(res => {
 								_this.progress = res.progress;
-								console.log('onProgressUpdate', res)
-								console.log('task.onProgressUpdate', _this.progress)
 								uni.showLoading({
 									title: '上传中'
 								})
 								if (_this.progress != 100) {
 									_this.loading = false
-									console.log('_this.loading false', _this.loading)
 								} else {
 									_this.loading = true
-									console.log('_this.loading true', _this.loading)
 								}
 							});
 
@@ -472,7 +454,6 @@
 
 			choosevideo() {
 				let _this = this;
-				console.log('视频')
 				uni.chooseVideo({
 					sourceType: ['album', 'camera'],
 					maxDuration: 30,
@@ -491,9 +472,7 @@
 								} else {
 									//上传成功
 									if (_this.progress === 100) {
-										console.log('_this.progress', _this.progress)
 										_this.imgArr.push(data.data.url)
-										console.log('imgArr', _this.imgArr)
 										_this.$modal.msg('上传成功!')
 										_this.photo = false;
 									}
@@ -510,16 +489,13 @@
 						});
 						task.onProgressUpdate(res => {
 							_this.progress = res.progress;
-							console.log('onProgressUpdate', res)
 							uni.showLoading({
 								title: '上传中'
 							})
 							if (_this.progress != 100) {
 								_this.loading = false
-								console.log('_this.loading false', _this.loading)
 							} else {
 								_this.loading = true
-								console.log('_this.loading true', _this.loading)
 							}
 						});
 
@@ -540,10 +516,7 @@
 			cancel_loding() {
 				let _this = this;
 				_this.show_loding = false;
-				console.log("复制")
 				if (!_this.isEmpty(_this.fileUrl)) {
-					console.log(_this.fileUrl)
-					console.log(_this.fileName)
 					uni.setClipboardData({
 						data: _this.fileUrl,
 						success() {
@@ -553,7 +526,6 @@
 							});
 						},
 						fail(e) {
-							console.log("失败", e)
 							uni.showToast({
 								title: '复制失败',
 								icon: 'none'
@@ -566,7 +538,6 @@
 			//确定按钮
 			confirm_loding() {
 				this.show_loding = false;
-				console.log("下载")
 				this.download(this.fileUrl, this.fileName);
 
 
@@ -587,33 +558,26 @@
 			download(url, name) {
 
 				let savePath = this.getDownLoadFilePath();
-				console.log('点击下载', url);
-				console.log('点击下载333', savePath);
 				//var savePath = uni.env.USER_DATA_PATH + '/savePath'
 
 				uni.downloadFile({
 					url: url,
 					success: response => {
 						if (response.statusCode === 200) {
-							console.log("数据", response)
 							uni.getFileSystemManager().saveFile({
 								tempFilePath: response.tempFilePath,
 								filePath: `${savePath}/${name}`,
 								success: (resData) => {
-									console.log('保存路径', resData.savedFilePath)
-									console.log("dd", resData)
 									uni.showToast({
 										title: '下载成功'
 									})
 								},
 								fail: error => {
-									console.log('error: ', error)
 								}
 							})
 						}
 					},
 					fail: error => {
-						console.log("ddd", error)
 					}
 
 				})

+ 0 - 14
pages/bottom_leg/bottom_leg.vue

@@ -445,7 +445,6 @@
 							success: (res) => {
 								if (res.confirm) {
 									this.imgArr1.splice(index, 1)
-									console.log('this.imgArr1', this.imgArr1)
 								}
 							}
 						})
@@ -457,7 +456,6 @@
 							success: (res) => {
 								if (res.confirm) {
 									this.imgArr2.splice(index, 1)
-									console.log('this.imgArr2', this.imgArr2)
 								}
 							}
 						})
@@ -469,7 +467,6 @@
 							success: (res) => {
 								if (res.confirm) {
 									this.imgArr3.splice(index, 1)
-									console.log('this.imgArr3', this.imgArr3)
 								}
 							}
 						})
@@ -483,7 +480,6 @@
 						title: '上传',
 						itemList: ['图片', '视频'],
 						success: (res) => {
-							console.log(res)
 							if (res.tapIndex == 0) {
 								this.chooseimage()
 							} else {
@@ -495,7 +491,6 @@
 				chooseimage(type) {
 
 					let _this = this;
-					console.log('图片', _this.headers)
 					uni.chooseImage({
 						sizeType: ['album', 'camera'],
 						success(resp) {
@@ -509,7 +504,6 @@
 
 									success: res => {
 										// 判断是否json字符串,将其转为json格式
-										console.log("结果", res)
 										let data = JSON.parse(res.data);
 										if (![200].includes(data.code)) {
 											_this.$modal.msg(data.msg)
@@ -517,20 +511,16 @@
 											if (_this.progress === 100) {
 												if (type == 1) {
 													_this.imgArr1.push(data.data.url)
-													console.log('imgArr1', _this.imgArr1)
 												} else if (type == 2) {
 													_this.imgArr2.push(data.data.url)
-													console.log('imgArr2', _this.imgArr2)
 												} else {
 													_this.imgArr3.push(data.data.url)
-													console.log('imgArr3', _this.imgArr3)
 												}
 												_this.$modal.msg('上传成功!')
 											}
 										}
 									},
 									fail: e => {
-										console.log(e)
 										_this.$modal.msg('上传失败!')
 									},
 									complete: res => {
@@ -540,17 +530,13 @@
 								});
 								task.onProgressUpdate(res => {
 									_this.progress = res.progress;
-									console.log('onProgressUpdate', res)
-									console.log('task.onProgressUpdate', _this.progress)
 									uni.showLoading({
 										title: '上传中'
 									})
 									if (_this.progress != 100) {
 										_this.loading = false
-										console.log('_this.loading false', _this.loading)
 									} else {
 										_this.loading = true
-										console.log('_this.loading true', _this.loading)
 									}
 								});
 

+ 5 - 27
pages/dangerous/dangerous.vue

@@ -432,10 +432,7 @@
 			cancel_loding() {
 				let _this = this;
 				_this.show_loding = false;
-				console.log("复制")
 				if (!_this.isEmpty(_this.fileUrl)) {
-					console.log(_this.fileUrl)
-					console.log(_this.fileName)
 					uni.setClipboardData({
 						data: _this.fileUrl,
 						success() {
@@ -445,7 +442,6 @@
 							});
 						},
 						fail(e) {
-							console.log("失败", e)
 							uni.showToast({
 								title: '复制失败',
 								icon: 'none'
@@ -474,8 +470,6 @@
 			},
 			download(url, name) {
 				let savePath = this.getDownLoadFilePath();
-				console.log('点击下载', url);
-				console.log('点击下载333', savePath);
 				//var savePath = uni.env.USER_DATA_PATH + '/savePath'
 				uni.downloadFile({
 					url: url,
@@ -485,13 +479,11 @@
 								tempFilePath: response.tempFilePath,
 								filePath: `${savePath}/${name}`,
 								success: (resData) => {
-									console.log('保存路径', resData.savedFilePath)
 									uni.showToast({
 										title: '下载成功'
 									})
 								},
 								fail: error => {
-									console.log('error: ', error)
 								}
 							})
 						}
@@ -570,7 +562,6 @@
 					this.projectObj.casingPresent = "0";
 					this.bushingText = "否";
 				}
-				console.log("bush:" + this.isBushing + this.bushingText)
 			},
 			switchChangeSupport(e) {
 				this.isNeedSupport = e.detail.value;
@@ -581,7 +572,6 @@
 					this.projectObj.needSupport = "0";
 					this.needSupportText = "否";
 				}
-				console.log("bush:" + this.isNeedSupport + this.needSupportText)
 			},
 			chooseFile() {
 				if (this.isEmpty(this.projectObj.id)) {
@@ -589,7 +579,6 @@
 					return;
 				}
 				let _this = this;
-				console.log('文件' + _this.headers);
 				uni.chooseMessageFile({
 					// sizeType: ['album', 'camera'],
 					type: 'all',
@@ -605,17 +594,13 @@
 
 								success: res => {
 									// 判断是否json字符串,将其转为json格式
-									// console.log("结果", res)
 									let data = JSON.parse(res.data);
 
 									if (![200].includes(data.code)) {
 										_this.$modal.msg(data.msg)
 									} else {
 										if (_this.progress === 100) {
-											console.log(
-												'_this.progress',
-												_this.progress)
-											console.log('res--', res)
+										
 											_this.fileArr.push({
 												'fileName': item
 													.name,
@@ -627,7 +612,6 @@
 									}
 								},
 								fail: e => {
-									console.log(e)
 									_this.$modal.msg('上传失败!')
 									//_this.uploadError(index, e);
 								},
@@ -639,20 +623,16 @@
 							});
 							task.onProgressUpdate(res => {
 								_this.progress = res.progress;
-								console.log('onProgressUpdate', res)
-								console.log('task.onProgressUpdate', _this
-									.progress)
+								
 								uni.showLoading({
 									title: '上传中'
 								})
 								if (_this.progress != 100) {
 									_this.loading = false
-									console.log('_this.loading false',
-										_this.loading)
+								
 								} else {
 									_this.loading = true
-									console.log('_this.loading true', _this
-										.loading)
+									
 								}
 							});
 
@@ -663,8 +643,7 @@
 			},
 			isShowRemoveFile(item) {
 				var isShow = item.createBy == this.$user.state.name;
-				console.log("isShow:" + isShow + "_name:" + this.$user.state.name + "_createBy:" +
-					item.createBy)
+				
 				return isShow;
 			},
 			removeFile(index) {
@@ -674,7 +653,6 @@
 					success: (res) => {
 						if (res.confirm) {
 							this.fileArr.splice(index, 1)
-							console.log('this.fileArr', this.fileArr)
 						}
 					}
 				})

+ 2 - 39
pages/enginproject/enginproject.vue

@@ -344,7 +344,6 @@
 
 			created() {
 				this.time = this.traversalTime(new Date().getTime()) //在data里定义变量-nowTime
-				console.log(this.time)
 			},
 
 			onLoad(options) {
@@ -438,7 +437,6 @@
 						}
 						this.open = true;
 						//请求
-						console.log("sss", this.objValue.value)
 						getengineeringNameList(this.projectType.dictValue, "1", this.objValue.value).then(response => {
 
 							this.selectList = response.data;
@@ -474,7 +472,6 @@
 						success: (res) => {
 							if (res.confirm) {
 								this.imgArr.splice(index, 1)
-								console.log('this.imgarr', this.imgArr)
 								// if (this.imgArr.length <= 0) {
 								// 	this.photo = true;
 								// }
@@ -488,7 +485,6 @@
 						title: '上传',
 						itemList: ['图片', '视频'],
 						success: (res) => {
-							console.log(res)
 							if (res.tapIndex == 0) {
 								this.chooseimage()
 							} else {
@@ -500,7 +496,6 @@
 				chooseimage() {
 
 					let _this = this;
-					console.log('图片', _this.headers)
 					uni.chooseImage({
 						sizeType: ['album', 'camera'],
 						success(resp) {
@@ -514,7 +509,6 @@
 
 									success: res => {
 										// 判断是否json字符串,将其转为json格式
-										console.log("结果", res)
 										// let data = _this.$u.test.jsonString(res
 										// 	.data) ? JSON.parse(res.data) : res.data;
 										let data = JSON.parse(res.data);
@@ -523,18 +517,13 @@
 											_this.$modal.msg(data.msg)
 										} else {
 											if (_this.progress === 100) {
-												console.log('_this.progress', _this.progress)
-												//console.log('data----', data)data
-												console.log('res--', res)
 												_this.imgArr.push(data.data.url)
-												console.log('imgArr', _this.imgArr)
 												_this.$modal.msg('上传成功!')
 												//_this.photo = false;
 											}
 										}
 									},
 									fail: e => {
-										console.log(e)
 										_this.$modal.msg('上传失败!')
 										//_this.uploadError(index, e);
 									},
@@ -546,17 +535,13 @@
 								});
 								task.onProgressUpdate(res => {
 									_this.progress = res.progress;
-									console.log('onProgressUpdate', res)
-									console.log('task.onProgressUpdate', _this.progress)
 									uni.showLoading({
 										title: '上传中'
 									})
 									if (_this.progress != 100) {
 										_this.loading = false
-										console.log('_this.loading false', _this.loading)
 									} else {
 										_this.loading = true
-										console.log('_this.loading true', _this.loading)
 									}
 								});
 
@@ -568,7 +553,6 @@
 
 				choosevideo() {
 					let _this = this;
-					console.log('视频')
 					uni.chooseVideo({
 						sourceType: ['album', 'camera'],
 						maxDuration: 30,
@@ -587,9 +571,7 @@
 									} else {
 										//上传成功
 										if (_this.progress === 100) {
-											console.log('_this.progress', _this.progress)
 											_this.imgArr.push(data.data.url)
-											console.log('imgArr', _this.imgArr)
 											_this.$modal.msg('上传成功!')
 											//_this.photo = false;
 										}
@@ -606,16 +588,13 @@
 							});
 							task.onProgressUpdate(res => {
 								_this.progress = res.progress;
-								console.log('onProgressUpdate', res)
 								uni.showLoading({
 									title: '上传中'
 								})
 								if (_this.progress != 100) {
 									_this.loadingFile = false
-									console.log('_this.loading false', _this.loading)
 								} else {
 									_this.loadingFile = true
-									console.log('_this.loading true', _this.loading)
 								}
 							});
 
@@ -669,7 +648,6 @@
 						})
 						getEngineeringDetails(item.id).then(response => {
 							uni.hideLoading();
-							console.log("res", response)
 							//	this.enginList = response.data
 							this.jlPhoneValue = response.data.supervisionPhone; //监理电话
 							this.jlfzrValue = response.data.supervisionHead; //监理负责人
@@ -688,7 +666,6 @@
 								if (list.picUrl.substring(list.picUrl.length - 3) == 'png' || list.picUrl
 									.substring(list.picUrl.length - 3) == 'jpg' || list.picUrl.substring(list
 										.picUrl.length - 4) == 'jpeg') {
-									console.log("ressss", list.picUrl)
 									this.fileImageArr.push(list.picUrl)
 								}
 
@@ -722,10 +699,7 @@
 				cancel_loding() {
 					let _this = this;
 					_this.show_loding = false;
-					console.log("复制")
 					if (!_this.isEmpty(_this.fileUrl)) {
-						console.log(_this.fileUrl)
-						console.log(_this.fileName)
 						uni.setClipboardData({
 							data: _this.fileUrl,
 							success() {
@@ -735,7 +709,6 @@
 								});
 							},
 							fail(e) {
-								console.log("失败", e)
 								uni.showToast({
 									title: '复制失败',
 									icon: 'none'
@@ -748,7 +721,6 @@
 				//确定按钮
 				confirm_loding() {
 					this.show_loding = false;
-					console.log("下载")
 					this.download(this.fileUrl, this.fileName);
 
 
@@ -769,26 +741,20 @@
 				download(url, name) {
 
 					let savePath = this.getDownLoadFilePath();
-					console.log('点击下载', url);
-					console.log('点击下载333', savePath);
 					//var savePath = uni.env.USER_DATA_PATH + '/savePath'
 					uni.downloadFile({
 						url: url,
 						success: response => {
 							if (response.statusCode === 200) {
-								console.log("数据", response)
 								uni.getFileSystemManager().saveFile({
 									tempFilePath: response.tempFilePath,
 									filePath: `${savePath}/${name}`,
 									success: (resData) => {
-										console.log('保存路径', resData.savedFilePath)
-										console.log("dd", resData)
 										uni.showToast({
 											title: '下载成功'
 										})
 									},
 									fail: error => {
-										console.log('error: ', error)
 									}
 								})
 							}
@@ -810,7 +776,6 @@
 					}
 					getEngineeringHistoryList(this.enginId, this.objValue.value).then(response => {
 
-						console.log("历史", response)
 						this.historyList = response.data
 						if (response.data.zEngineeringNodeBo.zEngineeringInfoBoList != null) {
 							this.$refs.refShare.handleShowShare();
@@ -823,7 +788,6 @@
 
 				submit() {
 
-					console.log("文件", this.fileArr)
 
 					if (this.isEmpty(this.projectType.dictValue)) {
 						this.$modal.msg('请选择工程类型')
@@ -836,7 +800,6 @@
 
 
 					try {
-						//console.log("刚开始", this.czggslList);
 						this.czggslList.forEach((list) => {
 							if (this.isEmpty(list.cz.id)) {
 								this.$modal.msg('材质不能为空')
@@ -879,9 +842,8 @@
 								specifications: list.gg.id,
 								number: list.sl
 							})
-						}),
+						})
 
-						console.log("数据", this.zEngineeringMaterialBo)
 
 					let param = {
 						//files: this.fileArr, //文件
@@ -1007,6 +969,7 @@
 			line-height: 20px;
 		}
 
+
 		.tj-btn {
 			height: 69rpx;
 			background: #3184f0;

+ 0 - 33
pages/infrastructure/infrastructure.vue

@@ -310,7 +310,6 @@
 		},
 		created() {
 			this.time = this.traversalTime(new Date().getTime()) //在data里定义变量-nowTime
-			console.log(this.time)
 		},
 		onLoad(options) {
 			if ('params' in options) {
@@ -386,7 +385,6 @@
 					success: (res) => {
 						if (res.confirm) {
 							this.imgArr.splice(index, 1)
-							console.log('this.imgarr', this.imgArr)
 							if (this.imgArr.length <= 0) {
 								this.photo = true;
 							}
@@ -400,7 +398,6 @@
 					title: '上传',
 					itemList: ['图片', '视频'],
 					success: (res) => {
-						console.log(res)
 						if (res.tapIndex == 0) {
 							this.chooseimage()
 						} else {
@@ -412,7 +409,6 @@
 			chooseimage() {
 
 				let _this = this;
-				console.log('图片', _this.headers)
 				uni.chooseImage({
 					sizeType: ['album', 'camera'],
 					success(resp) {
@@ -426,7 +422,6 @@
 
 								success: res => {
 									// 判断是否json字符串,将其转为json格式
-									console.log("结果", res)
 									// let data = _this.$u.test.jsonString(res
 									// 	.data) ? JSON.parse(res.data) : res.data;
 									let data = JSON.parse(res.data);
@@ -435,18 +430,13 @@
 										_this.$modal.msg(data.msg)
 									} else {
 										if (_this.progress === 100) {
-											console.log('_this.progress', _this.progress)
-											//console.log('data----', data)data
-											console.log('res--', res)
 											_this.imgArr.push(data.data.url)
-											console.log('imgArr', _this.imgArr)
 											_this.$modal.msg('上传成功!')
 											_this.photo = false;
 										}
 									}
 								},
 								fail: e => {
-									console.log(e)
 									_this.$modal.msg('上传失败!')
 									//_this.uploadError(index, e);
 								},
@@ -458,17 +448,13 @@
 							});
 							task.onProgressUpdate(res => {
 								_this.progress = res.progress;
-								console.log('onProgressUpdate', res)
-								console.log('task.onProgressUpdate', _this.progress)
 								uni.showLoading({
 									title: '上传中'
 								})
 								if (_this.progress != 100) {
 									_this.loading = false
-									console.log('_this.loading false', _this.loading)
 								} else {
 									_this.loading = true
-									console.log('_this.loading true', _this.loading)
 								}
 							});
 
@@ -480,7 +466,6 @@
 
 			choosevideo() {
 				let _this = this;
-				console.log('视频')
 				uni.chooseVideo({
 					sourceType: ['album', 'camera'],
 					maxDuration: 30,
@@ -499,9 +484,7 @@
 								} else {
 									//上传成功
 									if (_this.progress === 100) {
-										console.log('_this.progress', _this.progress)
 										_this.imgArr.push(data.data.url)
-										console.log('imgArr', _this.imgArr)
 										_this.$modal.msg('上传成功!')
 										_this.photo = false;
 									}
@@ -518,16 +501,13 @@
 						});
 						task.onProgressUpdate(res => {
 							_this.progress = res.progress;
-							console.log('onProgressUpdate', res)
 							uni.showLoading({
 								title: '上传中'
 							})
 							if (_this.progress != 100) {
 								_this.loading = false
-								console.log('_this.loading false', _this.loading)
 							} else {
 								_this.loading = true
-								console.log('_this.loading true', _this.loading)
 							}
 						});
 
@@ -548,10 +528,7 @@
 			cancel_loding() {
 				let _this = this;
 				_this.show_loding = false;
-				console.log("复制")
 				if (!_this.isEmpty(_this.fileUrl)) {
-					console.log(_this.fileUrl)
-					console.log(_this.fileName)
 					uni.setClipboardData({
 						data: _this.fileUrl,
 						success() {
@@ -561,7 +538,6 @@
 							});
 						},
 						fail(e) {
-							console.log("失败", e)
 							uni.showToast({
 								title: '复制失败',
 								icon: 'none'
@@ -574,7 +550,6 @@
 			//确定按钮
 			confirm_loding() {
 				this.show_loding = false;
-				console.log("下载")
 				this.download(this.fileUrl, this.fileName);
 
 
@@ -595,33 +570,25 @@
 			download(url, name) {
 
 				let savePath = this.getDownLoadFilePath();
-				console.log('点击下载', url);
-				console.log('点击下载333', savePath);
-				//var savePath = uni.env.USER_DATA_PATH + '/savePath'
 
 				uni.downloadFile({
 					url: url,
 					success: response => {
 						if (response.statusCode === 200) {
-							console.log("数据", response)
 							uni.getFileSystemManager().saveFile({
 								tempFilePath: response.tempFilePath,
 								filePath: `${savePath}/${name}`,
 								success: (resData) => {
-									console.log('保存路径', resData.savedFilePath)
-									console.log("dd", resData)
 									uni.showToast({
 										title: '下载成功'
 									})
 								},
 								fail: error => {
-									console.log('error: ', error)
 								}
 							})
 						}
 					},
 					fail: error => {
-						console.log("ddd", error)
 					}
 
 				})

+ 0 - 1
pages/login.vue

@@ -69,7 +69,6 @@
 			// 获取图形验证码
 			getCode() {
 				getCodeImg().then(res => {
-					console.log(res)
 					this.captchaEnabled = res.data.captchaEnabled === undefined ? true : res.data.captchaEnabled
 					if (this.captchaEnabled) {
 						this.codeUrl = 'data:image/gif;base64,' + res.data.img

+ 1 - 38
pages/municipal/municipal.vue

@@ -343,7 +343,6 @@
 
 			created() {
 				this.time = this.traversalTime(new Date().getTime()) //在data里定义变量-nowTime
-				console.log(this.time)
 			},
 
 			onLoad(options) {
@@ -473,7 +472,6 @@
 						success: (res) => {
 							if (res.confirm) {
 								this.imgArr.splice(index, 1)
-								console.log('this.imgarr', this.imgArr)
 								// if (this.imgArr.length <= 0) {
 								// 	this.photo = true;
 								// }
@@ -487,7 +485,6 @@
 						title: '上传',
 						itemList: ['图片', '视频'],
 						success: (res) => {
-							console.log(res)
 							if (res.tapIndex == 0) {
 								this.chooseimage()
 							} else {
@@ -499,7 +496,6 @@
 				chooseimage() {
 
 					let _this = this;
-					console.log('图片', _this.headers)
 					uni.chooseImage({
 						sizeType: ['album', 'camera'],
 						success(resp) {
@@ -513,7 +509,6 @@
 
 									success: res => {
 										// 判断是否json字符串,将其转为json格式
-										console.log("结果", res)
 										// let data = _this.$u.test.jsonString(res
 										// 	.data) ? JSON.parse(res.data) : res.data;
 										let data = JSON.parse(res.data);
@@ -522,18 +517,13 @@
 											_this.$modal.msg(data.msg)
 										} else {
 											if (_this.progress === 100) {
-												console.log('_this.progress', _this.progress)
-												//console.log('data----', data)data
-												console.log('res--', res)
 												_this.imgArr.push(data.data.url)
-												console.log('imgArr', _this.imgArr)
 												_this.$modal.msg('上传成功!')
 												//_this.photo = false;
 											}
 										}
 									},
 									fail: e => {
-										console.log(e)
 										_this.$modal.msg('上传失败!')
 										//_this.uploadError(index, e);
 									},
@@ -545,17 +535,13 @@
 								});
 								task.onProgressUpdate(res => {
 									_this.progress = res.progress;
-									console.log('onProgressUpdate', res)
-									console.log('task.onProgressUpdate', _this.progress)
 									uni.showLoading({
 										title: '上传中'
 									})
 									if (_this.progress != 100) {
 										_this.loading = false
-										console.log('_this.loading false', _this.loading)
 									} else {
 										_this.loading = true
-										console.log('_this.loading true', _this.loading)
 									}
 								});
 
@@ -567,7 +553,6 @@
 
 				choosevideo() {
 					let _this = this;
-					console.log('视频')
 					uni.chooseVideo({
 						sourceType: ['album', 'camera'],
 						maxDuration: 30,
@@ -586,9 +571,7 @@
 									} else {
 										//上传成功
 										if (_this.progress === 100) {
-											console.log('_this.progress', _this.progress)
 											_this.imgArr.push(data.data.url)
-											console.log('imgArr', _this.imgArr)
 											_this.$modal.msg('上传成功!')
 											//_this.photo = false;
 										}
@@ -605,16 +588,13 @@
 							});
 							task.onProgressUpdate(res => {
 								_this.progress = res.progress;
-								console.log('onProgressUpdate', res)
 								uni.showLoading({
 									title: '上传中'
 								})
 								if (_this.progress != 100) {
 									_this.loadingFile = false
-									console.log('_this.loading false', _this.loading)
 								} else {
 									_this.loadingFile = true
-									console.log('_this.loading true', _this.loading)
 								}
 							});
 
@@ -668,7 +648,6 @@
 						})
 						getEngineeringDetails(item.id).then(response => {
 							uni.hideLoading();
-							console.log("res", response)
 							//	this.enginList = response.data
 							this.jlPhoneValue = response.data.supervisionPhone; //监理电话
 							this.jlfzrValue = response.data.supervisionHead; //监理负责人
@@ -720,10 +699,7 @@
 				cancel_loding() {
 					let _this = this;
 					_this.show_loding = false;
-					console.log("复制")
 					if (!_this.isEmpty(_this.fileUrl)) {
-						console.log(_this.fileUrl)
-						console.log(_this.fileName)
 						uni.setClipboardData({
 							data: _this.fileUrl,
 							success() {
@@ -733,7 +709,6 @@
 								});
 							},
 							fail(e) {
-								console.log("失败", e)
 								uni.showToast({
 									title: '复制失败',
 									icon: 'none'
@@ -746,7 +721,6 @@
 				//确定按钮
 				confirm_loding() {
 					this.show_loding = false;
-					console.log("下载")
 					this.download(this.fileUrl, this.fileName);
 
 
@@ -767,26 +741,19 @@
 				download(url, name) {
 
 					let savePath = this.getDownLoadFilePath();
-					console.log('点击下载', url);
-					console.log('点击下载333', savePath);
-					//var savePath = uni.env.USER_DATA_PATH + '/savePath'
 					uni.downloadFile({
 						url: url,
 						success: response => {
 							if (response.statusCode === 200) {
-								console.log("数据", response)
 								uni.getFileSystemManager().saveFile({
 									tempFilePath: response.tempFilePath,
 									filePath: `${savePath}/${name}`,
 									success: (resData) => {
-										console.log('保存路径', resData.savedFilePath)
-										console.log("dd", resData)
 										uni.showToast({
 											title: '下载成功'
 										})
 									},
 									fail: error => {
-										console.log('error: ', error)
 									}
 								})
 							}
@@ -808,7 +775,6 @@
 					}
 					getEngineeringHistoryList(this.enginId, '').then(response => {
 
-						console.log("历史", response)
 						this.historyList = response.data
 						if (response.data.zEngineeringNodeBoList != null) {
 							this.$refs.refShare.handleShowShare();
@@ -821,7 +787,6 @@
 
 				submit() {
 
-					console.log("文件", this.fileArr)
 
 					if (this.isEmpty(this.projectType.dictValue)) {
 						this.$modal.msg('请选择工程类型')
@@ -834,7 +799,6 @@
 
 
 					try {
-						//console.log("刚开始", this.czggslList);
 						this.czggslList.forEach((list) => {
 							if (this.isEmpty(list.cz.id)) {
 								this.$modal.msg('材质不能为空')
@@ -877,9 +841,8 @@
 								specifications: list.gg.id,
 								number: list.sl
 							})
-						}),
+						})
 
-						console.log("数据", this.zEngineeringMaterialBo)
 
 					let param = {
 						//files: this.fileArr, //文件

+ 0 - 3
pages/notice/noticeList.vue

@@ -80,8 +80,6 @@
 			// 下拉刷新
 			pullDown(pullScroll) {
 
-				console.log('下拉刷新');
-				//this.list = [];
 				this.pageNum = 1;
 				setTimeout(() => {
 					this.requestData(pullScroll);
@@ -100,7 +98,6 @@
 
 				uni.showLoading()
 				getNoticeList('1', this.pageNum, this.pageSize).then(res => {
-					// console.log('getNoticeList',res)
 
 					this.totalNum = res.total
 

+ 2 - 7
pages/oldrenovation/courtyard/courtyard.vue

@@ -1,7 +1,7 @@
 	<template>
 		<scroll-view>
 			<view class="background">
-				
+
 				<view class="uni-list">
 					<view class="container" style="border-bottom: 1px solid #f8f8f8;">
 						<view>
@@ -441,7 +441,6 @@
 
 									success: res => {
 										// 判断是否json字符串,将其转为json格式
-										console.log("结果", res)
 										let data = JSON.parse(res.data);
 										if (![200].includes(data.code)) {
 											_this.$modal.msg(data.msg)
@@ -458,7 +457,6 @@
 										}
 									},
 									fail: e => {
-										console.log(e)
 										_this.$modal.msg('上传失败!')
 										//_this.uploadError(index, e);
 									},
@@ -660,7 +658,6 @@
 						this.FJValue = ''; //重置房间数据
 						getBuildingList(item.id).then(res => {
 							this.LDList = res.data
-							// console.log("楼栋=", res)
 						})
 					} else if (this.type == 'ld') {
 						this.LDValue = item;
@@ -751,7 +748,6 @@
 
 
 					try {
-						//console.log("刚开始", this.czggslList);
 						this.czggslList.forEach((list) => {
 							if (this.isEmpty(list.cz.id)) {
 								this.$modal.msg('材质不能为空')
@@ -785,9 +781,8 @@
 								specifications: list.gg.id,
 								number: list.sl
 							})
-						}),
+						})
 
-						console.log("数据", this.zEngineeringMaterialBo)
 					if (this.imgGuanArr.length <= 0) {
 						this.$modal.msg('请上传管上皮深度测量照片')
 						return

+ 0 - 9
pages/oldrenovation/courtyard/newcourtyard.vue

@@ -431,7 +431,6 @@
 						title: '上传',
 						itemList: ['图片', '视频'],
 						success: (res) => {
-							console.log(res)
 							if (res.tapIndex == 0) {
 								this.chooseimage(e)
 							} else {
@@ -444,7 +443,6 @@
 				chooseimage(e) {
 
 					let _this = this;
-					console.log('图片', _this.headers)
 					uni.chooseImage({
 						sizeType: ['album', 'camera'],
 						success(resp) {
@@ -458,7 +456,6 @@
 
 									success: res => {
 										// 判断是否json字符串,将其转为json格式
-										console.log("结果", res)
 										// let data = _this.$u.test.jsonString(res
 										// 	.data) ? JSON.parse(res.data) : res.data;
 										let data = JSON.parse(res.data);
@@ -484,7 +481,6 @@
 										}
 									},
 									fail: e => {
-										console.log(e)
 										_this.$modal.msg('上传失败!')
 										//_this.uploadError(index, e);
 									},
@@ -517,7 +513,6 @@
 
 				choosevideo(e) {
 					let _this = this;
-					console.log('视频')
 					uni.chooseVideo({
 						sourceType: ['album', 'camera'],
 						maxDuration: 30,
@@ -563,16 +558,13 @@
 							});
 							task.onProgressUpdate(res => {
 								_this.progress = res.progress;
-								console.log('onProgressUpdate', res)
 								uni.showLoading({
 									title: '上传中'
 								})
 								if (_this.progress != 100) {
 									_this.loading = false
-									console.log('_this.loading false', _this.loading)
 								} else {
 									_this.loading = true
-									console.log('_this.loading true', _this.loading)
 								}
 							});
 
@@ -697,7 +689,6 @@
 						this.FJValue = ''; //重置房间数据
 						getBuildingList(item.id).then(res => {
 							this.LDList = res.data
-							// console.log("楼栋=", res)
 						})
 					} else if (this.type == 'ld') {
 						this.LDValue = item;

+ 0 - 22
pages/oldrenovation/indoor/indoor.vue

@@ -589,7 +589,6 @@
 						success: (res) => {
 							if (res.confirm) {
 								this.imgArr.splice(index, 1)
-								console.log('this.imgarr', this.imgArr)
 								if (this.imgArr.length <= 0) {
 									this.photo = true;
 								}
@@ -603,7 +602,6 @@
 						title: '上传',
 						itemList: ['图片', '视频'],
 						success: (res) => {
-							console.log(res)
 							if (res.tapIndex == 0) {
 								this.chooseimage()
 							} else {
@@ -615,7 +613,6 @@
 				chooseimage() {
 
 					let _this = this;
-					console.log('图片', _this.headers)
 					uni.chooseImage({
 						sizeType: ['album', 'camera'],
 						success(resp) {
@@ -629,7 +626,6 @@
 
 									success: res => {
 										// 判断是否json字符串,将其转为json格式
-										console.log("结果", res)
 										// let data = _this.$u.test.jsonString(res
 										// 	.data) ? JSON.parse(res.data) : res.data;
 										let data = JSON.parse(res.data);
@@ -638,18 +634,13 @@
 											_this.$modal.msg(data.msg)
 										} else {
 											if (_this.progress === 100) {
-												console.log('_this.progress', _this.progress)
-												//console.log('data----', data)data
-												console.log('res--', res)
 												_this.imgArr.push(data.data.url)
-												console.log('imgArr', _this.imgArr)
 												_this.$modal.msg('上传成功!')
 												_this.photo = false;
 											}
 										}
 									},
 									fail: e => {
-										console.log(e)
 										_this.$modal.msg('上传失败!')
 										//_this.uploadError(index, e);
 									},
@@ -661,17 +652,13 @@
 								});
 								task.onProgressUpdate(res => {
 									_this.progress = res.progress;
-									console.log('onProgressUpdate', res)
-									console.log('task.onProgressUpdate', _this.progress)
 									uni.showLoading({
 										title: '上传中'
 									})
 									if (_this.progress != 100) {
 										_this.loading = false
-										console.log('_this.loading false', _this.loading)
 									} else {
 										_this.loading = true
-										console.log('_this.loading true', _this.loading)
 									}
 								});
 
@@ -683,7 +670,6 @@
 
 				choosevideo() {
 					let _this = this;
-					console.log('视频')
 					uni.chooseVideo({
 						sourceType: ['album', 'camera'],
 						maxDuration: 30,
@@ -702,9 +688,7 @@
 									} else {
 										//上传成功
 										if (_this.progress === 100) {
-											console.log('_this.progress', _this.progress)
 											_this.imgArr.push(data.data.url)
-											console.log('imgArr', _this.imgArr)
 											_this.$modal.msg('上传成功!')
 											_this.photo = false;
 										}
@@ -721,16 +705,13 @@
 							});
 							task.onProgressUpdate(res => {
 								_this.progress = res.progress;
-								console.log('onProgressUpdate', res)
 								uni.showLoading({
 									title: '上传中'
 								})
 								if (_this.progress != 100) {
 									_this.loading = false
-									console.log('_this.loading false', _this.loading)
 								} else {
 									_this.loading = true
-									console.log('_this.loading true', _this.loading)
 								}
 							});
 
@@ -904,7 +885,6 @@
 						this.FJValue = ''; //重置房间数据
 						getBuildingList(item.id).then(res => {
 							this.LDList = res.data
-							// console.log("楼栋=", res)
 						})
 					} else if (this.type == 'ld') {
 						this.LDValue = item;
@@ -913,7 +893,6 @@
 						this.FJValue = ''; //重置房间数据
 						getUnitList(item.id).then(res => {
 							this.DYList = res.data
-							// console.log("单元=", res)
 						})
 					} else if (this.type == 'dy') {
 						this.DYValue = item;
@@ -921,7 +900,6 @@
 						this.FJValue = ''; //重置房间数据
 						getHousesList(item.id).then(res => {
 							this.FJList = res.data
-							// console.log("房间=", res)
 						})
 					} else if (this.type == 'fj') {
 						this.FJValue = item;

+ 0 - 23
pages/oldrenovation/overhead/newoverhead.vue

@@ -368,7 +368,6 @@
 						success: (res) => {
 							if (res.confirm) {
 								this.imgArr.splice(index, 1)
-								console.log('this.imgarr', this.imgArr)
 								if (this.imgArr.length <= 0) {
 									this.photo = true;
 								}
@@ -382,7 +381,6 @@
 						title: '上传',
 						itemList: ['图片', '视频'],
 						success: (res) => {
-							console.log(res)
 							if (res.tapIndex == 0) {
 								this.chooseimage()
 							} else {
@@ -394,7 +392,6 @@
 				chooseimage() {
 
 					let _this = this;
-					console.log('图片', _this.headers)
 					uni.chooseImage({
 						sizeType: ['album', 'camera'],
 						success(resp) {
@@ -408,7 +405,6 @@
 
 									success: res => {
 										// 判断是否json字符串,将其转为json格式
-										console.log("结果", res)
 										// let data = _this.$u.test.jsonString(res
 										// 	.data) ? JSON.parse(res.data) : res.data;
 										let data = JSON.parse(res.data);
@@ -417,18 +413,13 @@
 											_this.$modal.msg(data.msg)
 										} else {
 											if (_this.progress === 100) {
-												console.log('_this.progress', _this.progress)
-												//console.log('data----', data)data
-												console.log('res--', res)
 												_this.imgArr.push(data.data.url)
-												console.log('imgArr', _this.imgArr)
 												_this.$modal.msg('上传成功!')
 												_this.photo = false;
 											}
 										}
 									},
 									fail: e => {
-										console.log(e)
 										_this.$modal.msg('上传失败!')
 										//_this.uploadError(index, e);
 									},
@@ -440,17 +431,13 @@
 								});
 								task.onProgressUpdate(res => {
 									_this.progress = res.progress;
-									console.log('onProgressUpdate', res)
-									console.log('task.onProgressUpdate', _this.progress)
 									uni.showLoading({
 										title: '上传中'
 									})
 									if (_this.progress != 100) {
 										_this.loading = false
-										console.log('_this.loading false', _this.loading)
 									} else {
 										_this.loading = true
-										console.log('_this.loading true', _this.loading)
 									}
 								});
 
@@ -462,7 +449,6 @@
 
 				choosevideo() {
 					let _this = this;
-					console.log('视频')
 					uni.chooseVideo({
 						sourceType: ['album', 'camera'],
 						maxDuration: 30,
@@ -481,9 +467,7 @@
 									} else {
 										//上传成功
 										if (_this.progress === 100) {
-											console.log('_this.progress', _this.progress)
 											_this.imgArr.push(data.data.url)
-											console.log('imgArr', _this.imgArr)
 											_this.$modal.msg('上传成功!')
 											_this.photo = false;
 										}
@@ -500,16 +484,13 @@
 							});
 							task.onProgressUpdate(res => {
 								_this.progress = res.progress;
-								console.log('onProgressUpdate', res)
 								uni.showLoading({
 									title: '上传中'
 								})
 								if (_this.progress != 100) {
 									_this.loading = false
-									console.log('_this.loading false', _this.loading)
 								} else {
 									_this.loading = true
-									console.log('_this.loading true', _this.loading)
 								}
 							});
 
@@ -644,7 +625,6 @@
 						this.FJValue = ''; //重置房间数据
 						getBuildingList(item.id).then(res => {
 							this.LDList = res.data
-							// console.log("楼栋=", res)
 						})
 					} else if (this.type == 'ld') {
 						this.LDValue = item;
@@ -658,7 +638,6 @@
 						this.FJValue = ''; //重置房间数据
 						getUnitList(item.id).then(res => {
 							this.DYList = res.data
-							// console.log("单元=", res)
 						})
 
 					} else if (this.type == 'dy') {
@@ -744,7 +723,6 @@
 
 
 					try {
-						//console.log("刚开始", this.czggslList);
 						this.czggslList.forEach((list) => {
 							if (this.isEmpty(list.cz.id)) {
 								this.$modal.msg('材质不能为空')
@@ -788,7 +766,6 @@
 							})
 						}),
 
-						console.log("数据", this.zEngineeringMaterialBo)
 					//提交
 					this.onsubmit();
 

+ 0 - 21
pages/oldrenovation/overhead/overhead.vue

@@ -321,7 +321,6 @@
 						success: (res) => {
 							if (res.confirm) {
 								this.imgArr.splice(index, 1)
-								console.log('this.imgarr', this.imgArr)
 								if (this.imgArr.length <= 0) {
 									this.photo = true;
 								}
@@ -335,7 +334,6 @@
 						title: '上传',
 						itemList: ['图片', '视频'],
 						success: (res) => {
-							console.log(res)
 							if (res.tapIndex == 0) {
 								this.chooseimage()
 							} else {
@@ -347,7 +345,6 @@
 				chooseimage() {
 
 					let _this = this;
-					console.log('图片', _this.headers)
 					uni.chooseImage({
 						sizeType: ['album', 'camera'],
 						success(resp) {
@@ -361,7 +358,6 @@
 
 									success: res => {
 										// 判断是否json字符串,将其转为json格式
-										console.log("结果", res)
 										// let data = _this.$u.test.jsonString(res
 										// 	.data) ? JSON.parse(res.data) : res.data;
 										let data = JSON.parse(res.data);
@@ -370,18 +366,13 @@
 											_this.$modal.msg(data.msg)
 										} else {
 											if (_this.progress === 100) {
-												console.log('_this.progress', _this.progress)
-												//console.log('data----', data)data
-												console.log('res--', res)
 												_this.imgArr.push(data.data.url)
-												console.log('imgArr', _this.imgArr)
 												_this.$modal.msg('上传成功!')
 												_this.photo = false;
 											}
 										}
 									},
 									fail: e => {
-										console.log(e)
 										_this.$modal.msg('上传失败!')
 										//_this.uploadError(index, e);
 									},
@@ -393,17 +384,13 @@
 								});
 								task.onProgressUpdate(res => {
 									_this.progress = res.progress;
-									console.log('onProgressUpdate', res)
-									console.log('task.onProgressUpdate', _this.progress)
 									uni.showLoading({
 										title: '上传中'
 									})
 									if (_this.progress != 100) {
 										_this.loading = false
-										console.log('_this.loading false', _this.loading)
 									} else {
 										_this.loading = true
-										console.log('_this.loading true', _this.loading)
 									}
 								});
 
@@ -415,7 +402,6 @@
 
 				choosevideo() {
 					let _this = this;
-					console.log('视频')
 					uni.chooseVideo({
 						sourceType: ['album', 'camera'],
 						maxDuration: 30,
@@ -434,9 +420,7 @@
 									} else {
 										//上传成功
 										if (_this.progress === 100) {
-											console.log('_this.progress', _this.progress)
 											_this.imgArr.push(data.data.url)
-											console.log('imgArr', _this.imgArr)
 											_this.$modal.msg('上传成功!')
 											_this.photo = false;
 										}
@@ -453,16 +437,13 @@
 							});
 							task.onProgressUpdate(res => {
 								_this.progress = res.progress;
-								console.log('onProgressUpdate', res)
 								uni.showLoading({
 									title: '上传中'
 								})
 								if (_this.progress != 100) {
 									_this.loading = false
-									console.log('_this.loading false', _this.loading)
 								} else {
 									_this.loading = true
-									console.log('_this.loading true', _this.loading)
 								}
 							});
 
@@ -562,7 +543,6 @@
 						this.FJValue = ''; //重置房间数据
 						getBuildingList(item.id).then(res => {
 							this.LDList = res.data
-							// console.log("楼栋=", res)
 						})
 					} else if (this.type == 'ld') {
 						this.LDValue = item;
@@ -576,7 +556,6 @@
 						this.FJValue = ''; //重置房间数据
 						getUnitList(item.id).then(res => {
 							this.DYList = res.data
-							// console.log("单元=", res)
 						})
 
 					} else if (this.type == 'dy') {

+ 0 - 19
pages/piping_record/piping_record.vue

@@ -323,7 +323,6 @@
 						if (res.code == '200') {
 							if (res.data != null) {
 								getRoomProjectList(res.data.id, this.objValue.enginClassValue).then(res => {
-									console.log(res)
 									this.historyList = res.data
 									if (res.data.zEngineeringNodeBo != null) {
 										this.showHistoryList();
@@ -413,7 +412,6 @@
 						success: (res) => {
 							if (res.confirm) {
 								this.imgArr.splice(index, 1)
-								console.log('this.imgarr', this.imgArr)
 								if (this.imgArr.length <= 0) {
 									this.photo = true;
 								}
@@ -427,7 +425,6 @@
 						title: '上传',
 						itemList: ['图片', '视频'],
 						success: (res) => {
-							console.log(res)
 							if (res.tapIndex == 0) {
 								this.chooseimage()
 							} else {
@@ -439,7 +436,6 @@
 				chooseimage() {
 
 					let _this = this;
-					console.log('图片', _this.headers)
 					uni.chooseImage({
 						sizeType: ['album', 'camera'],
 						success(resp) {
@@ -453,23 +449,18 @@
 
 									success: res => {
 										// 判断是否json字符串,将其转为json格式
-										console.log("结果", res)
 										let data = JSON.parse(res.data);
 										if (![200].includes(data.code)) {
 											_this.$modal.msg(data.msg)
 										} else {
 											if (_this.progress === 100) {
-												console.log('_this.progress', _this.progress)
-												console.log('res--', res)
 												_this.imgArr.push(data.data.url)
-												console.log('imgArr', _this.imgArr)
 												_this.$modal.msg('上传成功!')
 												_this.photo = false;
 											}
 										}
 									},
 									fail: e => {
-										console.log(e)
 										_this.$modal.msg('上传失败!')
 									},
 									complete: res => {
@@ -480,17 +471,13 @@
 								});
 								task.onProgressUpdate(res => {
 									_this.progress = res.progress;
-									console.log('onProgressUpdate', res)
-									console.log('task.onProgressUpdate', _this.progress)
 									uni.showLoading({
 										title: '上传中'
 									})
 									if (_this.progress != 100) {
 										_this.loading = false
-										console.log('_this.loading false', _this.loading)
 									} else {
 										_this.loading = true
-										console.log('_this.loading true', _this.loading)
 									}
 								});
 
@@ -502,7 +489,6 @@
 
 				choosevideo() {
 					let _this = this;
-					console.log('视频')
 					uni.chooseVideo({
 						sourceType: ['album', 'camera'],
 						maxDuration: 30,
@@ -521,9 +507,7 @@
 									} else {
 										//上传成功
 										if (_this.progress === 100) {
-											console.log('_this.progress', _this.progress)
 											_this.imgArr.push(data.data.url)
-											console.log('imgArr', _this.imgArr)
 											_this.$modal.msg('上传成功!')
 											_this.photo = false;
 										}
@@ -540,16 +524,13 @@
 							});
 							task.onProgressUpdate(res => {
 								_this.progress = res.progress;
-								console.log('onProgressUpdate', res)
 								uni.showLoading({
 									title: '上传中'
 								})
 								if (_this.progress != 100) {
 									_this.loading = false
-									console.log('_this.loading false', _this.loading)
 								} else {
 									_this.loading = true
-									console.log('_this.loading true', _this.loading)
 								}
 							});
 

+ 0 - 3
pages/statistics/statistics.vue

@@ -451,7 +451,6 @@
 					this.FJValue = ''; //重置房间数据
 					getUnitList(item.id).then(res => {
 						this.DYList = res.data
-						// console.log("单元=", res)
 					})
 
 				} else if (this.type == 'dy') {
@@ -478,7 +477,6 @@
 					this.FJValue2 = ''; //重置房间数据
 					getBuildingList(item.id).then(res => {
 						this.LDList2 = res.data
-						// console.log("楼栋=", res)
 					})
 				} else if (this.type == 'ld2') {
 					this.LDValue2 = item;
@@ -487,7 +485,6 @@
 					this.FJValue2 = ''; //重置房间数据
 					getUnitList(item.id).then(res => {
 						this.DYList2 = res.data
-						// console.log("单元=", res)
 					})
 
 				} else if (this.type == 'dy2') {

+ 0 - 16
pages/work/index.vue

@@ -223,7 +223,6 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
 				this.enginClassification = e.dictValue;
 				this.enginClassValue = e.dictLabel; //(拆旧管等 字典值)
 				this.typeList = ''; //置空
-				console.log("新建", e.dictValue);
 				if (e.dictValue == 'indoor_engin') {
 					//新建室内
 					getDicts("new_built_indoor_engin").then(response => {
@@ -236,14 +235,12 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
 				} else if (e.dictValue == 'courtyard') {
 					//新建庭院
 					getDicts("new_built_courtyard").then(response => {
-						console.log("庭院", response.data)
 						this.typeList = response.data;
 
 					});
 				} else if (e.dictValue == 'overhead') {
 					//新建架空
 					getDicts("new_built_courtyard").then(response => {
-						console.log("架空", response.data)
 						this.typeList = response.data;
 
 
@@ -286,7 +283,6 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
 				this.enginClassification = e.dictValue;
 				this.enginClassValue = e.dictLabel; //(拆旧管等 字典值)
 
-				console.log("旧改", e.dictValue);
 				this.typeList = ''; //置空
 				if (e.dictValue == 'indoor_engin') {
 					//旧改室内
@@ -299,7 +295,6 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
 				} else if (e.dictValue == 'courtyard') {
 					//旧改庭院
 					getDicts("old_renovation_courtyard").then(response => {
-						console.log("庭院", response.data)
 						this.typeList = response.data;
 
 					});
@@ -307,7 +302,6 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
 				} else if (e.dictValue == 'overhead') {
 					//旧改架空
 					getDicts("old_renovation_overhead").then(response => {
-						console.log("架空", response.data)
 						this.typeList = response.data;
 					});
 					this.handleShowSheet();
@@ -353,7 +347,6 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
 						enginClassification: this.enginClassification //室内  庭院  架空
 
 					};
-					console.log(obj)
 					//this.handleHiddenShare();
 					// 室内
 					if (this.enginClassification == 'indoor_engin') {
@@ -395,7 +388,6 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
 						}
 					}
 				} else if (this.projectType == 'GongYe') {
-					console.log("工业", item)
 					let obj = {
 						value: item.dictValue
 					};
@@ -406,7 +398,6 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
 								obj))
 					})
 				} else if (this.projectType == 'JiJian') {
-					console.log("基建", item)
 					let obj = {
 						value: item.dictValue
 					};
@@ -417,7 +408,6 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
 								obj))
 					})
 				} else if (this.projectType == 'DingGuan') {
-					console.log("顶管", item)
 					let obj = {
 						value: item.dictValue
 					};
@@ -435,10 +425,8 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
 				this.projectType = 'GongYe';
 				//工业工程
 				getDicts("engin_classification").then(response => {
-					console.log("工业工程", response.data)
 					this.typeList = response.data;
 
-					console.log("工业工程", response.data)
 
 				});
 				this.handleShowSheet();
@@ -446,7 +434,6 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
 			showTopPipe() {
 				this.projectType = 'DingGuan';
 				getDicts("pipe_jack").then(response => {
-					console.log("顶管工程", response.data)
 					this.typeList = response.data;
 
 
@@ -457,16 +444,13 @@ border-radius: 50%; margin-right: 20rpx;">旧</view>
 				this.projectType = 'JiJian';
 				//基建工程
 				getDicts("engineering_infrastructure").then(response => {
-					console.log("基建工程", response.data)
 					this.typeList = response.data;
 
-					console.log("基建工程", response.data)
 
 				});
 				this.handleShowSheet();
 			},
 			showDangerous() {
-				console.log("危险作业工程")
 				uni.navigateTo({
 					url: '/pages/dangerous/dangerous'
 				})

+ 0 - 1
uni_modules/cc-pullScroolView/readme.md

@@ -108,7 +108,6 @@ onReachBottom() {
 			// 下拉刷新
 			pullDown(pullScroll) {
 
-				console.log('下拉刷新');
 				this.projectList = [];
 				this.curPageNum = 1;
 				setTimeout(() => {

+ 0 - 1
uni_modules/uni-list/components/uni-list-chat/uni-list-chat.vue

@@ -166,7 +166,6 @@
 						uniCloud.getTempFileURL({
 							fileList: [avatar]
 						}).then(res=>{
-							// console.log(res);
 							// 兼容uniCloud私有化部署
 							let fileList = res.fileList || res.result.fileList
 							this.avatarUrl = fileList[0].tempFileURL

+ 0 - 2
uni_modules/uni-list/components/uni-list/uni-refresh.wxs

@@ -9,7 +9,6 @@ var pullDown = {
 function ready(newValue, oldValue, ownerInstance, instance) {
     var state = instance.getState()
     state.canPullDown = newValue;
-    // console.log(newValue);
 }
 
 function touchStart(e, instance) {
@@ -20,7 +19,6 @@ function touchStart(e, instance) {
         return
     }
 
-    // console.log("touchStart");
 
     state.height = 0;
     state.touchStartY = e.touches[0].pageY || e.changedTouches[0].pageY;

+ 0 - 1
uni_modules/uni-rate/components/uni-rate/uni-rate.vue

@@ -217,7 +217,6 @@
 				if (!this.IsPC()) return
 				if (this.userRated) return
 				if (this.userMouseFristMove) {
-					console.log('---mousemove----', this.valueSync);
 					this.userLastRate = this.valueSync
 					this.userMouseFristMove = false
 				}

+ 0 - 1
utils/request.js

@@ -35,7 +35,6 @@ const request = config => {
           reject('后端接口连接异常')
           return
         }
-		//console.log("dddd",res)
         const code = res.data.code || 200
         const msg = errorCode[code] || res.data.msg || errorCode['default']
         if (code === 401) {