liukangdong
2024-12-03 a40e6a45b2207a9b172b7687ce6e4fe7da8b9ac6
h5/pages/workOrder/detail.vue
@@ -10,7 +10,7 @@
         <view class="desc">{{ info.content }}</view>
         <view class="file_list">
            <view class="file" v-for="(item,index) in info.fileList">
               <image v-if="item.type == 0" :src="item.fileurlFull" mode="widthFix"></image>
               <image v-if="item.type == 0" :src="item.fileurlFull" mode="aspectFill"></image>
               <video v-if="item.type == 1" :src="item.fileurlFull" :controls="false"></video>
            </view>
         </view>
@@ -33,14 +33,14 @@
            </view>
            <view class="line" v-if="info.getDate">
               <view class="la">上门时间:</view>
               <view class="val">{{ info.getDate }}</view>
               <view class="val">{{ info.getDate.slice(0, 16) }}</view>
            </view>
         </view>
         <view class="result_wrap" v-if="info.dealStatus == 2">
            <div class="title">处理结果</div>
            <view v-if="info.dealFileList && info.dealFileList.length > 0" class="file_list">
               <view class="file" v-for="item in info.dealFileList">
                  <image v-if="item.type == 0" :src="item.fileurlFull" mode="widthFix"></image>
                  <image v-if="item.type == 0" :src="item.fileurlFull" mode="aspectFill"></image>
                  <video v-if="item.type == 1" :src="item.fileurlFull" :controls="false"></video>
               </view>
            </view>
@@ -49,7 +49,7 @@
            </view>
            <view class="line">
               <view class="la">处理人:</view>
               <view class="val">{{ info.dealUserName }}</view>
               <view class="val">{{ info.dealUserName }}{{info.dealUserCompany ? '-' + info.dealUserCompany : ''}}</view>
            </view>
            <view class="line">
               <view class="la">处理时间:</view>
@@ -100,7 +100,7 @@
               </view>
               <view class="adduser_list_item_ipt1_upload" v-for="(item, i) in dealFileList" :key="i">
                  <u-icon class="close" size="20" name="close-circle-fill" color="red"
                     @click="fileDel('dealBeforeFileList', i)"></u-icon>
                     @click="fileDel('dealFileList', i)"></u-icon>
                  <image v-if="item.type == 0" :src="item.fileurlFull" mode="widthFix"></image>
                  <video v-if="item.type == 1" :src="item.fileurlFull" :controls="false"></video>
               </view>
@@ -316,7 +316,8 @@
            image,
            video {
               width: 156rpx;
               width: 156rpx;
               height: 156rpx;
            }
         }
      }