lilei 4 سال پیش
والد
کامیت
23f44d7a33
2فایلهای تغییر یافته به همراه5 افزوده شده و 5 حذف شده
  1. 3 3
      hybrid/html/ddvideo.html
  2. 2 2
      hybrid/html/video.html

+ 3 - 3
hybrid/html/ddvideo.html

@@ -126,7 +126,7 @@
 					<!-- 评论 -->
 					<div class="pz-pinglun">
 						<div class="remarks">
-							<a-textarea :maxlength="300" placeholder="请填写备注内容(最多300个字符)" v-model="curZbItem.comments" :rows="4" />
+							<a-textarea :maxlength="500" placeholder="请填写备注内容(最多500个字符)" v-model="curZbItem.comments" :rows="4" />
 						</div>
 						<div class="icons" @click="takePhotos(2)">
 							<a-icon class="aicon" type="camera" />
@@ -341,7 +341,7 @@
 					},
 					// 抓拍
 					takePhotos(type) {
-						if (!this.curZbItem.taskTargetPhotoList || this.curZbItem.taskTargetPhotoList.length < 6) {
+						if (!this.curZbItem.taskTargetPhotoList || this.curZbItem.taskTargetPhotoList.length < 5) {
 							let pd = JSON.stringify({
 								streamId: this.curVideo && this.curVideo.streamId,
 								videoPlayerStatus: this.videoPlayerStatus,
@@ -349,7 +349,7 @@
 							});
 							this.sendMsg('takePhotos', this.xdType == 'video' ? pd : '')
 						} else {
-							this.sendMsg('toast', '最多抓拍6张图片')
+							this.sendMsg('toast', '最多抓拍5张图片')
 						}
 					},
 					// 拍照成功后,返回图片地址

+ 2 - 2
hybrid/html/video.html

@@ -399,14 +399,14 @@
 					},
 					// 抓拍
 					takePhotos(type){
-						if(!this.curZbItem.taskTargetPhotoList||this.curZbItem.taskTargetPhotoList.length<6){
+						if(!this.curZbItem.taskTargetPhotoList||this.curZbItem.taskTargetPhotoList.length<5){
 							this.sendMsg('takePhotos',JSON.stringify({
 								streamId: this.curVideo&&this.curVideo.streamId,
 								videoPlayerStatus: this.videoPlayerStatus,
 								type: type
 							}))
 						}else{
-							this.sendMsg('toast','最多抓拍6张图片')
+							this.sendMsg('toast','最多抓拍5张图片')
 						}
 					},
 					// 拍照成功后,返回图片地址