repairsDetail.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813
  1. <template>
  2. <view class="incidentDetail">
  3. <view class="head">
  4. <view class="tab" :class="{active: tab.value === dataInfo.tabActiveValue}" v-for="tab in dataInfo.tabs" :key="tab.id" @click="clickTab(tab.value)">
  5. {{tab.name}}<text v-if="tab.num !== ''">({{tab.num}})</text>
  6. </view>
  7. </view>
  8. <scroll-view scroll-y class="body">
  9. <!-- 工单信息 -->
  10. <template v-if="dataInfo.tabActiveValue === '1'">
  11. <view class="detail_head">
  12. <text class="title">报修信息</text>
  13. <view class="other">
  14. <text class="priority" :style="priorityStyle(dataInfo.incidentData.priority)">{{dataInfo.incidentData.priority ? dataInfo.incidentData.priority.name + ' ' : ''}}</text>
  15. <view class="status" :style="stateStyle(dataInfo.incidentData.state)">{{dataInfo.incidentData.state ? dataInfo.incidentData.state.name : ''}}</view>
  16. </view>
  17. </view>
  18. <view class="detail_item_wrap">
  19. <view class="deital_item">
  20. <text class="name">故障描述:</text>
  21. <text class="value">{{dataInfo.incidentData.description || '无'}}</text>
  22. </view>
  23. <view class="deital_item">
  24. <text class="name">关联资产:</text>
  25. <text class="value">{{dataInfo.incidentData.assetDTO && dataInfo.incidentData.assetDTO.name || '无'}}</text>
  26. </view>
  27. <view class="deital_item">
  28. <text class="name">报修图片:</text>
  29. <view class="value img">
  30. <image class="imgItem" :src="img.thumbFilePath" mode="aspectFill" v-for="(img, i) in dataInfo.repairImgs" :key="i" @click="previewImg(i, 'repairImgs')"></image>
  31. <!-- <image class="imgItem" src="/static/img/300.jpg" v-for="(img, i) in dataInfo.repairVideo" :key="i" @click="videoView(img)"></image> -->
  32. </view>
  33. </view>
  34. <view class="deital_item">
  35. <text class="name">录音:</text>
  36. <view class="value img" v-if="dataInfo.repairAudio.length>0">
  37. <sy-audio class="resourceItem-audio" ref="audio" isCountDown :src="img.thumbFilePath" v-for="(img, i) in dataInfo.repairAudio" :key="i" ></sy-audio>
  38. </view>
  39. </view>
  40. <view class="deital_item">
  41. <text class="name">联系人:</text>
  42. <text class="value">{{dataInfo.incidentData.contacts || '无'}}</text>
  43. <text v-if="dataInfo.incidentData.contactsInformation" @click="makePhoneCall(dataInfo.incidentData.contactsInformation)">{{dataInfo.incidentData.contactsInformation}}<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></text>
  44. </view>
  45. <!-- <view class="deital_item">
  46. <text class="name">联系电话:</text>
  47. <view class="value" @click="makePhoneCall(dataInfo.incidentData.incomingPhone)" v-if="dataInfo.incidentData.incomingPhone">{{dataInfo.incidentData.incomingPhone}}<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></view>
  48. <text class="value" v-else>无</text>
  49. <uni-icons v-if="dataInfo.incidentData.callID" @click="attachmentClick" type="mic-filled" class="mic-filled" :size="22" :color="primaryColor"></uni-icons>
  50. </view> -->
  51. <view class="deital_item" v-if="isDept.valueconfig==1">
  52. <text class="name">报修科室:</text>
  53. <text class="value">{{dataInfo.incidentData.department ? dataInfo.incidentData.department.dept : '无'}}</text>
  54. </view>
  55. <view class="deital_item">
  56. <text class="name">详细地址:</text>
  57. <text class="value" v-if="dataInfo.incidentData.place || dataInfo.incidentData.houseNumber">{{dataInfo.incidentData.place ? (dataInfo.incidentData.place.building.buildingName + dataInfo.incidentData.place.floorName) : ''}}<text v-if="dataInfo.incidentData.place && dataInfo.incidentData.place.floorName">层</text> {{dataInfo.incidentData.houseNumber || ''}}</text>
  58. <text class="value" v-else>无</text>
  59. </view>
  60. <view class="deital_item">
  61. <text class="name">报修人:</text>
  62. <text class="value">{{dataInfo.incidentData.requester ? dataInfo.incidentData.requester.name : '无'}}</text>
  63. </view>
  64. <view class="deital_item">
  65. <text class="name">报修类型:</text>
  66. <text class="value" v-if="dataInfo.incidentData.repairIncidentType">{{dataInfo.incidentData.repairIncidentType.name}}</text>
  67. </view>
  68. </view>
  69. <view class="detail_head">
  70. <text class="title">处理信息</text>
  71. </view>
  72. <view class="detail_item_wrap">
  73. <view class="deital_item">
  74. <text class="name">处理人:</text>
  75. <text class="value" v-if="dataInfo.incidentData.state.value == 'pending' && dataInfo.incidentData.currentLog">{{dataInfo.incidentData.currentLog.workerName}}<text @click="makePhoneCall(dataInfo.incidentData.currentLog.workerPhone)" v-if="dataInfo.incidentData.currentLog.workerPhone">({{dataInfo.incidentData.currentLog.workerPhone}})<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></text></text>
  76. <text class="value" v-else-if="dataInfo.incidentData.state.value != 'pending' && dataInfo.incidentData.handlingPersonnelUser">{{dataInfo.incidentData.handlingPersonnelUser.name}}<text @click="makePhoneCall(dataInfo.incidentData.handlingPersonnelUser.phone)" v-if="dataInfo.incidentData.handlingPersonnelUser.phone">({{dataInfo.incidentData.handlingPersonnelUser.phone}})<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></text></text>
  77. <text class="value" v-else>无</text>
  78. </view>
  79. <!-- <view class="deital_item">
  80. <text class="name">处理人电话:</text>
  81. <view class="value" @click="makePhoneCall(dataInfo.incidentData.incomingPhone)" v-if="dataInfo.incidentData.incomingPhone">{{dataInfo.incidentData.incomingPhone}}<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></view>
  82. <text class="value" v-else>无</text>
  83. <uni-icons v-if="dataInfo.incidentData.callID" @click="attachmentClick" type="mic-filled" class="mic-filled" :size="22" :color="primaryColor"></uni-icons>
  84. </view> -->
  85. <view class="deital_item">
  86. <text class="name">处理图片:</text>
  87. <view class="value img">
  88. <image class="imgItem" :src="img.thumbFilePath" mode="aspectFill" v-for="(img, i) in dataInfo.handlerImgs" :key="i" @click="previewImg(i, 'handlerImgs')"></image>
  89. </view>
  90. </view>
  91. <view class="deital_item">
  92. <text class="name">维修总价:</text>
  93. <text class="value">{{dataInfo.incidentData.rsPrice === undefined ? '无' : dataInfo.incidentData.rsPrice + '元'}}</text>
  94. </view>
  95. </view>
  96. </template>
  97. <!-- 维修汇总单 -->
  98. <template v-if="dataInfo.tabActiveValue === '2'">
  99. <view class="detail_head">
  100. <text class="title">耗材清单</text>
  101. </view>
  102. <view class="summaryItem_bodyItem" v-for="item in dataInfo.summaryObj.consumableList" :key="item.id">
  103. <view class="summaryItem_bodyItem_top">
  104. <text class="name ellipsis">{{ item.consumableName }}<template v-if="item.consumableBrandModel">({{ item.consumableBrandModel }})</template></text>
  105. <text class="value">{{ item.consumableEndPrice }}元</text>
  106. </view>
  107. <view class="summaryItem_bodyItem_bottom">
  108. <text class="name">x{{ item.consumablesNum }}{{ item.consumablesUnit }}</text>
  109. <text class="value">总价{{item.consumablesNum * item.consumableEndPrice}}元</text>
  110. </view>
  111. </view>
  112. <view class="summaryItem_bodyItem_total">耗材总价:{{dataInfo.summaryObj.consumablePrice}}元</view>
  113. <view class="detail_head">
  114. <text class="title">工时清单</text>
  115. </view>
  116. <view class="summaryItem_bodyItem" v-for="item in dataInfo.summaryObj.workHourManagementList" :key="item.id">
  117. <view class="summaryItem_bodyItem_top">
  118. <text class="name ellipsis">{{ item.workName }}</text>
  119. <text class="value">{{ item.wage }}元</text>
  120. </view>
  121. <view class="summaryItem_bodyItem_bottom">
  122. <text class="name">x{{ item.workHourNum2 }}{{ item.workUnit }}</text>
  123. <text class="value">总价{{item.workHourNum2 * item.wage}}元</text>
  124. </view>
  125. </view>
  126. <view class="summaryItem_bodyItem_total">工时总价:{{dataInfo.summaryObj.workHourPrice}}元</view>
  127. <view class="summaryItem_total">汇总单总价:{{dataInfo.summaryObj.totalMaintenancePrice}}元</view>
  128. </template>
  129. <!-- 处理流程 -->
  130. <template v-if="dataInfo.tabActiveValue === '3'">
  131. <view class="process_item_wrap">
  132. <view class="process_item" v-for="item in dataInfo.incidentLogList" :key="item.id">
  133. <view class="process_item_top">
  134. <view class="name">{{item.logType ? item.logType.name : ''}}</view>
  135. <view class="value" v-if="item.remark">({{item.remark}})</view>
  136. </view>
  137. <view class="process_item_bottom">
  138. <text class="name">{{formatDate(item.startTime, 'yyyy-MM-dd HH:mm:ss')}}</text>
  139. <text class="value" v-if="item.appointorName">{{item.appointorName}}</text>
  140. </view>
  141. </view>
  142. </view>
  143. </template>
  144. <!-- 评价信息 -->
  145. <template v-if="dataInfo.tabActiveValue === '4'">
  146. <view class="detail_head">
  147. <text class="title">评价信息</text>
  148. </view>
  149. <view class="appraise_detail" v-for="item in dataInfo.resolveLogs" :key="item.id">
  150. <view class="appraise_detail_top">
  151. <text>{{formatDate(item.startTime, 'yyyy-MM-dd HH:mm:ss')}}</text>
  152. <view v-if="dataInfo.incidentData.wxdegree">
  153. <uni-rate readonly :value="dataInfo.incidentData.wxdegree.value" />
  154. </view>
  155. </view>
  156. <view class="appraise_detail_bottom">
  157. <text>{{item.remark}}</text>
  158. </view>
  159. </view>
  160. <view class="detail_head">
  161. <text class="title">回访信息</text>
  162. </view>
  163. <view class="appraise_detail" v-for="item in dataInfo.callbackLogs" :key="item.id">
  164. <view class="appraise_detail_top">
  165. <text>{{formatDate(item.startTime, 'yyyy-MM-dd HH:mm:ss')}}</text>
  166. <text v-if="dataInfo.incidentData.degree">{{dataInfo.incidentData.degree.name}}</text>
  167. </view>
  168. <view class="appraise_detail_bottom">
  169. <text>{{item.remark}}</text>
  170. </view>
  171. </view>
  172. </template>
  173. </scroll-view>
  174. <view class="foot_common_btns">
  175. <button @click="goBack" type="default" class="primaryButton btn">返回</button>
  176. <button v-if="stateId==20413" @click="recall" type="default" class="primaryButton btn">撤销</button>
  177. </view>
  178. <IncidentAttachment v-if="dataInfo.isAttachment" @knowEmit="knowAttachment" :incidentData="dataInfo.incidentData"></IncidentAttachment>
  179. <uni-popup ref="inputDialog" background-color="#fff" type="center" :before-close="true">
  180. <view class="ch-class">撤销原因</view>
  181. <view class="popup-content">
  182. <input type="text" focus placeholder="请输入撤销原因" v-model="recallValue">
  183. </view>
  184. <view class="foot_common_btns">
  185. <button @click="closeDialog" size="mini" type="default" class="primaryButton btn">取消</button>
  186. <button @click="dialogInputConfirm" size="mini" type="default" class="primaryButton btn">确定</button>
  187. </view>
  188. </uni-popup>
  189. <uni-popup ref="popup" background-color="#fff" type="center" :before-close="true">
  190. <view class="popup-content">
  191. <video :src="videoUrl" controls></video>
  192. </view>
  193. <view class="foot_common_btns">
  194. <button @click="closePop" type="default" class="primaryButton btn">关闭</button>
  195. </view>
  196. </uni-popup>
  197. </view>
  198. </template>
  199. <script setup>
  200. import { ref, reactive } from 'vue'
  201. import IncidentAttachment from '@/components/IncidentAttachment.vue';
  202. import { onLoad, onShow } from '@dcloudio/uni-app'
  203. import { api_listAttachment, getFetchDataList, api_incidentDetail, api_repairCancel, api_querySummaryDoc, api_incidentLog } from "@/http/api.js"
  204. import { defaultColor } from '@/static/js/theme.js'
  205. import { useSetTitle } from '@/share/useSetTitle.js'
  206. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  207. import { useGoBack } from '@/share/useGoBack.js'
  208. import { useLoginUserStore } from '@/stores/loginUser'
  209. import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
  210. import { computedStateStyle } from '@/filters/computedStateStyle.js'
  211. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  212. useSetTitle();
  213. const loginUserStore = useLoginUserStore();
  214. const { makePhoneCall } = useMakePhoneCall();
  215. const { goBack } = useGoBack();
  216. const { priorityStyle } = computedPriorityStyle();
  217. const { stateStyle } = computedStateStyle();
  218. const { formatDate } = filterFormatDate();
  219. // 主题颜色
  220. const primaryColor = ref(defaultColor)
  221. // 撤回原因
  222. const recallValue = ref(null)
  223. const isDept = ref(null)
  224. const videoUrl = ref(null)
  225. const popup = ref(null)
  226. const inputDialog = ref(null)
  227. const stateId = ref(null)
  228. // 数据
  229. const dataInfo = reactive({
  230. tabs: [
  231. {id: 1, name: '工单信息', value: '1', num: ''},
  232. // {id: 2, name: '维修汇总单', value: '2', num: ''},
  233. {id: 3, name: '处理流程', value: '3', num: ''},
  234. {id: 4, name: '评价信息', value: '4', num: ''},
  235. ],
  236. tabActiveValue: 0,//当前选择的tab
  237. incidentId: undefined,//事件ID
  238. incidentData: {},//事件对象
  239. repairImgs: [],//报修图片
  240. repairVideo:[], //视频
  241. repairAudio:[], //录音
  242. handlerImgs: [],//处理图片
  243. summaryObj: {
  244. consumableList: [],//耗材列表
  245. workHourManagementList: [],//工时列表
  246. },//汇总单信息
  247. incidentLogList: [],//流程列表
  248. resolveLogs: [],//评价
  249. callbackLogs: [],//回访
  250. isAttachment: false,//录音开关
  251. summaryData: null
  252. })
  253. // 点击录音
  254. function attachmentClick(){
  255. dataInfo.isAttachment = true;
  256. }
  257. // 知道了录音
  258. function knowAttachment(){
  259. dataInfo.isAttachment = false;
  260. }
  261. // 获取汇总单信息
  262. function getSummaryList(){
  263. uni.showLoading({
  264. title: "加载中",
  265. mask: true,
  266. });
  267. let postData = {
  268. "incidentId": dataInfo.incidentId,
  269. };
  270. api_querySummaryDoc(postData).then(res => {
  271. uni.hideLoading();
  272. if(res.status == 200){
  273. dataInfo.summaryObj = {...{consumableList:[], workHourManagementList: []}, ...res };
  274. }else{
  275. uni.showToast({
  276. icon: 'none',
  277. title: res.msg || '请求数据失败!'
  278. });
  279. }
  280. })
  281. }
  282. // 获取流程列表
  283. function getIncidentLogList(){
  284. uni.showLoading({
  285. title: "加载中",
  286. mask: true,
  287. });
  288. let postData = {
  289. "idx": 0,
  290. "sum": 9999,
  291. "incidentLog": {
  292. "incidentId": dataInfo.incidentId,
  293. }
  294. };
  295. api_incidentLog(postData).then(res => {
  296. uni.hideLoading();
  297. if(res.status == 200){
  298. let incidentLogList = res.list || [];
  299. dataInfo.incidentLogList = incidentLogList;
  300. }else{
  301. uni.showToast({
  302. icon: 'none',
  303. title: res.msg || '请求数据失败!'
  304. });
  305. }
  306. })
  307. }
  308. function videoView(item){
  309. videoUrl.value = item.thumbFilePath
  310. setTimeout(_=>{
  311. popup.value.open()
  312. },100)
  313. }
  314. function closePop(){
  315. popup.value.close()
  316. }
  317. // 预览图片
  318. function previewImg(index, type){
  319. uni.previewImage({
  320. current: index,
  321. urls: dataInfo[type].map(v => v.previewUrl),
  322. longPressActions: {
  323. itemList: ['发送给朋友', '保存图片', '收藏'],
  324. success: function(data) {
  325. console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
  326. },
  327. fail: function(err) {
  328. console.log(err.errMsg);
  329. }
  330. }
  331. });
  332. }
  333. // 初始化表单
  334. function initForm(){
  335. if(dataInfo.tabActiveValue === '1'){
  336. getRepairImgs();
  337. getHandlerImgs();
  338. }else if(dataInfo.tabActiveValue === '2'){
  339. getSummaryList();
  340. }else if(dataInfo.tabActiveValue === '3'){
  341. getIncidentLogList();
  342. }else if(dataInfo.tabActiveValue === '4'){
  343. }
  344. }
  345. // 点击tab
  346. function clickTab(tabValue){
  347. if(dataInfo.tabActiveValue == tabValue){
  348. return;
  349. }
  350. dataInfo.tabActiveValue = tabValue;
  351. initForm()
  352. }
  353. // 获取事件详情
  354. function getIncidentDetail(){
  355. uni.showLoading({
  356. title: "加载中",
  357. mask: true,
  358. });
  359. api_incidentDetail(dataInfo.incidentId).then(res => {
  360. uni.hideLoading();
  361. if(res.status == 200){
  362. dataInfo.incidentData = res.data || {};
  363. stateId.value = res.data.state.id
  364. let logs = dataInfo.incidentData.logs || [];
  365. dataInfo.resolveLogs = logs.filter(v => v.logType.value == 'resolve').slice(0, 1);
  366. dataInfo.callbackLogs = logs.filter(v => v.logType.value == 'callback').slice(0, 1);
  367. // 维修汇总单
  368. if(dataInfo.incidentData.state.value == 'close' && dataInfo.summaryData.value == 1 && dataInfo.incidentData.summaryId){
  369. let flag = dataInfo.tabs.some(v => v.value === '2');
  370. !flag && dataInfo.tabs.splice(1, 0, {id: 2, name: '维修汇总单', value: '2', num: ''});
  371. }
  372. dataInfo.tabActiveValue = dataInfo.tabs[0].value;
  373. initForm()
  374. }else{
  375. uni.showToast({
  376. icon: 'none',
  377. title: res.msg || '请求数据失败!'
  378. });
  379. }
  380. })
  381. }
  382. // 获取报修图片
  383. function getRepairImgs(){
  384. uni.showLoading({
  385. title: "加载中",
  386. mask: true,
  387. });
  388. api_listAttachment('wechatRequesterIncident', dataInfo.incidentId).then(res => {
  389. res.data = res.data || [];
  390. res.data.forEach(v => {
  391. v.thumbFilePath = location.origin + "/file" + v.relativeFilePath;
  392. })
  393. dataInfo.repairImgs = res.data
  394. })
  395. api_listAttachment('wechatIncidentVideo', dataInfo.incidentId).then(res => {
  396. res.data = res.data || [];
  397. res.data.forEach(v => {
  398. v.thumbFilePath = location.origin + "/file" + v.relativeFilePath;
  399. })
  400. dataInfo.repairVideo = res.data
  401. })
  402. api_listAttachment('wechatIncidentRecord', dataInfo.incidentId).then(res => {
  403. uni.hideLoading();
  404. res.data = res.data || [];
  405. res.data.forEach(v => {
  406. v.thumbFilePath = location.origin + "/file" + v.relativeFilePath;
  407. })
  408. dataInfo.repairAudio = res.data
  409. })
  410. }
  411. // 获取处理图片
  412. function getHandlerImgs(){
  413. uni.showLoading({
  414. title: "加载中",
  415. mask: true,
  416. });
  417. api_listAttachment('incident', dataInfo.incidentId).then(res => {
  418. uni.hideLoading();
  419. res.data = res.data || [];
  420. res.data.forEach(v => {
  421. v.previewUrl = location.origin + "/file" + v.relativeFilePath;
  422. v.thumbFilePath = location.origin + "/file" + v.thumbFilePath;
  423. })
  424. dataInfo.handlerImgs = res.data;
  425. })
  426. }
  427. function closeDialog(){
  428. inputDialog.value.close()
  429. }
  430. function dialogInputConfirm(){
  431. if(!recallValue.value){
  432. uni.showToast({
  433. icon: 'none',
  434. title: '撤销原因不能为空'
  435. });
  436. return
  437. }
  438. uni.showLoading({
  439. title: "加载中",
  440. mask: true,
  441. });
  442. let query={
  443. incident: {...dataInfo.incidentData, ...{cancelRemark: recallValue.value}}
  444. }
  445. api_repairCancel(query).then(res=>{
  446. uni.hideLoading();
  447. if(res.state==200){
  448. inputDialog.value.close()
  449. uni.showToast({
  450. icon: 'none',
  451. title: '撤销成功'
  452. });
  453. setTimeout(_=>{
  454. goBack()
  455. },500)
  456. }else{
  457. uni.showToast({
  458. icon: 'none',
  459. title: res.msg
  460. });
  461. }
  462. })
  463. }
  464. function recall(){
  465. inputDialog.value.open()
  466. }
  467. onShow((option) =>{
  468. let data = JSON.parse(uni.getStorageSync('sysData'))
  469. isDept.value = data.find(i=>i.keyconfig=='deptRepair')
  470. // 获取是否开启汇总单、简易处理
  471. let postData = {
  472. idx: 0,
  473. sum: 9999,
  474. hospitalConfig:{
  475. hosId: loginUserStore.loginUser.user.currentHospital.id,
  476. model: "itsm"
  477. }
  478. };
  479. getFetchDataList("simple/data", "hospitalConfig", postData)
  480. .then((res) => {
  481. dataInfo.summaryData = res.list.find(i=>i.key=='itsmSummarySheet')
  482. getIncidentDetail();
  483. });
  484. })
  485. onLoad((option) => {
  486. dataInfo.incidentId = option.incidentId;
  487. // let data = JSON.parse(uni.getStorageSync('sysData'))
  488. // isDept.value = data.find(i=>i.keyconfig=='deptRepair')
  489. // // 获取是否开启汇总单、简易处理
  490. // let postData = {
  491. // idx: 0,
  492. // sum: 9999,
  493. // hospitalConfig:{
  494. // hosId: loginUserStore.loginUser.user.currentHospital.id,
  495. // model: "itsm"
  496. // }
  497. // };
  498. // getFetchDataList("simple/data", "hospitalConfig", postData)
  499. // .then((res) => {
  500. // dataInfo.summaryData = res.list.find(i=>i.key=='itsmSummarySheet')
  501. // getIncidentDetail();
  502. // });
  503. })
  504. </script>
  505. <style scoped>
  506. >>>.uni-input{
  507. height: 80rpx;
  508. background: #eee;
  509. }
  510. >>>.uni-popup .uni-popup__wrapper{
  511. padding: 20rpx 40rpx;
  512. border-radius: 5px;
  513. }
  514. </style>
  515. <style lang="scss" scoped>
  516. .ch-class{
  517. text-align: center;
  518. font-size: 32rpx;
  519. }
  520. .popup-content{
  521. padding: 40rpx;
  522. }
  523. .incidentDetail{
  524. height: 100%;
  525. display: flex;
  526. flex-direction: column;
  527. justify-content: space-between;
  528. .head{
  529. height: 88rpx;
  530. display: flex;
  531. position: fixed;
  532. z-index: 99;
  533. width: 100%;
  534. background-color: #fff;
  535. font-size: 30rpx;
  536. .tab{
  537. flex: 1;
  538. display: flex;
  539. justify-content: center;
  540. align-items: center;
  541. border-bottom: 4rpx solid transparent;
  542. position: relative;
  543. &:last-of-type{
  544. &:after{
  545. display: none;
  546. }
  547. }
  548. &:after{
  549. content: '';
  550. position: absolute;
  551. right: 0;
  552. top: 50%;
  553. transform: translateY(-50%);
  554. width: 1rpx;
  555. height: 44rpx;
  556. background-color: #515151;
  557. }
  558. &.active{
  559. color: $uni-primary;
  560. border-color: $uni-primary;
  561. }
  562. }
  563. }
  564. .body{
  565. margin-top: 88rpx;
  566. box-sizing: border-box;
  567. flex: 1;
  568. min-height: 0;
  569. border-top: 7rpx solid #EBEBEB;
  570. .phone-filled{
  571. margin-left: 5rpx;
  572. }
  573. .mic-filled{
  574. margin-right: 100rpx;
  575. }
  576. .detail_item_wrap{
  577. padding-bottom: 24rpx;
  578. }
  579. .detail_head{
  580. padding: 24rpx;
  581. border-top: 1rpx solid #D2D2D2;
  582. border-bottom: 1rpx solid #D2D2D2;
  583. display: flex;
  584. justify-content: space-between;
  585. align-items: center;
  586. &:first-of-type{
  587. border-top: none;
  588. }
  589. .title{
  590. font-size: 26rpx;
  591. color: $uni-primary;
  592. padding-left: 18rpx;
  593. position: relative;
  594. &:before{
  595. content: '';
  596. width: 8rpx;
  597. height: 25rpx;
  598. background-color: $uni-primary;
  599. position: absolute;
  600. left: 0;
  601. top: 50%;
  602. transform: translateY(-50%);
  603. }
  604. }
  605. .other{
  606. display: flex;
  607. align-items: center;
  608. .priority{
  609. font-size: 26rpx;
  610. margin-right: 15rpx;
  611. }
  612. .status{
  613. padding: 4rpx 10rpx;
  614. border-radius: 20rpx;
  615. background-color: #DBE8FE;
  616. font-size: 22rpx;
  617. color: #006CF9;
  618. }
  619. }
  620. }
  621. .deital_item{
  622. font-size: 26rpx;
  623. color: #555;
  624. padding: 24rpx 24rpx 0;
  625. display: flex;
  626. flex-wrap: wrap;
  627. align-items: center;
  628. .name{
  629. width: 8em;
  630. margin-right: 24rpx;
  631. }
  632. .value{
  633. flex: 1;
  634. word-break: break-all;
  635. &.img{
  636. display: flex;
  637. .imgItem{
  638. width: 150rpx;
  639. height: 150rpx;
  640. margin-right: 24rpx;
  641. &:last-of-type{
  642. margin-right: 0;
  643. }
  644. }
  645. .resourceItem-audio{
  646. width: 300rpx;
  647. height: 60rpx;
  648. }
  649. .videoItem{
  650. width: 150rpx;
  651. height: 150rpx;
  652. margin-right: 24rpx;
  653. &:last-of-type{
  654. margin-right: 0;
  655. }
  656. }
  657. }
  658. }
  659. }
  660. .summaryItem_bodyItem{
  661. padding: 24rpx 24rpx 0;
  662. font-size: 26rpx;
  663. .summaryItem_bodyItem_top{
  664. display: flex;
  665. justify-content: space-between;
  666. align-items: center;
  667. .value{
  668. padding-left: 48rpx;
  669. flex-shrink: 0;
  670. }
  671. }
  672. .summaryItem_bodyItem_bottom{
  673. margin-top: 24rpx;
  674. display: flex;
  675. justify-content: space-between;
  676. align-items: center;
  677. .name{
  678. text-align: right;
  679. flex: 1;
  680. }
  681. .value{
  682. width: 220rpx;
  683. text-align: right;
  684. flex-shrink: 0;
  685. }
  686. }
  687. }
  688. .summaryItem_bodyItem_total{
  689. text-align: right;
  690. padding: 24rpx;
  691. font-size: 26rpx;
  692. }
  693. .summaryItem_total{
  694. text-align: center;
  695. padding-top: 24rpx;
  696. font-size: 32rpx;
  697. font-weight: bold;
  698. color: $uni-primary;
  699. border-top: 1rpx solid #D2D2D2;
  700. }
  701. .process_item_wrap{
  702. padding: 38rpx;
  703. .process_item{
  704. &:last-of-type{
  705. .process_item_bottom{
  706. border-left: none;
  707. }
  708. }
  709. .process_item_top{
  710. padding-left: 30rpx;
  711. display: flex;
  712. align-items: center;
  713. position: relative;
  714. &:before{
  715. content: '';
  716. position: absolute;
  717. left: -13rpx;
  718. top: 50%;
  719. width: 26rpx;
  720. height: 26rpx;
  721. border-radius: 50%;
  722. background-color: $uni-primary;
  723. transform: translateY(-50%);
  724. }
  725. .name{
  726. font-size: 30rpx;
  727. }
  728. .value{
  729. margin-left: 20rpx;
  730. font-size: 22rpx;
  731. color: #A1A1A1;
  732. flex: 1;
  733. }
  734. }
  735. .process_item_bottom{
  736. min-height: 82rpx;
  737. border-left: 1rpx solid #B7BDC6;
  738. margin-top: 5rpx;
  739. padding-left: 30rpx;
  740. display: flex;
  741. font-size: 24rpx;
  742. color: #A1A1A1;
  743. .value{
  744. margin-left: 20rpx;
  745. }
  746. }
  747. }
  748. }
  749. .appraise_detail{
  750. padding: 24rpx 24rpx 24rpx 40rpx;
  751. .appraise_detail_top{
  752. display: flex;
  753. align-items: center;
  754. justify-content: space-between;
  755. font-size: 26rpx;
  756. .name{
  757. color: #A1A1A1;
  758. }
  759. .value{}
  760. }
  761. .appraise_detail_bottom{
  762. font-size: 30rpx;
  763. margin-top: 24rpx;
  764. word-break: break-all;
  765. }
  766. }
  767. }
  768. }
  769. </style>