pyt
2025-02-25 6a93ee6da55301a92ad76bdf2b4a66f656e6940e
H5/pages/progress/progress.vue
@@ -44,14 +44,16 @@
                  </view>
                  <view class="context">{{ item.describe }}</view>
                  <view class="proImg">
                     <view class="imgOrVedio" v-for="(item, index) in item.imgUrl.split(',')" :key="index">
                     <view v-if=" item.imgUrl" class="imgOrVedio" v-for="(item, index) in item.imgUrl.split(',')"
                        :key="index">
                        <image :src="item" class="img shrink0" mode="aspectFill" />
                        <view
                           class="absolute mt-19 w-140 h-140 bgcolor5 top0 left0 br-8 flex a-center j-center">
                           <image @tap="viewImage(item)" src="@/static/Appeal/amplify.png" class="w-19 h-19" />
                        </view>
                     </view>
                     <view class="imgOrVedio" v-for="(item, index) in item.video.split(',')" :key="index">
                     <view v-if="item.video" class="imgOrVedio" v-for="(item, index) in item.video.split(',')"
                        :key="index">
                        <video id="myVideo" class="w-140 h-140 mt-19 shrink0" disabled :controls="false"
                           :show-center-play-btn="false" :src="item" />
                        <view class="videoOpen" @click.stop="openVideo(item)">
@@ -100,7 +102,10 @@
         getComplaintDetail({
            id: params.id
         }).then(res => {
            this.info = res.data
            console.log('res', res)
            this.info = {
               ...res.data
            }
         })
      },
      methods: {