appraise.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <template>
  2. <view class="bgColor">
  3. <view class="rapirMessage">
  4. <view class="label">
  5. 报修信息
  6. </view>
  7. <view class="state">
  8. <view>工单单号:&nbsp;{{data.incidentsign}}</view>
  9. <view :class="stateClassFn(data.state.name)">{{data.state.name}}</view>
  10. </view>
  11. <view class="description">
  12. <view>
  13. 报修内容:
  14. </view>
  15. <view>
  16. {{data.description||"暂无"}}
  17. </view>
  18. </view>
  19. <view class="ipt">
  20. <view>
  21. 报修图片:
  22. </view>
  23. <view class="imgs-container">
  24. <img :src="img" v-for="(img, index) in imgs_wechatRequesterIncident" :key="index" @click="handleImgsClick(index, 'wechatRequesterIncident')" v-if="imgs_wechatRequesterIncident.length">
  25. <span v-if="!imgs_wechatRequesterIncident.length">暂无</span>
  26. </view>
  27. </view>
  28. <view class="ipt">
  29. <view>
  30. 处理图片:
  31. </view>
  32. <view class="imgs-container">
  33. <img :src="img" v-for="(img, index) in imgs_incident" :key="index" @click="handleImgsClick(index, 'incident')" v-if="imgs_incident.length">
  34. <span v-if="!imgs_incident.length">暂无</span>
  35. </view>
  36. </view>
  37. <view class="faultLocation">
  38. <view>
  39. 报修地址:
  40. </view>
  41. <view>
  42. {{data.houseNumber}}
  43. </view>
  44. </view>
  45. </view>
  46. <view class="label">
  47. 报修评价
  48. </view>
  49. <view class="rate">
  50. <span class="pj">评价:</span><cube-rate v-model="rate"></cube-rate>
  51. </view>
  52. <view class="rateText">
  53. <cube-textarea v-model="rateText" placeholder="您可以从响应速度、解决情况、服务态度等方面,给我们作出相应的评价"></cube-textarea>
  54. </view>
  55. <view class="chehuiBox">
  56. </view>
  57. <view class="chehui">
  58. <view class="btn" @click="evaluate()">提&nbsp;交&nbsp;评&nbsp;价</view>
  59. </view>
  60. <promp-ting :conents="promptingConent" :status="promptingStatus"></promp-ting>
  61. <load-ing v-show="loadShow"></load-ing>
  62. </view>
  63. </template>
  64. <script setup>
  65. import { startOfDay, endOfDay, format, add } from 'date-fns'
  66. import { ref, reactive, computed } from 'vue'
  67. import { onLoad, onShow, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
  68. import { api_getDictionary, api_taskresolve,} from "@/http/api.js"
  69. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  70. import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
  71. import { computedStateStyle } from '@/filters/computedStateStyle.js'
  72. import { computedCurrentLogOverTime } from '@/filters/computedCurrentLogOverTime.js'
  73. import { defaultColor } from '@/static/js/theme.js'
  74. import { useSetTitle } from '@/share/useSetTitle.js'
  75. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  76. import { useLoginUserStore } from '@/stores/loginUser'
  77. import { useIncidentNumStore } from '@/stores/incidentNum'
  78. import { useIncidentListSearchStore } from '@/stores/incidentListSearch'
  79. useSetTitle();
  80. const loginUserStore = useLoginUserStore();
  81. const incidentNumStore = useIncidentNumStore();
  82. const incidentListSearchStore = useIncidentListSearchStore();
  83. const { formatDate } = filterFormatDate();
  84. const { priorityStyle } = computedPriorityStyle();
  85. const { stateStyle } = computedStateStyle();
  86. const { currentLogOverTime } = computedCurrentLogOverTime();
  87. const { makePhoneCall } = useMakePhoneCall();
  88. // 主题颜色
  89. const primaryColor = ref(defaultColor)
  90. const assignFlag = ref(false);//指派权限
  91. const qiangdan = ref(false);//接单权限
  92. const deptRepair = ref({});//科内报修
  93. const publicRepair = ref({});//公共报修
  94. // 数据
  95. const dataInfo = reactive({
  96. tabs: [{id: 0, name: '我的报修', value: 'all', num: ''},],
  97. tabActiveId: 0,//当前选择的tab
  98. list: [],//工单列表
  99. idx: 0,//页码
  100. hasMore: true,//是否有更多数据
  101. isFilter: false,//筛选框开关
  102. isAttachment: false,//图片和录音开关
  103. incidentId: undefined,
  104. stateValue:0,
  105. evtFilter: {
  106. hospital: {},
  107. selected: 'todoingAll',
  108. area: {id: 0, area: '全部'},
  109. category: {id: 0, category: '全部'},
  110. acceptDate: [],
  111. }
  112. })
  113. function (){
  114. api_taskresolve().then(res=>{
  115. })
  116. }
  117. onLoad((option) => {
  118. console.log(option)
  119. })
  120. </script>
  121. <style>
  122. </style>