diff --git a/src/project/fd/AppPointsReview/detail.vue b/src/project/fd/AppPointsReview/detail.vue index 4d67d036..9471a213 100644 --- a/src/project/fd/AppPointsReview/detail.vue +++ b/src/project/fd/AppPointsReview/detail.vue @@ -52,7 +52,7 @@
-
+
@@ -118,7 +118,7 @@ export default { if(res?.data) { this.info = res.data this.info.images = res.data.files.filter(e => (['jpeg', 'jpg', 'png'].includes(e.name.split('.')[1]))) - this.info.videos = res.data.files.filter(e => (['mp4'].includes(e.name.split('.')[1]))) + this.info.videos = res.data.files.filter(e => (['mp4', 'MOV'].includes(e.name.split('.')[1]))) this.flag = false } }) @@ -152,7 +152,7 @@ export default { previewImages(img) { var imgs = [] this.info.files.map((item) => { - if(item.postfix != '.mp4') { + if(item.postfix != '.mp4' || item.postfix != '.MOV') { imgs.push(item.accessUrl) } }) @@ -197,11 +197,6 @@ export default { this.$http.post(`/app/appintegraluserapply/updateByGirdMember`,{ ...this.info, userId: this.info.integralUserId, - // phone: this.info.phone, - // applyItemId: this.info.applyItemId, - // content: this.info.content, - // girdId: this.info.girdId, - // id: this.info.id }).then(res=> { if(res?.data) { this.$u.toast('提亀成功')