IncidentAttachment.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <template>
  2. <view class="container" @touchmove.stop.prevent>
  3. <view class="container_head">
  4. {{incidentData.reqAttachment ? '报修图片' : ''}}{{incidentData.reqAttachment && incidentData.callID ? '及' : ''}}{{incidentData.callID ? '录音' : ''}}
  5. </view>
  6. <view class="container_form">
  7. <view class="repairImgList" v-if="incidentData.reqAttachment">
  8. <image class="repairImg" :src="img.previewUrl" mode="aspectFill" v-for="(img, i) in pageData.repairImgList" :key="i" @click="previewImg(i)"></image>
  9. </view>
  10. <view class="audio" v-if="incidentData.callID">
  11. <!-- <sy-audio isCountDown src='https://m801.music.126.net/20240418145806/654da83af722660e0fd769b4751127f0/jdyyaac/obj/w5rDlsOJwrLDjj7CmsOj/22271469539/935c/9115/d211/9dba43d41e350fbea95efe39cf5d7e07.m4a' audioTitle="" subheading=""></sy-audio> -->
  12. <sy-audio ref="audio" isCountDown :src='pageData.audioSrc' audioTitle="" subheading=""></sy-audio>
  13. </view>
  14. </view>
  15. <view class="container_foot">
  16. <view class="foot_btns">
  17. <view class="know" @click="know">知道了</view>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="mask" @touchmove.stop.prevent></view>
  22. </template>
  23. <script setup>
  24. import { defineEmits, ref, reactive, defineProps } from 'vue'
  25. import { onLoad } from '@dcloudio/uni-app'
  26. import { useLoginUserStore } from '@/stores/loginUser'
  27. import { api_wechatRequesterIncident, api_callrecord } from "@/http/api.js"
  28. const emit = defineEmits(['cancelEmit', 'knowEmit']);
  29. const { incidentData } = defineProps({
  30. incidentData: Object,
  31. });
  32. const loginUserStore = useLoginUserStore();
  33. // 页面数据
  34. const pageData = reactive({
  35. repairImgList: [],//报修图片
  36. audioSrc: '',//音频
  37. });
  38. const audio = ref(null);
  39. // 取消
  40. function cancel(){
  41. emit('cancelEmit')
  42. }
  43. // 确认
  44. function know(){
  45. audio.value.audioDestroy()
  46. emit('knowEmit');
  47. }
  48. // 预览图片
  49. function previewImg(index){
  50. uni.previewImage({
  51. current: index,
  52. urls: pageData.repairImgList.map(v => v.previewUrl),
  53. longPressActions: {
  54. itemList: ['发送给朋友', '保存图片', '收藏'],
  55. success: function(data) {
  56. console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
  57. },
  58. fail: function(err) {
  59. console.log(err.errMsg);
  60. }
  61. }
  62. });
  63. }
  64. // 获取报修图片
  65. function getRepairImgs() {
  66. uni.showLoading({
  67. title: "加载中",
  68. mask: true,
  69. });
  70. api_wechatRequesterIncident(incidentData.id).then((res) => {
  71. uni.hideLoading();
  72. res.data = res.data || [];
  73. res.data.forEach(v => {
  74. v.previewUrl = location.origin + "/file" + v.relativeFilePath;
  75. })
  76. pageData.repairImgList = res.data;
  77. });
  78. }
  79. // 获取通话音频
  80. function getCallrecord() {
  81. uni.showLoading({
  82. title: "加载中",
  83. mask: true,
  84. });
  85. let postData = {
  86. idx: 0,
  87. sum: 1,
  88. callrecord: {callAccept: incidentData.callID},
  89. };
  90. api_callrecord(postData).then((res) => {
  91. uni.hideLoading();
  92. if(res.status == 200){
  93. res.list = res.list || [];
  94. if(res.list.length){
  95. pageData.audioSrc = location.protocol + "//" + location.hostname + res.list[0].recordingFileName;
  96. }else{
  97. pageData.audioSrc = '';
  98. }
  99. pageData.audioSrc = 'https://webfs.tx.kugou.com/202404242004/4b0f4005ec22ee383a68b94258697ccd/v2/eb95a90ba7c513810d694d548b924a29/G347/M01/D0/C3/O5UEAGUDY0aAC4eQADXnW-VR_t4017.mp3'
  100. }else{
  101. uni.showToast({
  102. icon: 'none',
  103. title: res.msg || '请求数据失败!'
  104. });
  105. }
  106. });
  107. }
  108. onLoad((option) => {
  109. incidentData.reqAttachment && getRepairImgs();
  110. incidentData.callID && getCallrecord();
  111. })
  112. </script>
  113. <style lang="scss" scoped>
  114. .mask{
  115. position: fixed;
  116. left: 0;
  117. top: 0;
  118. right: 0;
  119. bottom: 0;
  120. background-color: rgba(0, 0, 0, 0.4);
  121. z-index: 999;
  122. }
  123. .container{
  124. position: fixed;
  125. left: 50%;
  126. top: 50%;
  127. transform: translate(-50%, -50%);
  128. z-index: 9999;
  129. width: 690rpx;
  130. background-color: #fff;
  131. border-radius: 10rpx;
  132. .container_head{
  133. padding: 55rpx;
  134. font-size: 32rpx;
  135. color: #333;
  136. text-align: center;
  137. }
  138. .container_form{
  139. padding: 0 55rpx;
  140. .repairImgList{
  141. margin-bottom: 55rpx;
  142. display: flex;
  143. justify-content: space-between;
  144. align-items: center;
  145. gap: 15rpx;
  146. .repairImg{
  147. width: 184rpx;
  148. height: 186rpx;
  149. }
  150. }
  151. .audio{
  152. margin-bottom: 45rpx;
  153. }
  154. }
  155. .container_foot{
  156. .foot_btns{
  157. display: flex;
  158. border-top: 1rpx solid #DDDDDD;
  159. .know{
  160. flex: 1;
  161. font-size: 32rpx;
  162. padding: 30rpx;
  163. display: flex;
  164. justify-content: center;
  165. color: $uni-primary;
  166. }
  167. }
  168. }
  169. }
  170. </style>