Browse Source

封装时间戳转日期的全局方法,添加开门码长按图片保存js

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

+ 2 - 1
main.js

@@ -1,7 +1,8 @@
 import Vue from 'vue'
 import App from './App'
 import http from './utils/request.js'
-
+import date from './utils/prototype.js'
+Vue.prototype.date= date
 Vue.config.productionTip = false
 Vue.prototype.http=http
 App.mpType = 'app'

+ 1 - 1
manifest.json

@@ -56,7 +56,7 @@
     "quickapp" : {},
     /* 小程序特有相关 */
     "mp-weixin" : {
-        "appid" : "wx68bb6c19ba719554",
+        "appid" : "wx645beacd35fdcd75",
         "setting" : {
             "urlCheck" : false
         },

+ 4 - 1
pages/authentication/city.vue

@@ -18,19 +18,22 @@
 			getData(){
 			this.http.httpRequest('/admin/staff/shop_list','get',{lat:0,lng:0},true).then((res)=>{
 				console.log(res)
-				console.log('11')
 			})
 			},
 			//选择城市
 			back_city(data) {
 				console.log(data)
+				
+				
 				uni.navigateTo({
 					url: "./selectHouse"
 				})
+				
 			},
 			// 选择当前定位城市
 			selectCity(data) {
 				console.log(data)
+				uni.setStorageSync("cityName",data)
 				uni.navigateTo({
 					url: "./selectHouse"
 				})

+ 29 - 11
pages/authentication/selectHouse.vue

@@ -1,6 +1,7 @@
 <!-- 选择小区 -->
 <template>
 	<view class="pageBg">
+		
 		<!-- <image src="../../static/select_bgimage@2x.png" style="width: 100%;height: 100vh;"></image> -->
 		<view class="backIcon" :style="{marginTop:phoneHeight+'rpx'}" @tap="back">
 			<image src="../../static/icon_back@2x.png" style="width: 100%;height: 100%;"></image>
@@ -45,7 +46,7 @@
 		<!-- 发表按钮 -->
 		<button class="btn" @tap="submit" :class="{active:form.houseName&&form.lou&&form.hoodNum}">发表</button>
 		<!-- 选择小区名称组件 -->
-		<lb-picker ref="houseName" :list="houseData" @confirm="confirm"></lb-picker>
+		<lb-picker ref="houseName" :props="typeProps" :list="houseData" @confirm="confirm"></lb-picker>
 		<!-- 选择楼层组件 -->
 		<lb-picker ref="Lou" :list="louData" @confirm="confirmLou">></lb-picker>
 		<!-- 选择单元号组件 -->
@@ -59,29 +60,34 @@
 		data() {
 			return {
 				phoneHeight: 0, //手机状态栏的高度
-				name: '',
-				lou: '',
-				hoodNum: '',
+				lou: '',//楼层
+				hoodNum: '',//单元号
 				form: {
 					houseName: '', //小区名称
 					lou: '', //楼层
 					hoodNum: '' //单元号
 				},
+				// 自定义选择组件字段
+				typeProps:{
+					label:'name',
+					value:'value',
+			
+				},
 				//小区名称数据
 				houseData: [{
-						label: '花园小区',
+						name: '花园小区',
 						value: 0,
-						children: []
+						
 					},
 					{
-						label: '番茄小区',
+						name: '番茄小区',
 						value: 1,
-						children: []
+						
 					},
 					{
-						label: '蓬莱院',
+						name: '蓬莱院',
 						value: 2,
-						children: []
+						
 					},
 				],
 				//楼层数据
@@ -124,7 +130,12 @@
 			// 获取状态栏的高度
 			this.phoneHeight = uni.getSystemInfoSync().statusBarHeight
 		},
+		mounted(){},
 		methods: {
+			// 获取小区数据
+			getAreaData(){
+				
+			},
 			//返回
 			back(){
 				uni.navigateBack({
@@ -145,7 +156,8 @@
 			},
 			//小区选择确定
 			confirm(data) {
-				this.form.houseName = data.item.label
+				console.log(data)
+				this.form.houseName = data.item.name
 				this.name = data.item.value
 			},
 			//楼层选择确定
@@ -162,6 +174,12 @@
 			submit() {
 				// 判断信息是否选择完整
 				  if(this.form.houseName&& this.form.lou&&this.form.hoodNum){
+					  
+					  uni.switchTab({
+					  	url:"../index/index"
+					  })
+				  }else{
+					  return
 				  }
 			}
 		},

+ 7 - 1
pages/complain/evaluateCompalin.vue

@@ -78,7 +78,13 @@
 			},
 			// 提交
 			submit(){
-				console.log(this.textRea,this.imgData,this.starNum)
+			   if(!this.textRea || !this.starNum){
+				   return
+			   }else{
+				   uni.navigateTo({
+				   	url:"../onlineRpair/evalueSuccess"
+				   })
+			   }
 			},
 			// 返回上一层
 			back(){

+ 6 - 3
pages/complain/wantCompalin.vue

@@ -17,8 +17,7 @@
 				<image src="../../static/guarantee_icon_summary@2x.png" class="mainImg"></image>
 				<view class="fa">投诉摘要</view>
 				<view class="star">
-					
-				   <textarea placeholder="请填写投诉摘要" style="width: 100%;height: 100%;" v-model="digest"></textarea>
+				   <input placeholder="请填写投诉摘要" style="width: 95%;height: 100%;margin: 0 auto;" v-model="digest"/>
 				</view>
 				<image src="../../static/guarantee_icon_content@2x.png" class="contentImg"></image>
 				<view class="contentTitle">
@@ -79,7 +78,11 @@
 			},
 			// 提交
 			submit(){
-				console.log(this.textRea,this.imgData,this.starNum)
+				if(!this.digest || !this.textRea || !this.starNum){
+					return
+				}else{
+					
+				}
 			},
 			// 返回上一页
 			back(){

+ 5 - 12
pages/index/visitorPass.vue

@@ -33,7 +33,7 @@
 					<view class="left-icon">
 						<image src="../../static/login_icon_phone@2x.png" style="width: 100%;height: 100%;"></image>
 					</view>
-					<input class="uni-input item-input" v-model="form.phone" focus placeholder="请输入手机号" />
+					<input class="uni-input item-input"  type="number" v-model="form.phone" focus placeholder="请输入手机号" />
 				</view>
 				<view class="item" @tap="selectDate">
 					<view class="left-icon">
@@ -43,7 +43,6 @@
 					<image src="../../static/icon_combo@2x.png" style="width: 56rpx;height: 30rpx;margin-top: 68rpx;margin-right: 54rpx;"></image>
 				</view>
 				<view class="item">
-				
 					<view class="left-icon">
 							<image src="../../static/visitor_icon_regard@2x.png" style="width: 100%;height: 100%;"></image>
 					</view>
@@ -93,8 +92,8 @@
 		methods: {
 			// 返回
 			back(){
-				uni.switchTab({
-					url:"index"
+				uni.navigateBack({
+					delta:1
 				})
 			},
 			// 选择时间确定
@@ -107,7 +106,7 @@
 			 selectDate(){
 				 this.$refs.date.show()
 			 },
-			// 现在登录
+			//获取临时开门码
 			loginNow() {
 				// 判断输入框是否都有值  否不可以点击
 				if (!this.form.name || !this.form.idNumber || !this.form.date || !this.form.phone|| !this.form.dec) {
@@ -115,13 +114,7 @@
 				} else {
 					let idNumerReg = /^[1-9]\d{5}(18|19|20)\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/; //身份证正则
 					let phoneReg = /^1[3|4|5|7|8][0-9]{9}$/; //手机号正则校验
-					if (!this.form.name) {
-						uni.showToast({
-							icon: 'none',
-							title: '姓名不能为空',
-							duration: 2000
-						});
-					} else if (!idNumerReg.test(this.form.idNumber)) {
+					 if (!idNumerReg.test(this.form.idNumber)) {
 						console.log(this.form.idNumber)
 						uni.showToast({
 							icon: 'none',

+ 35 - 21
pages/login/authorization.vue

@@ -3,47 +3,61 @@
 		<view class="title">
 			平安E家小程序需要获得您的用户信息
 		</view>
-		<image src="../../static/authorization.png" style="width: 100%;height: 503rpx;margin-top: 48rpx;"></image>
-		<button class="btn" @getuserinfo="login">授权并登陆</button>
+		<image src="../../static/empower_image@2x.png" style="width: 100%;height: 503rpx;margin-top: 48rpx;"></image>
+		<button class="btn" open-type="getUserInfo" @getuserinfo="login">授权并登陆</button>
 	</view>
 </template>
 
 <script>
 	export default {
-  data(){
-	  return{
-		  
-	  }
-	},
-		methods:{
+		data() {
+			return {
+
+			}
+		},
+		methods: {
 			// 授权登录
-			login(){
-				
+			login(e) {
+				console.log(e)
+				uni.login({
+					provider: 'weixin',
+					success: (res)=> {
+						console.log(res);
+						this.http.httpRequest("/user/userlogin", 'get', {
+							code: res.code,
+							nickname: e.detail.userInfo.nickName,
+							avatar: e.detail.userInfo.avatarUrl,
+							invite_id:1
+						},true).then((res)=>{
+							console.log(res)
+						})
+					}
+				});
 			}
 		}
-  }
+	}
 </script>
 <style>
-	.title{
+	.title {
 		width: 504rpx;
 		height: 118rpx;
 		text-align: center;
 		margin: 0 auto;
 		font-size: 40rpx;
-		color:rgba(51,51,51,1);
+		color: rgba(51, 51, 51, 1);
 		margin-top: 246rpx;
-		font-family:PingFang SC;
-		font-weight:400;
+		font-family: PingFang SC;
+		font-weight: 400;
 	}
-	.btn{
+
+	.btn {
 		width: 702rpx;
 		height: 88rpx;
-		background:rgba(41,138,253,1);
-		color:rgba(255,255,255,1);
+		background: rgba(41, 138, 253, 1);
+		color: rgba(255, 255, 255, 1);
 		font-size: 36rpx;
-		font-family:PingFang SC;
-		font-weight:bold;
+		font-family: PingFang SC;
+		font-weight: bold;
 		margin-top: 170rpx;
 	}
-	
 </style>

+ 1 - 2
pages/onlineRpair/wantRepair.vue

@@ -18,8 +18,7 @@
 				<image src="../../static/guarantee_icon_summary@2x.png" class="mainImg"></image>
 				<view class="fa">报修摘要</view>
 				<view class="star">
-					
-				   <textarea placeholder="请填写报修摘要" style="width: 100%;height: 100%;" v-model="digest"></textarea>
+				   <input placeholder="请填写报修摘要" style="width:95%;height: 100%;margin: 0 auto;" v-model="digest"/>
 				</view>
 				<image src="../../static/guarantee_icon_content@2x.png" class="contentImg"></image>
 				<view class="contentTitle">

Những thai đổi đã bị hủy bỏ vì nó quá lớn
+ 120 - 56
pages/visitor/doorCode.vue


Một số tệp đã không được hiển thị bởi vì quá nhiều tập tin thay đổi trong này khác