handler.vue 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183
  1. <template>
  2. <view class="handler">
  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. <view class="body view-body" :class="{ page_padding: !(dataInfo.tabActiveValue === 'doing' && isInSummaryOrder), bg: (dataInfo.tabActiveValue === 'doing' && isInSummaryOrder) }">
  9. <!-- <scroll-view scroll-y class="body" :class="{ page_padding: !(dataInfo.tabActiveValue === 'doing' && isInSummaryOrder), bg: (dataInfo.tabActiveValue === 'doing' && isInSummaryOrder) }"> -->
  10. <!-- 汇总单 -->
  11. <template v-if="dataInfo.tabActiveValue === 'doing' && isInSummaryOrder">
  12. <!-- 耗材 -->
  13. <view class="summaryItem">
  14. <view class="summaryItem_head">
  15. 耗材清单
  16. </view>
  17. <view class="summaryItem_body" v-if="dataInfo.summaryObj.consumableList.length">
  18. <view class="summaryItem_bodyItem" v-for="item in dataInfo.summaryObj.consumableList" :key="item.id" @click="numberClick(item, 'editConsumable')">
  19. <view class="summaryItem_bodyItem_top">
  20. <text class="name ellipsis">{{ item.consumableName }}<template v-if="item.consumableBrandModel">({{ item.consumableBrandModel }})</template></text>
  21. <text class="value">{{ item.consumableEndPrice }}元</text>
  22. </view>
  23. <view class="summaryItem_bodyItem_bottom">
  24. <text class="name">x{{ item.consumablesNum }}{{ item.consumablesUnit }}</text>
  25. <text class="value">总价{{item.consumablesNum * item.consumableEndPrice}}元</text>
  26. </view>
  27. </view>
  28. </view>
  29. <view class="summaryItem_foot">
  30. <view class="summaryItem_foot_total">
  31. 耗材总价:{{dataInfo.summaryObj.consumablePrice}}元
  32. </view>
  33. <view class="summaryItem_foot_add" @click="addConsumable">
  34. <text class="newicon newicon-icon-test"></text>
  35. </view>
  36. </view>
  37. </view>
  38. <!-- 工时 -->
  39. <view class="summaryItem">
  40. <view class="summaryItem_head">
  41. 工时清单
  42. </view>
  43. <view class="summaryItem_body" v-if="dataInfo.summaryObj.workHourManagementList.length">
  44. <view class="summaryItem_bodyItem" v-for="item in dataInfo.summaryObj.workHourManagementList" :key="item.id" @click="numberClick(item, 'editWorkHourManagement')">
  45. <view class="summaryItem_bodyItem_top">
  46. <text class="name ellipsis">{{ item.workName }}</text>
  47. <text class="value">{{ item.wage }}元</text>
  48. </view>
  49. <view class="summaryItem_bodyItem_bottom">
  50. <text class="name">x{{ item.workHourNum2 }}{{ item.workUnit }}</text>
  51. <text class="value">总价{{item.workHourNum2 * item.wage}}元</text>
  52. </view>
  53. </view>
  54. </view>
  55. <view class="summaryItem_foot">
  56. <view class="summaryItem_foot_total">
  57. 工时总价:{{dataInfo.summaryObj.workHourPrice}}元
  58. </view>
  59. <view class="summaryItem_foot_add" @click="addWorkHourManagement">
  60. <text class="newicon newicon-icon-test"></text>
  61. </view>
  62. </view>
  63. </view>
  64. <!-- 汇总单总价 -->
  65. <view class="summaryItem">
  66. <view class="summaryItem_foot total">
  67. <view class="summary_total">
  68. 汇总单总价:{{dataInfo.summaryObj.totalMaintenancePrice}}元
  69. </view>
  70. </view>
  71. </view>
  72. </template>
  73. <!-- 故障处理 -->
  74. <template v-if="dataInfo.tabActiveValue === 'doing' && !isInSummaryOrder">
  75. <view class="form_item column" v-if="HandleData.simpleness != 1">
  76. <view class="title title-width">
  77. <text class="required newicon newicon-bitian"></text>
  78. <view class="title-fl-sb">
  79. 解决方案:
  80. <view @click="importRep('malfunction')" class="import-rep">引入知识库({{dataInfo.introduceCount}})</view>
  81. </view>
  82. </view>
  83. <uni-easyinput id="scheme" class="value" type="textarea" v-model="dataInfo.handleDescription" placeholder="请输入解决方案" :class="{formRed: isSubmit && !dataInfo.handleDescription.trim()}" />
  84. </view>
  85. <view class="form_item" v-if="newProvideBackupMachine==1">
  86. <view class="title"><text class="required newicon newicon-bitian"></text>是否归还备用机:</view>
  87. <uni-data-checkbox v-model="dataInfo.returnBackupMachine" :localdata="machineData"></uni-data-checkbox>
  88. </view>
  89. <view class="form_item" v-if="HandleData.simpleness != 1">
  90. <view class="title"><text class="required newicon newicon-bitian"></text>故障现象:</view>
  91. <view class="value category" @click="selectCategory">
  92. <text class="categoryName ellipsis-multiline">{{dataInfo.category.mutiCategory}}</text>
  93. <text class="newicon newicon-weibiaoti2010104"></text>
  94. </view>
  95. </view>
  96. <view class="form_item">
  97. <view class="title select"><text class="required newicon newicon-bitian"></text>处理方式:</view>
  98. <!-- <uni-data-select class="value" v-model="dataInfo.handleCategory" :localdata="dataInfo.handleCategoryList" :clear="false" placeholder="请选择处理方式" :class="{formRed: isSubmit && !dataInfo.handleCategory}"></uni-data-select> -->
  99. <uni-data-picker class="value" placeholder="请选择处理方式"
  100. v-model="dataInfo.handleCategory" :localdata="dataInfo.handleCategoryList"
  101. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.handleCategory}">
  102. </uni-data-picker>
  103. </view>
  104. <view class="form_item" v-if="HandleData.simpleness != 1">
  105. <view class="title select"><text class="required newicon newicon-bitian"></text>处理结果:</view>
  106. <!-- <uni-data-select class="value" v-model="dataInfo.closecode" :localdata="dataInfo.closecodeList" :clear="false" placeholder="请选择处理结果" :class="{formRed: isSubmit && !dataInfo.closecode}"></uni-data-select> -->
  107. <uni-data-picker class="value" placeholder="请选择处理结果"
  108. v-model="dataInfo.closecode" :localdata="dataInfo.closecodeList"
  109. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.closecode}">
  110. </uni-data-picker>
  111. </view>
  112. <view class="form_item">
  113. <view class="title"><text class="required newicon newicon-bitian transparent"></text>协同人员:</view>
  114. <text class="synergeticNames ellipsis">{{dataInfo.synergetic.map(v => v.name).join(',')}}</text>
  115. <button type="primary" plain size="mini" class="primaryPlainButton synergeticAdd" @click="synergeticAdd">+立即添加</button>
  116. </view>
  117. <view class="form_item_column">
  118. <view class="form_item">
  119. <view class="title"><text class="required newicon newicon-bitian transparent"></text>处理图片:</view>
  120. <view class="value">
  121. <uni-file-picker ref="handlerImgRef" v-model="dataInfo.handlerImgList" limit="3" @success="handlerImgSuccess" @fail="handlerImgFail" @select="handlerImgSelect" @delete="handlerImgDelete"></uni-file-picker>
  122. </view>
  123. </view>
  124. <view class="form_item">
  125. <view class="title transparent"><text class="required newicon newicon-bitian transparent"></text>处理图片:</view>
  126. <view class="value">
  127. <text class="imgTips ellipsis">(支持JPG/PNG格式图片,单张大小10M以内)</text>
  128. </view>
  129. </view>
  130. </view>
  131. </template>
  132. <!-- 延期处理 -->
  133. <template v-if="dataInfo.tabActiveValue === 'overtime'">
  134. <view class="form_item">
  135. <view class="title select"><text class="required newicon newicon-bitian"></text>延期原因:</view>
  136. <!-- <uni-data-select class="value" v-model="dataInfo.repairTypeId" :localdata="dataInfo.repairTypeList" :clear="false" placeholder="请选择延期原因" :class="{formRed: isSubmit && !dataInfo.repairTypeId}"></uni-data-select> -->
  137. <uni-data-picker class="value" placeholder="请选择延期原因"
  138. v-model="dataInfo.repairTypeId" :localdata="dataInfo.repairTypeList"
  139. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.repairTypeId}">
  140. </uni-data-picker>
  141. </view>
  142. <view class="form_item column">
  143. <view class="title"><text class="required newicon newicon-bitian"></text>延期说明:</view>
  144. <uni-easyinput class="value" type="textarea" v-model="dataInfo.deferralRemark" placeholder="请输入延期说明" :class="{formRed: isSubmit && !dataInfo.deferralRemark.trim()}" />
  145. </view>
  146. <view class="form_item">
  147. <view class="title select"><text class="required newicon newicon-bitian"></text>延期天数:</view>
  148. <!-- <uni-data-select class="value" v-model="dataInfo.deferralDayId" :localdata="dataInfo.deferralDayList" :clear="false" placeholder="请选择延期天数" :class="{formRed: isSubmit && !dataInfo.deferralDayId}"></uni-data-select> -->
  149. <uni-data-picker class="value" placeholder="请选择延期天数"
  150. v-model="dataInfo.deferralDayId" :localdata="dataInfo.deferralDayList"
  151. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.deferralDayId}">
  152. </uni-data-picker>
  153. </view>
  154. <view class="form_item">
  155. <view class="title"><text class="required newicon newicon-bitian"></text>是否提供备用机:</view>
  156. <uni-data-checkbox v-model="dataInfo.provideBackupMachine" :localdata="machineData"></uni-data-checkbox>
  157. </view>
  158. </template>
  159. <!-- </scroll-view> -->
  160. </view>
  161. <view class="foot_common_btns">
  162. <button @click="goBackOrToList" type="default" class="cancelButton btn">{{dataInfo.isSummaryNext ? '上一步' : '返回'}}</button>
  163. <button @click="submit" type="default" class="primaryButton btn">{{dataInfo.tabActiveValue === 'doing' && isInSummaryOrder ? '下一步' : '提交'}}</button>
  164. </view>
  165. <NumberModal v-if="dataInfo.isNumber" @cancelEmit="cancelNumber" @confirmEmit="conformNumber" @removeEmit="removeNumber" :selectData="dataInfo.selectData" :selectType="dataInfo.selectType" :evtNumber="dataInfo.evtNumber" showRemove></NumberModal>
  166. </view>
  167. </template>
  168. <script setup>
  169. import { ref, reactive, computed } from 'vue'
  170. import NumberModal from '@/components/NumberModal.vue';
  171. import { onLoad } from '@dcloudio/uni-app'
  172. import { generateNumberArray } from '@/utils/index.js'
  173. import { api_group, api_incidentDetail, getFetchDataList, api_getSolution, api_user, api_incidentTask, api_branch, api_dutyDepartment, api_getDictionary, api_querySummaryDoc, api_addSummaryDoc } from "@/http/api.js"
  174. import { defaultColor } from '@/static/js/theme.js'
  175. import { useSetTitle } from '@/share/useSetTitle.js'
  176. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  177. import { useUploadFile } from '@/share/useUploadFile.js'
  178. import { useGoBack } from '@/share/useGoBack.js'
  179. import { useLoginUserStore } from '@/stores/loginUser'
  180. import { useHandlerStore } from '@/stores/handler'
  181. useSetTitle();
  182. const loginUserStore = useLoginUserStore();
  183. const handlerStore = useHandlerStore();
  184. const { makePhoneCall } = useMakePhoneCall();
  185. const { uploadFile } = useUploadFile();
  186. const { goBack } = useGoBack();
  187. // 主题颜色
  188. const primaryColor = ref(defaultColor)
  189. // 备用机选项
  190. const machineData = ref([
  191. {
  192. text:'是',
  193. value:1
  194. },
  195. {
  196. text:'否',
  197. value:0
  198. },
  199. ])
  200. // 数据
  201. const dataInfo = reactive({
  202. tabs: [
  203. // {id: 5, name: '故障处理', value: 'doing', num: ''},
  204. // {id: 6, name: '延期处理', value: 'overtime', num: ''},
  205. ],
  206. tabActiveValue: 0,//当前选择的tab
  207. incidentId: undefined,//事件ID
  208. incidentData: {},//事件对象
  209. repairTypeList: [], //延期原因列表
  210. repairTypeId: undefined, //延期原因ID
  211. deferralDayList: [], //延期天数列表
  212. deferralDayId: undefined, //延期天数ID
  213. deferralRemark: '',//延期说明
  214. summaryObj: {
  215. consumableList: [],//耗材列表
  216. workHourManagementList: [],//工时列表
  217. },//汇总单信息
  218. summaryId: undefined,//汇总单Id
  219. isNumber: false,//修改数量弹窗
  220. evtNumber: 1,//弹窗返回的数量
  221. selectData: {},//选择的对象
  222. selectType: {},//选择的对象类型
  223. handleDescription: '',//解决方案
  224. handleCategory: undefined,//处理方式
  225. handleCategoryList: [],//处理方式列表
  226. closecode: undefined,//处理结果
  227. closecodeList: [],//处理结果列表
  228. handlerImgList: [],//处理图片列表
  229. category: {},//故障现象
  230. synergetic: [],//协同人员
  231. isSummaryNext: false,//汇总单-下一步
  232. introduceCount :0 ,//引入次数
  233. provideBackupMachine:0,//是否提供备用机
  234. returnBackupMachine:null//是否归还备用机
  235. })
  236. // 故障处理用是否提供备用机
  237. const newProvideBackupMachine = ref(0)
  238. // 知识库id
  239. const solutionId = ref(null)
  240. // 是否提交
  241. const isSubmit = ref(false)
  242. // 是否开启汇总单
  243. const SummaryData = ref(false)
  244. // 是否简单处理
  245. const HandleData = reactive({
  246. simpleness:null
  247. })
  248. // 处理图片
  249. const handlerImgRef = ref(null)
  250. // 是否进入汇总单
  251. const isInSummaryOrder = computed(() => {
  252. return dataInfo.tabActiveValue === 'doing' && SummaryData.value.value == 1 && (dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id);
  253. })
  254. // 上一步或者返回列表
  255. function goBackOrToList(){
  256. if(dataInfo.isSummaryNext){
  257. handlerStore.setHandlerData(dataInfo, 'assign', 'assign');
  258. goBack();
  259. }else{
  260. uni.reLaunch({
  261. url: '/pages/incidentList/incidentList'
  262. })
  263. }
  264. }
  265. // 上传处理图片成功
  266. function handlerImgSuccess(e){
  267. dataInfo.handlerImgList.forEach(v => {
  268. v.url = v.path;
  269. })
  270. console.log(dataInfo.handlerImgList);
  271. let handlerOrder$ = handlerOrder();
  272. let requestList = [handlerOrder$];
  273. dataInfo.handlerImgList.forEach(v => {
  274. let handlerOrderImg$ = handlerOrderImg(v);
  275. requestList.push(handlerOrderImg$);
  276. })
  277. Promise.all(requestList).then(resList => {
  278. uni.hideLoading();
  279. console.log(resList);
  280. if(resList[0].state == 200){
  281. uni.showToast({
  282. icon: 'none',
  283. title: '处理成功',
  284. mask: true,
  285. });
  286. setTimeout(() => {
  287. uni.reLaunch({
  288. url: '/pages/incidentList/incidentList',
  289. })
  290. }, 1500)
  291. }else{
  292. uni.showToast({
  293. icon: 'none',
  294. title: resList[0].msg || '请求数据失败!'
  295. });
  296. }
  297. })
  298. }
  299. // 上传处理图片失败
  300. function handlerImgFail(e){
  301. dataInfo.handlerImgList.forEach(v => {
  302. v.url = v.path;
  303. })
  304. console.log(dataInfo.handlerImgList);
  305. }
  306. // 选择上传图片
  307. function handlerImgSelect(e){
  308. dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
  309. console.log(dataInfo.handlerImgList);
  310. }
  311. // 删除上传图片
  312. function handlerImgDelete(e){
  313. dataInfo.handlerImgList = dataInfo.handlerImgList.filter(v => e.tempFile.uuid != v.uuid);
  314. console.log(dataInfo.handlerImgList);
  315. }
  316. // 添加协同人员
  317. function synergeticAdd(){
  318. handlerStore.setHandlerData(dataInfo, 'handler');
  319. uni.navigateTo({
  320. url: `/pages/synergeticAdd/synergeticAdd?incidentId=${dataInfo.incidentId}`
  321. })
  322. }
  323. // 引入知识库
  324. function importRep(type){
  325. dataInfo.operateType = type
  326. handlerStore.setHandlerData(dataInfo, 'assign', 'assign');
  327. uni.navigateTo({
  328. url: `/pages/repository/repository`
  329. })
  330. }
  331. // 选择故障现象
  332. function selectCategory(){
  333. handlerStore.setHandlerData(dataInfo, 'handler');
  334. uni.navigateTo({
  335. url: `/pages/categoryOne/categoryOne?incidentId=${dataInfo.incidentId}`
  336. })
  337. }
  338. // 点击修改数量
  339. function numberClick(data, type){
  340. if(type === 'editConsumable'){
  341. dataInfo.evtNumber = data.consumablesNum;
  342. }else if(type === 'editWorkHourManagement'){
  343. dataInfo.evtNumber = data.workHourNum2;
  344. }
  345. dataInfo.isNumber = true;
  346. dataInfo.selectData = data;
  347. dataInfo.selectType = type;
  348. }
  349. // 确认修改数量
  350. function conformNumber(evtNumber){
  351. dataInfo.evtNumber = evtNumber;
  352. dataInfo.isNumber = false;
  353. addSummaryDoc();
  354. }
  355. // 移除数量
  356. function removeNumber(evtNumber){
  357. dataInfo.evtNumber = evtNumber;
  358. dataInfo.isNumber = false;
  359. removeSummaryDoc();
  360. }
  361. // 关闭修改数量
  362. function cancelNumber(){
  363. dataInfo.isNumber = false;
  364. }
  365. // 修改耗材/工时
  366. function addSummaryDoc(){
  367. uni.showLoading({
  368. title: "加载中",
  369. mask: true,
  370. });
  371. let postData = {
  372. "summaryId": dataInfo.summaryId,
  373. "modifyNum": 'edit',
  374. };
  375. if(dataInfo.selectType === 'editConsumable'){
  376. postData.consumableList = [
  377. {
  378. "consumablesId": dataInfo.selectData.consumableId,
  379. "consumablesNum": dataInfo.evtNumber,
  380. }
  381. ];
  382. }else if(dataInfo.selectType === 'editWorkHourManagement'){
  383. postData.workHourManagementList = [
  384. {
  385. "workHourId": dataInfo.selectData.id,
  386. "workHourNum": dataInfo.evtNumber,
  387. }
  388. ];
  389. }
  390. api_addSummaryDoc(postData).then(res => {
  391. uni.hideLoading();
  392. if(res.status == 200){
  393. uni.showToast({
  394. icon: 'none',
  395. title: '修改数量成功',
  396. mask: true,
  397. });
  398. getSummaryList();
  399. }else{
  400. uni.showToast({
  401. icon: 'none',
  402. title: res.msg || '请求数据失败!'
  403. });
  404. }
  405. })
  406. }
  407. // 移除耗材/工时
  408. function removeSummaryDoc(){
  409. uni.showLoading({
  410. title: "加载中",
  411. mask: true,
  412. });
  413. let postData = {
  414. "summaryId": dataInfo.summaryId,
  415. "remove": 'remove',
  416. };
  417. if(dataInfo.selectType === 'editConsumable'){
  418. postData.consumableList = [
  419. {
  420. "consumablesId": dataInfo.selectData.consumableId,
  421. "consumablesNum": dataInfo.evtNumber,
  422. }
  423. ];
  424. }else if(dataInfo.selectType === 'editWorkHourManagement'){
  425. postData.workHourManagementList = [
  426. {
  427. "workHourId": dataInfo.selectData.id,
  428. "workHourNum": dataInfo.evtNumber,
  429. }
  430. ];
  431. }
  432. api_addSummaryDoc(postData).then(res => {
  433. uni.hideLoading();
  434. if(res.status == 200){
  435. uni.showToast({
  436. icon: 'none',
  437. title: '移除成功',
  438. mask: true,
  439. });
  440. getSummaryList();
  441. }else{
  442. uni.showToast({
  443. icon: 'none',
  444. title: res.msg || '请求数据失败!'
  445. });
  446. }
  447. })
  448. }
  449. // 重置
  450. function reset(){
  451. dataInfo.repairTypeList = []; //延期原因列表
  452. dataInfo.repairTypeId = undefined; //延期原因ID
  453. dataInfo.deferralDayList = []; //延期天数列表
  454. dataInfo.deferralDayId = undefined; //延期天数ID
  455. dataInfo.deferralRemark = '';//延期说明
  456. dataInfo.summaryObj = {
  457. consumableList: [],//耗材列表
  458. workHourManagementList: [],//工时列表
  459. };//汇总单信息
  460. dataInfo.summaryId = undefined;//汇总单Id
  461. dataInfo.isNumber = false;//修改数量弹窗
  462. dataInfo.evtNumber = 1;//弹窗返回的数量
  463. dataInfo.selectData = {};//选择的对象
  464. dataInfo.selectType = {};//选择的对象类型
  465. dataInfo.handleDescription = '';//解决方案
  466. solutionId.value = null;//引用知识库id
  467. dataInfo.handleCategory = undefined;//处理方式
  468. dataInfo.handleCategoryList = [];//处理方式列表
  469. dataInfo.closecode = undefined;//处理结果
  470. dataInfo.closecodeList = [];//处理结果列表
  471. dataInfo.handlerImgList = [];//处理图片列表
  472. dataInfo.category = {};//故障现象
  473. dataInfo.synergetic = [];//协同人员
  474. dataInfo.provideBackupMachine = 0
  475. dataInfo.returnBackupMachine = null
  476. }
  477. // 初始化表单
  478. function initForm(){
  479. if(dataInfo.tabActiveValue === 'doing' && isInSummaryOrder.value){
  480. getSummaryList();
  481. }else if(dataInfo.tabActiveValue === 'doing' && !isInSummaryOrder.value){
  482. getHandleCategorys();
  483. getClosecodes();
  484. }else if(dataInfo.tabActiveValue === 'overtime'){
  485. getRepairTypes();
  486. getDeferralDays();
  487. }
  488. }
  489. // 点击tab
  490. function clickTab(tabValue){
  491. if(dataInfo.tabActiveValue == tabValue){
  492. return;
  493. }
  494. dataInfo.tabActiveValue = tabValue;
  495. isSubmit.value = false;
  496. reset();
  497. dataInfo.category = dataInfo.incidentData.category || {};
  498. dataInfo.synergetic = dataInfo.incidentData.synergetic || [];
  499. newProvideBackupMachine.value = dataInfo.incidentData.provideBackupMachine
  500. initForm();
  501. }
  502. // 获取事件详情
  503. function getIncidentDetail(){
  504. uni.showLoading({
  505. title: "加载中",
  506. mask: true,
  507. });
  508. let title = null;
  509. api_incidentDetail(dataInfo.incidentId).then(res => {
  510. uni.hideLoading();
  511. if(res.status == 200){
  512. dataInfo.incidentData = res.data || {};
  513. dataInfo.summaryId = res.data.summaryId;
  514. newProvideBackupMachine.value = dataInfo.incidentData.provideBackupMachine
  515. let storeData = handlerStore.handler.data
  516. if(storeData && storeData.type!='rep'){
  517. if(dataInfo.isSummaryNext){
  518. // 汇总单-下一步
  519. dataInfo.incidentData.duty.addSummary = 0;
  520. }
  521. }
  522. // 跳转页面选择了选项并且工单ID一致
  523. if(handlerStore.handler.data && handlerStore.handler.data.incidentId == dataInfo.incidentId){
  524. if(dataInfo.handleDescription){
  525. dataInfo.handleDescription = null;
  526. }
  527. Object.assign(dataInfo, handlerStore.handler.data);
  528. getIntroduceCount(dataInfo.category.id)
  529. handlerStore.clearHandlerData();
  530. }else{
  531. handlerStore.clearHandlerData();
  532. // 初始化回显
  533. dataInfo.category = dataInfo.incidentData.category || {};
  534. dataInfo.synergetic = dataInfo.incidentData.synergetic || [];
  535. getIntroduceCount(dataInfo.category.id)
  536. let chuli = false;//故障处理权限
  537. for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
  538. if (loginUserStore.loginUser.menu[i].link == "handle") {
  539. chuli = true
  540. }
  541. }
  542. // 故障处理
  543. if(dataInfo.incidentData.state.value == 'handler' && dataInfo.incidentData.handlingPersonnelUser && dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id && chuli){
  544. let flag = dataInfo.tabs.some(v => v.value === 'doing');
  545. !flag && dataInfo.tabs.splice(0, 0, {id: 5, name: '故障处理', value: 'doing', num: ''});
  546. }
  547. // 延期处理
  548. if(dataInfo.incidentData.state.value == 'handler' && dataInfo.incidentData.handlingPersonnelUser && dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id){
  549. let flag = dataInfo.tabs.some(v => v.value === 'overtime');
  550. !flag && dataInfo.tabs.push({id: 6, name: '延期处理', value: 'overtime', num: ''});
  551. }
  552. dataInfo.tabActiveValue = dataInfo.tabs[0].value;
  553. }
  554. initForm()
  555. }else{
  556. uni.showToast({
  557. icon: 'none',
  558. title: res.msg || '请求数据失败!'
  559. });
  560. }
  561. })
  562. }
  563. // 获取延期原因列表
  564. function getRepairTypes(){
  565. uni.showLoading({
  566. title: "加载中",
  567. mask: true,
  568. });
  569. let postData = {
  570. "key": 'repair_type',
  571. "type": "list",
  572. };
  573. api_getDictionary(postData).then(res => {
  574. uni.hideLoading();
  575. res = res || [];
  576. dataInfo.repairTypeList = res.map(v => ({
  577. text: v.name,
  578. value: v.id,
  579. }));
  580. })
  581. }
  582. // 获取处理方式列表
  583. function getHandleCategorys(){
  584. uni.showLoading({
  585. title: "加载中",
  586. mask: true,
  587. });
  588. let postData = {
  589. "key": 'incident_handle_type',
  590. "type": "list",
  591. };
  592. api_getDictionary(postData).then(res => {
  593. uni.hideLoading();
  594. res = res || [];
  595. dataInfo.handleCategoryList = res.map(v => ({
  596. text: v.name,
  597. value: v.id,
  598. key: v.value,
  599. }));
  600. if(!dataInfo.handleCategory){
  601. let handleCategory = dataInfo.handleCategoryList.find(v => v.key == 'SUPPORT');
  602. dataInfo.handleCategory = handleCategory ? handleCategory.value : undefined;
  603. }
  604. })
  605. }
  606. // 获取处理结果列表
  607. function getClosecodes(){
  608. uni.showLoading({
  609. title: "加载中",
  610. mask: true,
  611. });
  612. let postData = {
  613. "key": 'incident_closecode',
  614. "type": "list",
  615. };
  616. api_getDictionary(postData).then(res => {
  617. uni.hideLoading();
  618. res = res || [];
  619. dataInfo.closecodeList = res.map(v => ({
  620. text: v.name,
  621. value: v.id,
  622. key: v.value,
  623. }));
  624. if(!dataInfo.closecode){
  625. let closecode = dataInfo.closecodeList.find(v => v.key == '060');
  626. dataInfo.closecode = closecode ? closecode.value : undefined;
  627. }
  628. })
  629. }
  630. // 获取延期天数列表
  631. function getDeferralDays(){
  632. dataInfo.deferralDayList = generateNumberArray(1, 15).map(v => ({
  633. text: v + '天',
  634. value: v,
  635. }));
  636. dataInfo.deferralDayList.unshift({
  637. text: '0.5天',
  638. value: 0.5,
  639. })
  640. }
  641. // 获取汇总单信息
  642. function getSummaryList(){
  643. uni.showLoading({
  644. title: "加载中",
  645. mask: true,
  646. });
  647. let postData = {
  648. "incidentId": dataInfo.incidentId,
  649. };
  650. api_querySummaryDoc(postData).then(res => {
  651. uni.hideLoading();
  652. if(res.status == 200){
  653. dataInfo.summaryObj = {...{consumableList:[], workHourManagementList: []}, ...res };
  654. dataInfo.summaryId = res.summaryId;
  655. }else if(res.status == 201){
  656. // 事件第一次绑定汇总单
  657. dataInfo.summaryId = res.summaryId;
  658. }else{
  659. uni.showToast({
  660. icon: 'none',
  661. title: res.msg || '请求数据失败!'
  662. });
  663. }
  664. })
  665. }
  666. // 添加耗材
  667. function addConsumable(){
  668. uni.navigateTo({
  669. url: `/pages/consumableList/consumableList?incidentId=${dataInfo.incidentId}&summaryId=${dataInfo.summaryId}`
  670. })
  671. }
  672. // 添加工时
  673. function addWorkHourManagement(){
  674. let hosId = dataInfo.incidentData.duty.id
  675. uni.navigateTo({
  676. url: `/pages/workHourManagementOne/workHourManagementOne?incidentId=${dataInfo.incidentId}&summaryId=${dataInfo.summaryId}&hosId=${hosId}`
  677. })
  678. }
  679. // 提交
  680. function submit(){
  681. isSubmit.value = true;
  682. if(dataInfo.tabActiveValue === 'doing' && isInSummaryOrder.value){
  683. uni.navigateTo({
  684. url: `/pages/handler/handler?incidentId=${dataInfo.incidentId}&isSummaryNext=1&type=0`,
  685. });
  686. }else if(dataInfo.tabActiveValue === 'doing' && !isInSummaryOrder.value){
  687. submitHandler();
  688. }else if(dataInfo.tabActiveValue === 'overtime'){
  689. submitOvertime();
  690. }
  691. }
  692. // 处理提交事件
  693. function handlerOrder(){
  694. dataInfo.incidentData.returnBackupMachine = dataInfo.returnBackupMachine
  695. let postData = {
  696. incident: dataInfo.incidentData,
  697. solutionId:solutionId.value
  698. }
  699. postData.incident.handleDescription = dataInfo.handleDescription;
  700. postData.incident.handleCategory = {id: dataInfo.handleCategory};
  701. postData.incident.closecode = {id: dataInfo.closecode};
  702. postData.incident.category = dataInfo.category;
  703. postData.incident.synergetic = dataInfo.synergetic;
  704. return api_incidentTask(dataInfo.tabActiveValue, postData);
  705. }
  706. // 处理图片
  707. function handlerOrderImg(imgObj){
  708. return uploadFile(imgObj, 'incident', dataInfo.incidentId)
  709. }
  710. // 处理提交
  711. function submitHandler(){
  712. console.log(dataInfo);
  713. if(!dataInfo.handleDescription.trim() && HandleData.simpleness != 1){
  714. uni.showToast({
  715. icon: 'none',
  716. title: '请填写解决方案'
  717. });
  718. return;
  719. }
  720. if(newProvideBackupMachine.value==1 && dataInfo.returnBackupMachine==null){
  721. uni.showToast({
  722. icon: 'none',
  723. title: '请选择是否归还备用机'
  724. });
  725. return;
  726. }
  727. if(!dataInfo.category.id && HandleData.simpleness != 1){
  728. uni.showToast({
  729. icon: 'none',
  730. title: '请选择故障现象'
  731. });
  732. return;
  733. }
  734. if(!dataInfo.handleCategory){
  735. uni.showToast({
  736. icon: 'none',
  737. title: '请选择处理方式'
  738. });
  739. return;
  740. }
  741. if(!dataInfo.closecode && HandleData.simpleness != 1){
  742. uni.showToast({
  743. icon: 'none',
  744. title: '请选择处理结果'
  745. });
  746. return;
  747. }
  748. console.log(dataInfo.handlerImgList)
  749. uni.showLoading({
  750. title: "加载中",
  751. mask: true,
  752. });
  753. if(dataInfo.handlerImgList.length){
  754. // 有图片
  755. handlerImgRef.value.upload();
  756. }else{
  757. // 没有图片
  758. let handlerOrder$ = handlerOrder();
  759. let requestList = [handlerOrder$];
  760. Promise.all(requestList).then(resList => {
  761. uni.hideLoading();
  762. console.log(resList);
  763. if(resList[0].state == 200){
  764. uni.showToast({
  765. icon: 'none',
  766. title: '处理成功',
  767. mask: true,
  768. });
  769. setTimeout(() => {
  770. uni.reLaunch({
  771. url: '/pages/incidentList/incidentList',
  772. })
  773. }, 1500)
  774. }else{
  775. uni.showToast({
  776. icon: 'none',
  777. title: resList[0].msg || '请求数据失败!'
  778. });
  779. }
  780. })
  781. }
  782. }
  783. // 延期处理提交
  784. function submitOvertime(){
  785. if(!dataInfo.repairTypeId){
  786. uni.showToast({
  787. icon: 'none',
  788. title: '请选择延期原因'
  789. });
  790. return;
  791. }
  792. if(!dataInfo.deferralRemark.trim()){
  793. uni.showToast({
  794. icon: 'none',
  795. title: '请填写延期说明'
  796. });
  797. return;
  798. }
  799. if(!dataInfo.deferralDayId){
  800. uni.showToast({
  801. icon: 'none',
  802. title: '请选择延期天数'
  803. });
  804. return;
  805. }
  806. uni.showLoading({
  807. title: "加载中",
  808. mask: true,
  809. });
  810. dataInfo.incidentData.provideBackupMachine = dataInfo.provideBackupMachine
  811. let postData = {
  812. incident: dataInfo.incidentData,
  813. }
  814. postData.incident.currentLog = {
  815. remark: dataInfo.deferralRemark,
  816. extra1: dataInfo.repairTypeId,
  817. extra2: dataInfo.deferralDayId,
  818. }
  819. api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
  820. uni.hideLoading();
  821. if(res.state == 200){
  822. uni.showToast({
  823. icon: 'none',
  824. title: '延期处理成功',
  825. mask: true,
  826. });
  827. setTimeout(() => {
  828. uni.reLaunch({
  829. url: '/pages/incidentList/incidentList',
  830. })
  831. }, 1500)
  832. }else{
  833. uni.showToast({
  834. icon: 'none',
  835. title: res.msg || '请求数据失败!'
  836. });
  837. }
  838. })
  839. }
  840. // 获取知识库数量
  841. function getIntroduceCount(categoryId){
  842. uni.showLoading({
  843. title: "加载中",
  844. mask: true,
  845. });
  846. let query = {
  847. "key": 'solution_status',
  848. "type": "list",
  849. };
  850. api_getDictionary(query).then(res=>{
  851. let typeId = res.find(v => v.value == '3');
  852. let postData = {
  853. idx: 0,
  854. sum: 9999,
  855. solution: {
  856. deleteFlag:0,
  857. hosId: loginUserStore.loginUser.user.currentHospital.id,
  858. categoryId:categoryId,
  859. status:{id:typeId.id},
  860. }
  861. }
  862. api_getSolution(postData).then(res => {
  863. uni.hideLoading();
  864. if(res.status == 200){
  865. dataInfo.introduceCount = res.totalNum
  866. }else{
  867. uni.showToast({
  868. icon: 'none',
  869. title: res.msg || '请求数据失败!'
  870. });
  871. }
  872. })
  873. })
  874. }
  875. // 获取文本内容
  876. function getHtml(html) {
  877. const tempDiv = document.createElement('div');
  878. tempDiv.innerHTML = html;
  879. return tempDiv.textContent || tempDiv.innerText || '';
  880. }
  881. // 获取是否开启汇总单、简易处理
  882. function getHosConfig(){
  883. let postData = {
  884. idx: 0,
  885. sum: 9999,
  886. hospitalConfig:{
  887. hosId: loginUserStore.loginUser.user.currentHospital.id,
  888. model: "itsm"
  889. }
  890. };
  891. getFetchDataList("simple/data", "hospitalConfig", postData)
  892. .then((res) => {
  893. if(dataInfo.isSummaryNext!=1){
  894. SummaryData.value = res.list.find(i=>i.key=='itsmSummarySheet')
  895. }
  896. HandleData.simpleness = res.list.find(i=>i.key=='itsmSimpleHandle').value
  897. });
  898. }
  899. onLoad((option) => {
  900. let storeData = handlerStore.handler.data
  901. if(storeData && storeData.type=='rep'){
  902. solutionId.value = storeData.solutionId
  903. dataInfo.isSummaryNext = storeData.isSummaryNext
  904. dataInfo.incidentId = storeData.incidentId;
  905. }else{
  906. dataInfo.incidentId = option.incidentId;
  907. dataInfo.isSummaryNext = option.isSummaryNext == 1;
  908. }
  909. getHosConfig()
  910. getIncidentDetail();
  911. })
  912. </script>
  913. <style lang="scss" scoped>
  914. .handler{
  915. height: 100%;
  916. display: flex;
  917. flex-direction: column;
  918. justify-content: space-between;
  919. .head{
  920. height: 88rpx;
  921. display: flex;
  922. position: fixed;
  923. z-index: 99;
  924. width: 100%;
  925. background-color: #fff;
  926. font-size: 30rpx;
  927. .tab{
  928. flex: 1;
  929. display: flex;
  930. justify-content: center;
  931. align-items: center;
  932. border-bottom: 4rpx solid transparent;
  933. &.active{
  934. color: $uni-primary;
  935. border-color: $uni-primary;
  936. }
  937. }
  938. }
  939. .body{
  940. margin-top: 88rpx;
  941. box-sizing: border-box;
  942. flex: 1;
  943. min-height: 0;
  944. &.bg{
  945. background-color: #F7F7F7;
  946. }
  947. .summaryItem{
  948. &:first-of-type{
  949. .summaryItem_head{
  950. border-bottom: 1rpx solid #DDDDDD;
  951. }
  952. }
  953. .summary_total{
  954. padding: 20rpx 0;
  955. display: flex;
  956. justify-content: center;
  957. align-items: center;
  958. }
  959. .summaryItem_head{
  960. padding: 24rpx;
  961. font-size: 26rpx;
  962. color: #3A3A3A;
  963. }
  964. .summaryItem_body{
  965. font-size: 30rpx;
  966. background-color: #fff;
  967. .summaryItem_bodyItem{
  968. padding: 24rpx;
  969. border-bottom: 1rpx solid #DDDDDD;
  970. .summaryItem_bodyItem_top{
  971. display: flex;
  972. justify-content: space-between;
  973. align-items: center;
  974. .value{
  975. padding-left: 48rpx;
  976. flex-shrink: 0;
  977. }
  978. }
  979. .summaryItem_bodyItem_bottom{
  980. margin-top: 24rpx;
  981. display: flex;
  982. justify-content: space-between;
  983. align-items: center;
  984. .name{
  985. text-align: right;
  986. flex: 1;
  987. }
  988. .value{
  989. width: 240rpx;
  990. text-align: right;
  991. padding-left: 48rpx;
  992. flex-shrink: 0;
  993. }
  994. }
  995. }
  996. }
  997. .summaryItem_foot{
  998. font-size: 30rpx;
  999. background-color: #fff;
  1000. &.total{
  1001. margin-top: 24rpx;
  1002. }
  1003. .summaryItem_foot_total{
  1004. padding: 24rpx 0;
  1005. display: flex;
  1006. justify-content: center;
  1007. align-items: center;
  1008. }
  1009. .summaryItem_foot_add{
  1010. border-top: 1rpx solid #DDDDDD;
  1011. padding: 24rpx 0;
  1012. display: flex;
  1013. justify-content: center;
  1014. align-items: center;
  1015. .newicon-icon-test{
  1016. font-size: 30rpx;
  1017. font-weight: bold;
  1018. }
  1019. }
  1020. }
  1021. }
  1022. .form_item_column{
  1023. padding-top: 24rpx;
  1024. min-height: 86rpx;
  1025. .form_item{
  1026. padding-top: 0;
  1027. min-height: auto;
  1028. }
  1029. }
  1030. .form_item{
  1031. display: flex;
  1032. align-items: center;
  1033. padding-top: 24rpx;
  1034. min-height: 86rpx;
  1035. &.column{
  1036. height: auto;
  1037. flex-direction: column;
  1038. align-items: flex-start;
  1039. .import-rep{
  1040. padding: 5rpx 10rpx;
  1041. border-radius: 50rpx;
  1042. background: #d1fcd5;
  1043. color: #49b856;
  1044. font-size: 24rpx;
  1045. }
  1046. .title{
  1047. margin-right: 0;
  1048. }
  1049. .title-width{
  1050. width: 100%;
  1051. }
  1052. .title-fl-sb{
  1053. display: flex;
  1054. justify-content: space-between;
  1055. width: 100%;
  1056. }
  1057. .value{
  1058. margin-top: 10rpx;
  1059. padding-left: 20rpx;
  1060. box-sizing: border-box;
  1061. }
  1062. .tips{
  1063. padding: 24rpx;
  1064. text-align: center;
  1065. font-size: 22rpx;
  1066. color: #909399;
  1067. width: 100%;
  1068. box-sizing: border-box;
  1069. }
  1070. }
  1071. .title{
  1072. font-size: 26rpx;
  1073. display: flex;
  1074. align-items: center;
  1075. margin-right: 12rpx;
  1076. flex-shrink: 0;
  1077. &.select{
  1078. width: calc(5em + 20rpx);
  1079. }
  1080. }
  1081. .value{
  1082. width: 100%;
  1083. &.category{
  1084. width: 100%;
  1085. display: flex;
  1086. justify-content: space-between;
  1087. align-items: center;
  1088. .categoryName{
  1089. font-size: 26rpx;
  1090. color: #555;
  1091. flex: 1;
  1092. }
  1093. .newicon-weibiaoti2010104{
  1094. color: $uni-primary;
  1095. margin-left: 24rpx;
  1096. }
  1097. }
  1098. .imgTips{
  1099. color: #909399;
  1100. font-size: 22rpx;
  1101. }
  1102. }
  1103. .synergeticNames{
  1104. font-size: 26rpx;
  1105. margin-right: 24rpx;
  1106. }
  1107. .synergeticAdd{
  1108. flex-shrink: 0;
  1109. }
  1110. }
  1111. }
  1112. }
  1113. </style>