|
@@ -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张图片')
|
|
|
}
|
|
|
},
|
|
|
// 拍照成功后,返回图片地址
|