IncidentAttachment.vue 4.4 KB

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