repairsDetail.vue 27 KB

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