diff --git a/src/project/fd/AppPointsReview/AppPointsReview.vue b/src/project/fd/AppPointsReview/AppPointsReview.vue
index a3799266..c6788857 100644
--- a/src/project/fd/AppPointsReview/AppPointsReview.vue
+++ b/src/project/fd/AppPointsReview/AppPointsReview.vue
@@ -105,7 +105,9 @@ export default {
current: this.current,
size: 10,
girdId: this.user.girdId,
- applyItemId: this.search.type
+ applyItemId: this.search.type,
+ createTimeStart: this.search.startTime,
+ createTimeEnd: this.search.endTime
}).then(res=> {
if(res?.data) {
res.data.records.map((item) => {
diff --git a/src/project/fd/AppPointsReview/detail.vue b/src/project/fd/AppPointsReview/detail.vue
index d8659efa..421243dc 100644
--- a/src/project/fd/AppPointsReview/detail.vue
+++ b/src/project/fd/AppPointsReview/detail.vue
@@ -11,7 +11,15 @@
{{info.content}}
-
![]()
+
+
+
@@ -32,6 +40,12 @@
保存
+
+
+
+
+
+
@@ -44,6 +58,8 @@ export default {
value: '',
id: '',
info: {},
+ showVideo: false,
+ videoUrl: ''
};
},
onLoad(option) {
@@ -89,15 +105,25 @@ export default {
}
})
},
- previewImages(images, img) {
+ previewImages(img) {
+ var imgs = []
+ this.info.files.map((item) => {
+ if(item.postfix != '.mp4') {
+ imgs.push(item.accessUrl)
+ }
+ })
uni.previewImage({
- urls: images.map(v => v.accessUrl),
+ urls: imgs,
current: img
})
},
callPhone(phone) {
uni.makePhoneCall({ phoneNumber: phone })
},
+ choose(item) {
+ this.videoUrl = item.accessUrl
+ this.showVideo = true
+ },
},
};
@@ -158,14 +184,27 @@ uni-page-body {
margin-bottom: 20px;
}
.img-list {
- img {
+ div {
+ display: inline-block;
+ }
+ .pic-img {
width: 210px;
height: 210px;
margin: 0 16px 16px 0;
}
- img:nth-of-type(3n) {
+ .pic-img:nth-of-type(3n) {
margin-right: 0;
}
+ .video-item {
+ position: relative;
+ }
+ .play-icon {
+ position: absolute;
+ top: 80px;
+ left: 80px;
+ width: 50px;
+ height: 50px;
+ }
}
}
.pass-info {
@@ -260,5 +299,15 @@ uni-page-body {
color: #fff;
}
}
+ .audio {
+ width: 100%;
+ height: 600px;
+ box-sizing: border-box;
+ padding: 32px;
+ .only_video {
+ width: 100%;
+ height: 100%;
+ }
+ }
}
\ No newline at end of file