Selaa lähdekoodia

修改用户手册

ssfg 4 vuotta sitten
vanhempi
commit
063b7819d3

+ 3 - 3
app.json

@@ -1,9 +1,9 @@
 {
   "pages": [
-    "pages/finishInfo/finishInfo",
+    "pages/paiming/paiming",
     "pages/index/index",
+    "pages/finishInfo/finishInfo",
     "pages/faceRecognition/faceRecognition",
-    
     "pages/xy/xy",
     "pages/visitandinfo/visitandinfo",
     "pages/aboutUs/aboutUs",
@@ -14,7 +14,7 @@
     "pages/love/love",
     "pages/collectInfo/collectInfo",
     "pages/idCard/idCard",
-    "pages/paiming/paiming",
+    
     "pages/idCardDetail/idCardDetail",
     "pages/login/login",
     "pages/updatepassword/updatepassword",

BIN
images/user_face.png


BIN
images/user_finish.png


BIN
images/user_login.png


+ 1 - 1
pages/aboutUs/aboutUs.wxml

@@ -7,7 +7,7 @@
 			以居家老年人为基础,村社区为依托,机构为补充的云大数据老年人服务平台,充分利用物联网、云计算、大数据、定位系统、人脸识别及SAAS服务等技术,充分有效的提升完善老年人大数据信息与服务质量,完美对接民政部的《全国农村留守老人系统》。
 		</view>
 		<view class="phone">
-			<view wx:for='{{arr}}' wx:for-index="idx" wx:key='{{idx}}' style="line-height:72rpx;width:600rpx;height:72rpx;border-bottom:1rpx solid #d5d9dd">
+			<view wx:for='{{arr}}' wx:for-index="idx" wx:key='idx' style="line-height:72rpx;width:600rpx;height:72rpx;border-bottom:1rpx solid #d5d9dd">
 				<view style="float:left;margin-left:50rpx">{{item.name}}</view>
 				<view class="{{idx==0?'blue':'black'}}" data-idx='{{idx}}' bindtap="call">{{item.value}}</view>
 			</view>

+ 33 - 13
pages/collectInfo/collectInfo.js

@@ -719,10 +719,17 @@ Page({
     })
   },
   addOldName(e) {
+    console.log(e,'我是添加的姓名1111')
     this.setData({
       addOldname: e.detail.value
     })
+    console.log(e.detail.value,'我是添加的姓名222222')
   },
+  // addOldNameBlur(e){
+  //   this.setData({
+  //     addOldname: e.detail.value
+  //   })
+  // },
   addOldName1(e) {
     this.setData({
       addOldname1: e.detail.value
@@ -755,23 +762,24 @@ Page({
       shiBaiShow: false
     })
   },
-  sure() {
+  formSubmit(e) {
+    console.log(e.detail.value.oldName,'我是点击确定之后的名字')
     let han = /^[\u4e00-\u9fa5]+$/;
-    if (this.data.addOldname == '' || this.data.addOldname == null) {
+    if (e.detail.value.oldName == '' || e.detail.value.oldName == null) {
       wx.showModal({
         showCancel: false,
         content: '老人姓名不可以为空哦'
       })
       return false
     }
-    if (!han.test(this.data.addOldname)) {
+    if (!han.test(e.detail.value.oldName)) {
       wx.showModal({
         showCancel: false,
         content: '您输入的内容不是汉字哦'
       })
       return false;
     };
-    if (this.data.addOldname.length < 2) {
+    if (e.detail.value.oldName.length < 2) {
       wx.showModal({
         showCancel: false,
         content: '老人姓名不可以少于两个字哦'
@@ -790,19 +798,20 @@ Page({
         appletsId: wx.getStorageSync('openId')
       },
       data: {
-        name: this.data.addOldname
+        name: e.detail.value.oldName
       },
       success: (res) => {
         if (res.data.code == 0) {
           let name = 'oldInfo[' + this.data.activeIndex + '].name'
           console.log(res.data.data.name)
-          console.log(this.data.addOldname)
+          console.log(e.detail.value.oldName,'我是老人输入的姓名')
           this.setData({
             nameArr: this.data.nameArr.concat(res.data.data),
             familyFid: res.data.data.fid,
-            [name]: this.data.addOldname,
+            [name]: res.data.data.name,
             oldInfo: this.data.oldInfo
           })
+          console.log(this.data.nameArr,'我是老人姓名的数组 显示最上方的姓名')
           wx.hideLoading();
         }
       }
@@ -883,23 +892,24 @@ Page({
       visitTimesFromOther: false
     })
   },
-  sure1() {
+  formSubmit1(e) {
+    console.log(e.detail.value.oldName1)
     let han = /^[\u4e00-\u9fa5]+$/;
-    if (this.data.addOldname1 == '' || this.data.addOldname1 == null) {
+    if (e.detail.value.oldName1 == '' || e.detail.value.oldName1 == null) {
       wx.showModal({
         showCancel: false,
         content: '老人姓名不可以为空哦'
       })
       return false
     }
-    if (!han.test(this.data.addOldname1)) {
+    if (!han.test(e.detail.value.oldName1)) {
       wx.showModal({
         showCancel: false,
         content: '您输入的内容不是汉字哦'
       })
       return false;
     };
-    if (this.data.addOldname1.length < 2) {
+    if (e.detail.value.oldName1.length < 2) {
       wx.showModal({
         showCancel: false,
         content: '老人姓名不可以少于两个字哦'
@@ -919,13 +929,13 @@ Page({
         appletsId: wx.getStorageSync('openId')
       },
       data: {
-        name: this.data.addOldname1,
+        name: e.detail.value.oldName1,
         fid: this.data.familyFid
       },
       success: (res) => {
         if (res.data.code == 0) {
           this.data.oldInfo.push({
-            name: this.data.addOldname1,
+            name: e.detail.value.oldName1,
             oldSex: [{
               name: '男'
             }, {
@@ -1440,6 +1450,16 @@ Page({
       },
     })
   },
+  // tab1Change1(e) {
+  //   let name = 'oldInfo[' + this.data.activeIndex + '].name'
+  //   this.setData({
+  //     [name]: e.detail.value
+  //   })
+  //   this.SubmitOldmanInfo({
+  //     id: this.data.nameArr[this.data.activeIndex]._id,
+  //     name: e.detail.value
+  //   })
+  // },
   // 性别单选
   tab1Change2(e) {
     let data = this.data.oldInfo[this.data.activeIndex].oldSex.map(v => {

+ 20 - 15
pages/collectInfo/collectInfo.wxml

@@ -3,21 +3,25 @@
 	<view class="{{showBj ? 'writeOldmanName':'none'}} " hidden="{{!showBj}}">
 		<view class="OldmanName_box">
 			<view class="oldmanname">请输入老人姓名</view>
-			<input focus='{{focus}}' style="margin-left:50rpx;margin-top:30rpx;border:1px solid #279bff" placeholder-style="color: {{color}}" bindinput="addOldName" value="{{addOldname}}" />
-			<view class="btn_box">
-				<view class="sure" bindtap="sure">确定</view>
-				<view class="esc" bindtap="qx">取消</view>
-			</view>
+			<form bindsubmit='formSubmit'>
+				<input focus='{{focus}}' style="margin-left:50rpx;margin-top:30rpx;border:1px solid #279bff;" placeholder-style="color: {{color}}" name='oldName' value="{{addOldname}}" />
+				<view class="btn_box">
+					<button id="sure" form-type="submit">确定</button>
+					<view class="esc" bindtap="qx">取消</view>
+				</view>
+			</form>
 		</view>
 	</view>
 	<view class="writeOldmanName" wx:if="{{showBj1}}">
 		<view class="OldmanName_box">
 			<view class="oldmanname">请输入老人姓名</view>
-			<input style="margin-left:50rpx;margin-top:30rpx;border:1px solid #279bff" bindinput="addOldName1" value="{{addOldname1}}" />
-			<view class="btn_box">
-				<view class="sure" bindtap="sure1">确定</view>
-				<view class="esc" bindtap="qx1">取消</view>
-			</view>
+			<form bindsubmit='formSubmit1'>
+				<input style="margin-left:50rpx;margin-top:30rpx;border:1px solid #279bff" name='oldName1' value="{{addOldname1}}" />
+				<view class="btn_box">
+					<button id="sure" form-type="submit">确定</button>
+					<view class="esc" bindtap="qx1">取消</view>
+				</view>
+			</form>
 		</view>
 	</view>
 	<view class="left">
@@ -77,7 +81,8 @@
 				</view>
 				<!-- <view bindtap="findNull">小铃铛</view> -->
 				<image src="../../images/dingdong.png" bindtap="findNull" style="width:40rpx;height:49rpx;position:fixed;top:130rpx;right:10rpx"></image>
-				<view class="block"><text class="red">*</text>姓名<input class="huiColor" disabled="true" value="{{oldInfo[activeIndex].name}}" /></view>
+				<!-- disabled="true"  -->
+				<view class="block"><text class="red">*</text>姓名<input disabled="true" class="huiColor" value="{{oldInfo[activeIndex].name}}" /></view>
 				<view class="block" id="sex">
 					<view class="name"><text class="red">*</text>性别</view>
 					<radio-group bindchange="tab1Change2">
@@ -539,7 +544,7 @@
 							<van-icon name="arrow-down" style="position:absolute;right:20rpx;top:10rpx;color:#bbbbbb" />
 						</view>
 					</picker>
-						<view wx:if="{{ispartnerNull}}" class="required">是否有配偶不能为空哦!</view>
+					<view wx:if="{{ispartnerNull}}" class="required">是否有配偶不能为空哦!</view>
 					<view wx:if="{{otherInfo[activeIndex].Info.isHasPartner=='是'}}">
 						<view class="block" id="isotherpartnername"><text class="red">*</text>配偶姓名<input placeholder="请填写" placeholder-style='font-size:25rpx;color: #bbbbbb;' bindblur="tab3Change12" value="{{otherInfo[activeIndex].Info.name2}}" /></view>
 						<view wx:if="{{isMarryName}}" class="required">配偶姓名不能为空哦!</view>
@@ -555,12 +560,12 @@
 							<van-icon name="arrow-down" style="position:absolute;right:20rpx;top:10rpx;color:#bbbbbb" />
 						</view>
 					</picker>
-						<view wx:if="{{isothervisit}}" class="required">平均一年探望次数不能为空哦!</view>
+					<view wx:if="{{isothervisit}}" class="required">平均一年探望次数不能为空哦!</view>
 				</view>
 			</view>
 			<!-- 第四个tab寻访联系人信息 -->
 			<view wx:if="{{currentIndex==3}}">
-			<image src="../../images/dingdong.png" bindtap="findNull4" style="width:40rpx;height:49rpx;position:fixed;top:130rpx;right:10rpx"></image>
+				<image src="../../images/dingdong.png" bindtap="findNull4" style="width:40rpx;height:49rpx;position:fixed;top:130rpx;right:10rpx"></image>
 				<view class="block">
 					<view class="name"><text class="red">*</text>巡访方式</view>
 					<checkbox-group bindchange="tab4Change1">
@@ -580,7 +585,7 @@
 						</label>
 					</radio-group>
 				</view>
-					<view wx:if="{{visitTimesFromOther}}" class="required">巡访频次不能为空哦!</view>
+				<view wx:if="{{visitTimesFromOther}}" class="required">巡访频次不能为空哦!</view>
 				<input wx:if="{{regularsInfos[activeIndex].visitCount[4].checked}}" value="{{regularsInfos[activeIndex].visitCountExt}}" placeholder="请填写其它内容" bindblur="tab4change4" class="otherinput" />
 				<view wx:if="{{regularsInfos[activeIndex].visitCount[4].checked&&isVisittimesQtnull}}" class="required">其它巡访频次不能为空哦!</view>
 			</view>

+ 4 - 2
pages/collectInfo/collectInfo.wxss

@@ -67,16 +67,18 @@ page {
   margin-top: 50rpx;
 }
 
-.sure {
+#sure {
   height: 50rpx;
   line-height: 50rpx;
   background-color: #2087f7;
   color: #fff;
   border-radius: 10rpx;
   font-size: 27rpx;
-  margin-left: 150rpx;
   width: 100rpx;
   text-align: center;
+  padding: 0;
+  margin: 0;
+  margin-left: 150rpx;
 }
 
 .esc {

+ 6 - 4
pages/faceRecognition/faceRecognition.js

@@ -52,6 +52,7 @@ Page({
         photoPath: this.data.photo
       },
       success: (res) => {
+        wx.hideLoading();
         console.log(res)
         if (res.data.code == 0) {
           wx.showModal({
@@ -66,16 +67,17 @@ Page({
             }
           })
         }else{
+          wx.hideLoading();
           wx.showToast({
-            title: '人脸识别失败',
+            title: '面部识别不通过,请重新上传',
             icon: 'none',
             duration: 2000,
           })
         }
       },
-      complete:()=>{
-        wx.hideLoading();
-      }
+      // complete:()=>{
+      //   wx.hideLoading();
+      // }
     })
   },
   /**

+ 1 - 1
pages/faceRecognition/faceRecognition.json

@@ -1,4 +1,4 @@
 {
   "usingComponents": {},
-  "navigationBarTitleText":"人脸识别"
+  "navigationBarTitleText":"采集员人脸识别"
 }

+ 1 - 1
pages/faceRecognition/faceRecognition.wxml

@@ -1,6 +1,6 @@
 <wxs module="urls" src="../../utils/photoUrl.wxs"></wxs>
 <view class="p1">您还未进行人脸校验,请上传本人照片</view>
-<view class="p2">上传本人真实清晰面部照片。为了保障账户的安全,我们采用人脸识别技术来核实您本人的身份,此照片也将在您的身份卡上显示。</view>
+<view class="p2">上传本人清晰面部照片。为了保障账户的安全,我们采用人脸识别技术来核实您本人的身份,此照片也将在您的身份卡上显示。每次登陆都需进行人脸验证。</view>
 <view class="p3" bindtap="uploadPhoto">
 	<image wx:if="{{!photo}}" src="../../images/add.png" style="width:166rpx;height:143rpx;margin-left:67rpx;margin-top:50rpx"></image>
 	<view wx:if="{{!photo}}" style="text-align:center;color:#5caaff;margin-top:20rpx">点击上传照片</view>

+ 7 - 9
pages/finishInfo/finishInfo.js

@@ -98,9 +98,6 @@ Page({
       fail: () => {
         wx.hideLoading();
       }
-      // complete: (e) => {
-      //   wx.hideLoading();
-      // }
     })
   },
   uploadIdimg() {
@@ -132,7 +129,7 @@ Page({
           }
         })
       },
-      complete: (e) => {
+      fail: (e) => {
         wx.hideLoading();
       }
     })
@@ -156,7 +153,7 @@ Page({
           })
         } else {
           wx.showToast({
-            title: '人脸识别不通过,请重新上传',
+            title: '面部识别不通过,请重新上传',
             icon: 'none',
             duration: 3000,
           })
@@ -165,9 +162,6 @@ Page({
       fail: () => {
         wx.hideLoading();
       }
-      // complete: (e) => {
-      //   wx.hideLoading();
-      // }
     })
   },
   // 百度身份证OCR接口 首先去后台获得token
@@ -179,6 +173,7 @@ Page({
         appletsId: wx.getStorageSync('openId')
       },
       success: (res) => {
+        wx.hideLoading();
         if (res.data.data.status == 200) {
           let token = res.data.data.token;
           if (token) {
@@ -244,7 +239,7 @@ Page({
                       } else {
                         wx.showModal({
                           showCancel: false,
-                          content: '扫描证件信息与后台录入姓名不一致'
+                          content: '证件信息与后台登记姓名不一致'
                         })
                       }
                     } else {
@@ -275,6 +270,9 @@ Page({
           wx.hideLoading()
         }
       },
+      fail: () => {
+        wx.hideLoading();
+      }
     })
   },
   postListChange: function (e) {

+ 1 - 1
pages/finishInfo/finishInfo.wxml

@@ -45,7 +45,7 @@
 				<view class="shu"></view>
 				<view class="small-box">年龄</view>
 			</view>
-			<input name='age' disabled="{{true}}" value="{{age}}" class="weui-input" placeholder="录入身份证照片后系统计算" />
+			<input name='age' disabled="{{true}}" value="{{age}}" class="weui-input" placeholder="录入身份证后系统计算" />
 			<view class="flex-box">
 				<view class="shu"></view>
 				<view class="small-box">职务</view>

+ 0 - 1
pages/paiming/paiming.js

@@ -51,7 +51,6 @@ Page({
 
     }
   },
-
   onLoad() {
     this.paiXing();
   }

+ 3 - 3
pages/paiming/paiming.wxml

@@ -5,7 +5,7 @@
 		<view class="flex-box">
 			<!-- <view class="jifen">{{list.userTotalValue}}</view> -->
 			<view class="jifen">
-				<view wx:for='{{number.length}}' style="position: relative;">
+				<view wx:for='{{number.length}}' wx:key='idx' style="position: relative;">
 					<image src="/images/rili.png" style="width:130rpx;height:130rpx; display: inline-block;"></image>
 					<view class="fen">{{numbers.number(number,index)}}</view>
 				</view>
@@ -17,7 +17,7 @@
 		<view class="white-box">
 			<van-tabs active="{{ active }}" bind:change="onChange" color="#2087F7">
 				<van-tab title="采集记录">
-					<view class="flex-shu" wx:for="{{list.valueInfoList}}">
+					<view class="flex-shu" wx:key='idx' wx:for="{{list.valueInfoList}}">
 						<view>
 							<view>{{item.oldName}}</view>
 							<view class="tabs-time" wx:if='{{item.time}}'>{{time.formatDate(item.time)}}</view>
@@ -28,7 +28,7 @@
 					</view>
 				</van-tab>
 				<van-tab title="巡访记录">
-					<view class="flex-shu" wx:for="{{list.valueVisitList}}">
+					<view class="flex-shu" wx:key='idx' wx:for="{{list.valueVisitList}}">
 						<view>
 							<view>{{item.oldName}}</view>
 							<view class="tabs-time">{{time.formatDate(item.time)}}</view>

+ 1 - 1
pages/paiming/paiming.wxss

@@ -61,7 +61,7 @@ page {
   border: 5rpx solid white;
   margin: 0 auto;
   position: absolute;
-  top: 420rpx;
+  top: 430rpx;
   left: 5%;
 }
 

+ 2 - 2
pages/question/question.wxml

@@ -23,8 +23,8 @@
 		<van-collapse-item title="如何证明采集信息填写完全?" name="5">
 			<view>采集页面的所有卡片标志变为绿色</view><view>并且在工作日志的采集记录中该记录显示填全未审</view><view>代表着已完成,等待审核即可。</view>
 		</van-collapse-item>
-		<van-collapse-item title="上传照片失败?" name="6">
-			请保持网络状态良好,此次更新增加人脸识别功能,请上传老人清晰面部照片。
+		<van-collapse-item title="上传照片/人脸识别失败?" name="6">
+			请保持网络状态良好,此次更新增加人脸识别功能,请上传清晰面部照片。
 		</van-collapse-item>
 			<van-collapse-item title="其他问题?" name="7">
 			<view>其他问题可能由于微信版本较旧,请更新微信最新版本。</view>

+ 31 - 21
pages/userBook/userBook.wxml

@@ -20,7 +20,7 @@
 			登录账号
 		</view>
 	</view>
-	<view class="hd">①处于未登录状态时点击除首页外其他页面,自动跳转登录页面。输入账号密码登录即可。如账号密码出现异常,建议您先尝试清除手机缓存再登录。否则请联系管理员。</view>
+	<view class="hd">①处于未登录状态时点击除首页外其他页面,自动跳转登录页面。输入账号密码,同意下方协议之后登录,点击蓝色字样可跳转详细协议。</view>
 	<image src="../../images/user_login.png" class="img1"></image>
 	<view class="block">
 		<view class="num">
@@ -30,44 +30,54 @@
 			完善资料
 		</view>
 	</view>
-	<view class="hd">①点击我的->完善资料,填写基本信息。所有信息均为必填项,请如实填写,进一步了解巡访员的基本信息。</view>
+	<view class="hd">①登录之后跳转完善资料页面,请上传身份证照片和本人照片之后填写基本信息。所有信息均为必填项,为了进一步了解巡访员的基本信息,请如实填写。</view>
 	<image src="../../images/user_finish.png" class="img2"></image>
-	<view class="block">
+		<view class="block">
 		<view class="num">
 			Q4
 		</view>
 		<view class="question">
-			生成身份卡
+			人脸比对
 		</view>
 	</view>
-	<view class="hd">①点击我的->身份卡,照片仅可上传一次,请上传真实本人照片。建议先完善资料再生成身份卡,这样身份卡上的信息更全面。</view>
-	<view class="hd">②此卡可做为工作人员的身份认证,也可做为老人辨别来访人员身份的标识</view>
-	<view style="display:flex;margin-top: 20rpx;margin-bottom: 20rpx;">
-		<image src="../../images/user_camrea.png" class="img3"></image>
-		<image src="../../images/user_card.png" class="img3"></image>
-	</view>
+	<view class="hd">①完善资料之后跳转人脸比对页面,再次上传本人照片做校验。为了保证账号安全每次登录都需做人脸识别功能,确保是同一个工作人员。避免账号被他人滥用。</view>
+	<image src="../../images/user_face.png" class="img1"></image>
 	<view class="block">
 		<view class="num">
 			Q5
 		</view>
+		<view class="question">
+			生成身份卡
+		</view>
+	</view>
+	<view class="hd">①点击我的->身份卡,此功能在完善资料之后显示,此卡可做为工作人员的身份认证,也可做为老人辨别来访人员身份的标识</view>
+	<!-- <view class="hd"></view> -->
+	<!-- <view style="display:flex;margin-top: 20rpx;margin-bottom: 20rpx;"> -->
+		<!-- <image src="../../images/user_camrea.png" class="img3"></image> -->
+		<image src="../../images/user_card.png" class="img2"></image>
+	<!-- </view> -->
+	<view class="block">
+		<view class="num">
+			Q6
+		</view>
 		<view class="question">
 			采集老人信息流程
 		</view>
 	</view>
 	<view class="hd">①点击小程序页面下方采集,跳转采集页。</view>
-	<view class="hd">②请认真填写信息,随填随记。如果此次信息未填写完全,退出该页面,在工作日志->采集记录中可再次找到该老人,点击继续填写其他信息即可。</view>
+	<view class="hd">②请认真填写信息,每填完一项自动提交。如果此次信息未填写完全,退出该页面,在工作日志->采集记录中可再次找到该老人,点击继续填写其他信息即可。</view>
 	<view class="hd">③因为采集老人信息要确定您的地理位置,所以在上传老人照片时请点击同意您的手机定位设置对小程序开放。否则可能因为缺少定位信息导致不能审核。如果点击拒绝,再次打开权限的操作步骤为点击小程序右上角三个点->设置->打开位置权限。</view>
 	<view class="hd">④首先输入要采集的老人姓名,然后按内容填写老人的信息、子女信息、其他赡养义务人信息、巡访联系人信息。每一项完成之后左上角的标识会变成绿色,全部填写完成等待管理员审核即可。</view>
 	<view class="hd">⑤如添加同一家庭的老人,点击老人姓名右方的加号然后继续填写所有信息。点击✖可删除当前老人。</view>
-	<view class="hd">⑥采集一个老人积分+5</view>
+	<view class="hd">⑥由于信息过多,找不到自己哪一项未填写,可点击右上角黄色铃铛图标,可直接找到您未填写的地方。</view>
+	<view class="hd">⑦采集一个老人积分+5</view>
 	<view style="display:flex;margin-top: 20rpx;margin-bottom: 20rpx;">
 		<image src="../../images/user_info.png" class="img4"></image>
 		<image src="../../images/user_inputname.png" class="img4"></image>
-
 	</view>
 	<view class="block">
 		<view class="num">
-			Q6
+			Q7
 		</view>
 		<view class="question">
 			采集老人信息查看
@@ -78,7 +88,7 @@
 	<image src="../../images/user_collect.png" class="img2"></image>
 	<view class="block">
 		<view class="num">
-			Q7
+			Q8
 		</view>
 		<view class="question">
 			巡访老人流程
@@ -93,7 +103,7 @@
 	<image src="../../images/user_old.png" class="img5"></image>
 	<view class="block">
 		<view class="num">
-			Q8
+			Q9
 		</view>
 		<view class="question">
 			巡访信息查看
@@ -107,7 +117,7 @@
 	</view>
 	<view class="block">
 		<view class="num">
-			Q9
+			Q10
 		</view>
 		<view class="question">
 			巡访员排名查看
@@ -121,7 +131,7 @@
 	</view>
 	<view class="block">
 		<view class="num">
-			Q10
+			Q11
 		</view>
 		<view class="question">
 			修改密码
@@ -135,7 +145,7 @@
 	</view>
 	<view class="block">
 		<view class="num">
-			Q11
+			Q12
 		</view>
 		<view class="question">
 			意见反馈
@@ -146,7 +156,7 @@
 	<image src="../../images/user_11.png" class="img1"></image>
 	<view class="block">
 		<view class="num">
-			Q12
+			Q13
 		</view>
 		<view class="question">
 			关于我们
@@ -157,7 +167,7 @@
 	<image src="../../images/user_12.png" class="img1"></image>
 	<view class="block">
 		<view class="num">
-			Q12
+			Q14
 		</view>
 		<view class="question">
 			退出登录

+ 1 - 1
pages/visitandinfo/visitandinfo.wxml

@@ -56,7 +56,7 @@
 		<image wx:if='{{list.length==0}}' style="width:220rpx;height:169rpx;position:absolute;top:400rpx;left:265rpx" src="../../images/nodata1.png"></image>
 		<view wx:if='{{list.length==0}}' style="position:absolute;top:580rpx;left:320rpx;font-size:28rpx;color:#bcdbfd">暂无数据</view>
 		<scroll-view scroll-y="true" id="scroll1" style='height: {{scrollHeight1 + "px"}};width:700rpx;margin-left:25rpx;margin-top:20rpx;font-size:28rpx'>
-			<view wx:for="{{list}}" class="checkbox_border">
+			<view wx:for="{{list}}" wx:key="oldIdNumber" class="checkbox_border">
 				<view data-infos="{{item}}" bindtap="visitJilu">
 					<view style="width:670rpx;margin-left:15rpx;height:60rpx;margin-top:20rpx;border-bottom:1px solid #f4f4f4">
 						<view style="float:left;color:#333333;">{{item.oldInfo}}</view>

+ 2 - 2
utils/util.js

@@ -1,6 +1,6 @@
 const globalData = {
-  //  publicUrl: 'https://info.windd.cn/collection',//正式
-  publicUrl: 'https://info.windd.cn/test',//测试
+   publicUrl: 'https://info.windd.cn/collection',//正式
+  // publicUrl: 'https://info.windd.cn/test',//测试
   // publicUrl:'http://10.16.4.7:7001'//立秋
 };
 module.exports = {