handler.vue 35 KB

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