assign.vue 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669
  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. <!-- <scroll-view scroll-y class="body page_padding"> -->
  9. <view class="body page_padding view-body">
  10. <!-- 故障处理 -->
  11. <template v-if="dataInfo.tabActiveValue === 'direct'">
  12. <view class="form_item column" v-if="HandleData.simpleness != 1">
  13. <view class="title title-width">
  14. <text class="required newicon newicon-bitian"></text>
  15. <view class="title-fl-sb">
  16. 解决方案:
  17. <view @click="importRep('reissue','direct')" class="import-rep">引入知识库({{dataInfo.introduceCount}})</view>
  18. </view>
  19. </view>
  20. <uni-easyinput class="value" type="textarea" v-model="dataInfo.handleDescription" placeholder="请输入解决方案" :class="{formRed: isSubmit && !dataInfo.handleDescription.trim()}" />
  21. </view>
  22. <view class="form_item" v-if="HandleData.simpleness != 1">
  23. <view class="title"><text class="required newicon newicon-bitian"></text>故障现象:</view>
  24. <view class="value category" @click="selectCategory">
  25. <text class="categoryName ellipsis-multiline">{{dataInfo.category.mutiCategory}}</text>
  26. <text class="newicon newicon-weibiaoti2010104"></text>
  27. </view>
  28. </view>
  29. <view class="form_item">
  30. <view class="title select"><text class="required newicon newicon-bitian"></text>处理方式:</view>
  31. <!-- <uni-data-select class="value" v-model="dataInfo.handleCategory" :localdata="dataInfo.handleCategoryList" :clear="false" placeholder="请选择处理方式" :class="{formRed: isSubmit && !dataInfo.handleCategory}"></uni-data-select> -->
  32. <uni-data-picker class="value" placeholder="请选择处理方式"
  33. :localdata="dataInfo.handleCategoryList" v-model="dataInfo.handleCategory"
  34. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.handleCategory}">
  35. </uni-data-picker>
  36. </view>
  37. <view class="form_item" v-if="HandleData.simpleness != 1">
  38. <view class="title select"><text class="required newicon newicon-bitian"></text>处理结果:</view>
  39. <!-- <uni-data-select class="value" v-model="dataInfo.closecode" :localdata="dataInfo.closecodeList" :clear="false" placeholder="请选择处理结果" :class="{formRed: isSubmit && !dataInfo.closecode}"></uni-data-select> -->
  40. <uni-data-picker class="value" placeholder="请选择处理结果"
  41. :localdata="dataInfo.closecodeList" v-model="dataInfo.closecode"
  42. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.closecode}">
  43. </uni-data-picker>
  44. </view>
  45. <view class="form_item">
  46. <view class="title"><text class="required newicon newicon-bitian transparent"></text>协同人员:</view>
  47. <text class="synergeticNames ellipsis">{{ synergeticArr}}</text>
  48. <button type="primary" plain size="mini" class="primaryPlainButton synergeticAdd" @click="synergeticAdd">+立即添加</button>
  49. </view>
  50. <view class="form_item_column">
  51. <view class="form_item">
  52. <view class="title"><text class="required newicon newicon-bitian transparent"></text>处理图片:</view>
  53. <view class="value">
  54. <uni-file-picker ref="handlerImgRef" v-model="dataInfo.handlerImgList" limit="3" @success="handlerImgSuccess" @fail="handlerImgFail" @select="handlerImgSelect" @delete="handlerImgDelete"></uni-file-picker>
  55. </view>
  56. </view>
  57. <view class="form_item">
  58. <view class="title transparent"><text class="required newicon newicon-bitian transparent"></text>处理图片:</view>
  59. <view class="value">
  60. <text class="imgTips ellipsis">(支持JPG/PNG格式图片,单张大小10M以内)</text>
  61. </view>
  62. </view>
  63. </view>
  64. </template>
  65. <!-- 补单 -->
  66. <template v-if="dataInfo.tabActiveValue === 'supplement' && dataInfo.supplementFlag">
  67. <view class="form_item">
  68. <view class="title select"><text class="required newicon newicon-bitian"></text>登记时间:</view>
  69. <uni-datetime-picker class="value" type="datetime" v-model="dataInfo.acceptDate" :class="{formRed: isSubmit && !dataInfo.acceptDate}" />
  70. </view>
  71. <view class="form_item">
  72. <view class="title select"><text class="required newicon newicon-bitian"></text>接单时间:</view>
  73. <uni-datetime-picker class="value" type="datetime" v-model="dataInfo.responseHandleTime" :class="{formRed: isSubmit && !dataInfo.responseHandleTime}" />
  74. </view>
  75. <view class="form_item">
  76. <view class="title select"><text class="required newicon newicon-bitian"></text>解决时间:</view>
  77. <uni-datetime-picker class="value" type="datetime" v-model="dataInfo.handleTime" :class="{formRed: isSubmit && !dataInfo.handleTime}" />
  78. </view>
  79. <view class="form_item">
  80. <view class="title select"><text class="required newicon newicon-bitian"></text>处理人:</view>
  81. <uni-data-picker class="value" placeholder="请选择处理人"
  82. :localdata="dataInfo.userList" v-model="dataInfo.handlingPersonnelUserId"
  83. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.handlingPersonnelUserId}">
  84. </uni-data-picker>
  85. </view>
  86. </template>
  87. <!-- 补单-下一步 -->
  88. <template v-if="dataInfo.tabActiveValue === 'supplement' && !dataInfo.supplementFlag">
  89. <view class="form_item column" v-if="HandleData.simpleness != 1">
  90. <view class="title title-width">
  91. <text class="required newicon newicon-bitian"></text>
  92. <view class="title-fl-sb">
  93. 解决方案:
  94. <view @click="importRep('reissue','reissue')" class="import-rep">引入知识库({{dataInfo.introduceCount}})</view>
  95. </view>
  96. </view>
  97. <uni-easyinput class="value" type="textarea" v-model="dataInfo.handleDescription" placeholder="请输入解决方案" :class="{formRed: isSubmit && !dataInfo.handleDescription.trim()}" />
  98. </view>
  99. <view class="form_item" v-if="HandleData.simpleness != 1">
  100. <view class="title"><text class="required newicon newicon-bitian"></text>故障现象:</view>
  101. <view class="value category" @click="selectCategory('assign_supplement')">
  102. <text class="categoryName ellipsis-multiline">{{dataInfo.category.mutiCategory}}</text>
  103. <text class="newicon newicon-weibiaoti2010104"></text>
  104. </view>
  105. </view>
  106. <view class="form_item">
  107. <view class="title select"><text class="required newicon newicon-bitian"></text>处理方式:</view>
  108. <uni-data-picker class="value" placeholder="请选择处理方式"
  109. :localdata="dataInfo.handleCategoryList" v-model="dataInfo.handleCategory"
  110. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.handleCategory}">
  111. </uni-data-picker>
  112. </view>
  113. <view class="form_item" v-if="HandleData.simpleness != 1">
  114. <view class="title select"><text class="required newicon newicon-bitian"></text>处理结果:</view>
  115. <uni-data-picker class="value" placeholder="请选择处理结果"
  116. :localdata="dataInfo.closecodeList" v-model="dataInfo.closecode"
  117. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.closecode}">
  118. </uni-data-picker>
  119. </view>
  120. <view class="form_item">
  121. <view class="title"><text class="required newicon newicon-bitian transparent"></text>协同人员:</view>
  122. <text class="synergeticNames ellipsis">{{synergeticArr}}</text>
  123. <button type="primary" plain size="mini" class="primaryPlainButton synergeticAdd" @click="synergeticAdd('assign_supplement')">+立即添加</button>
  124. </view>
  125. <view class="form_item_column">
  126. <view class="form_item">
  127. <view class="title"><text class="required newicon newicon-bitian transparent"></text>处理图片:</view>
  128. <view class="value">
  129. <uni-file-picker ref="handlerImgRef" v-model="dataInfo.handlerImgList" limit="3" @success="handlerImgSuccess" @fail="handlerImgFail" @select="handlerImgSelect" @delete="handlerImgDelete"></uni-file-picker>
  130. </view>
  131. </view>
  132. <view class="form_item">
  133. <view class="title transparent"><text class="required newicon newicon-bitian transparent"></text>处理图片:</view>
  134. <view class="value">
  135. <text class="imgTips ellipsis">(支持JPG/PNG格式图片,单张大小10M以内)</text>
  136. </view>
  137. </view>
  138. </view>
  139. </template>
  140. <!-- 派单 -->
  141. <template v-if="dataInfo.tabActiveValue === 'assign'">
  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.groupId" :localdata="dataInfo.groupList" :clear="false" placeholder="请选择工作组" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}"></uni-data-select> -->
  145. <uni-data-picker class="value" placeholder="请选择工作组"
  146. :localdata="dataInfo.groupList" v-model="dataInfo.groupId"
  147. :clear-icon="false" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}">
  148. </uni-data-picker>
  149. </view>
  150. <view class="form_item">
  151. <view class="title radio"><text class="required newicon newicon-bitian"></text>是否转派到人:</view>
  152. <uni-data-checkbox class="value" v-model="dataInfo.isAssignUser" :localdata="dataInfo.isAssignUserList" @change="changeIsAssignUser" />
  153. </view>
  154. <view class="form_item" v-if="dataInfo.isAssignUser === 1">
  155. <view class="title select"><text class="required newicon newicon-bitian"></text>转派对象:</view>
  156. <!-- <uni-data-select class="value" v-model="dataInfo.userId" :localdata="dataInfo.userList" :clear="false" placeholder="请选择转派对象" :class="{formRed: isSubmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}"></uni-data-select> -->
  157. <uni-data-picker class="value" placeholder="请选择转派对象"
  158. :localdata="dataInfo.userList" v-model="dataInfo.userId"
  159. :clear-icon="false" :class="{formRed: isSubmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}">
  160. </uni-data-picker>
  161. </view>
  162. <!-- <view class="form_item_column">
  163. <view class="form_item">
  164. <view class="title"><text class="required newicon newicon-bitian transparent"></text>处理图片:</view>
  165. <view class="value">
  166. <uni-file-picker ref="handlerImgRef" v-model="dataInfo.handlerImgList" limit="3" @success="handlerImgSuccess" @fail="handlerImgFail" @select="handlerImgSelect" @delete="handlerImgDelete"></uni-file-picker>
  167. </view>
  168. </view>
  169. <view class="form_item">
  170. <view class="title transparent"><text class="required newicon newicon-bitian transparent"></text>处理图片:</view>
  171. <view class="value">
  172. <text class="imgTips ellipsis">(支持JPG/PNG格式图片,单张大小10M以内)</text>
  173. </view>
  174. </view>
  175. </view> -->
  176. </template>
  177. </view>
  178. <!-- </scroll-view> -->
  179. <view class="foot_common_btns">
  180. <template v-if="dataInfo.tabActiveValue === 'supplement' && dataInfo.supplementFlag">
  181. <button @click="goBack" type="default" class="primaryButton btn">上一步</button>
  182. <button @click="next" type="default" class="primaryButton btn">下一步</button>
  183. </template>
  184. <template v-else>
  185. <button @click="previous" type="default" class="primaryButton btn" v-if="dataInfo.tabActiveValue === 'supplement'">上一步</button>
  186. <button @click="goBackView" type="default" class="cancelButton btn" v-else>返回</button>
  187. <button @click="submit" type="default" class="primaryButton btn">提交</button>
  188. </template>
  189. </view>
  190. </view>
  191. </template>
  192. <script setup>
  193. import { ref, reactive, computed } from 'vue'
  194. import { onLoad } from '@dcloudio/uni-app'
  195. import { generateNumberArray } from '@/utils/index.js'
  196. import { api_group, getFetchDataList, api_incidentDetail, api_getSolution, api_user, api_incidentTask, api_branch, api_dutyDepartment, api_getDictionary, api_querySummaryDoc, api_addSummaryDoc, api_systemConfiguration, api_sj } from "@/http/api.js"
  197. import { defaultColor } from '@/static/js/theme.js'
  198. import { useSetTitle } from '@/share/useSetTitle.js'
  199. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  200. import { useUploadFile } from '@/share/useUploadFile.js'
  201. import { useGoBack } from '@/share/useGoBack.js'
  202. import { useLoginUserStore } from '@/stores/loginUser'
  203. import { useHandlerStore } from '@/stores/handler'
  204. import { useIncidentBuildStore } from '@/stores/incidentBuild'
  205. useSetTitle();
  206. const loginUserStore = useLoginUserStore();
  207. const handlerStore = useHandlerStore();
  208. const incidentBuildStore = useIncidentBuildStore();
  209. const { makePhoneCall } = useMakePhoneCall();
  210. const { uploadFile } = useUploadFile();
  211. const { goBack } = useGoBack();
  212. // 主题颜色
  213. const primaryColor = ref(defaultColor)
  214. // 知识库id
  215. const solutionId = ref(null)
  216. // 楼层id
  217. const floorId = ref(null)
  218. // 是否简单处理
  219. const HandleData = reactive({
  220. simpleness:null
  221. })
  222. // 协同人员
  223. const synergeticArr = ref(null)
  224. const dicData = ref(null)
  225. const dutyList = ref(null)
  226. const userTypes = ref(null)
  227. // 数据
  228. const dataInfo = reactive({
  229. tabs: [
  230. {id: 5, name: '直接处理', value: 'direct', num: ''},
  231. // {id: 7, name: '补单', value: 'supplement', num: ''},
  232. {id: 6, name: '派单', value: 'assign', num: ''},
  233. ],
  234. tabActiveValue: 0,//当前选择的tab
  235. incidentId: undefined,//事件ID
  236. incidentData: {},//事件对象
  237. groupList: [], //工作组列表
  238. groupId: undefined, //工作组ID
  239. userIdList: [], //延期天数列表
  240. userIdId: undefined, //延期天数ID
  241. deferralRemark: '',//延期说明
  242. summaryObj: {
  243. consumableList: [],//耗材列表
  244. workHourManagementList: [],//工时列表
  245. },//汇总单信息
  246. summaryId: undefined,//汇总单Id
  247. isNumber: false,//修改数量弹窗
  248. evtNumber: 1,//弹窗返回的数量
  249. selectData: {},//选择的对象
  250. selectType: {},//选择的对象类型
  251. handleDescription: '',//解决方案
  252. handleCategory: undefined,//处理方式
  253. handleCategoryList: [],//处理方式列表
  254. closecode: undefined,//处理结果
  255. closecodeList: [],//处理结果列表
  256. handlerImgList: [],//处理图片列表
  257. category: {},//故障现象
  258. synergetic: null,//协同人员
  259. isAssignUser: 1, //工作组是否转派到人
  260. isAssignUserList: [
  261. { text: '是', value: 1 },
  262. { text: '否', value: 0 },
  263. ], //工作组是否转派到人选项
  264. supplementFlag: true,//补单是否有下一步
  265. acceptDate: undefined,//补单-登记时间
  266. responseHandleTime: undefined,//补单-接单时间
  267. handleTime: undefined,//补单-解决时间
  268. handlingPersonnelUserId: undefined,//补单-处理人
  269. // introduceCount :0 //引入次数
  270. })
  271. // 是否提交
  272. const isSubmit = ref(false)
  273. // 处理图片
  274. const handlerImgRef = ref(null)
  275. // 上传报修图片
  276. function handlerImgSuccessNew(){
  277. let requestList = [];
  278. // 报修图片
  279. dataInfo.incidentData.repairImgList.forEach(v => {
  280. let repairOrderImg$ = repairOrderImg(v);
  281. requestList.push(repairOrderImg$);
  282. })
  283. Promise.all(requestList).then(resList => {
  284. uni.hideLoading();
  285. console.log(resList);
  286. incidentBuildStore.clearIncidentBuildData();
  287. uni.showToast({
  288. icon: 'none',
  289. title: '建单成功',
  290. mask: true,
  291. });
  292. setTimeout(() => {
  293. uni.reLaunch({
  294. url: '/pages/incidentList/incidentList',
  295. })
  296. }, 1500)
  297. })
  298. }
  299. // 返回引用知识库
  300. function goBackView(){
  301. handlerStore.setHandlerData(dataInfo, 'assign', 'assign');
  302. goBack()
  303. }
  304. // 上传处理图片成功
  305. function handlerImgSuccess(e){
  306. dataInfo.handlerImgList.forEach(v => {
  307. v.url = v.path;
  308. })
  309. console.log(dataInfo.handlerImgList);
  310. let requestList = [];
  311. // 处理图片
  312. dataInfo.handlerImgList.forEach(v => {
  313. let handlerOrderImg$ = handlerOrderImg(v);
  314. requestList.push(handlerOrderImg$);
  315. })
  316. // 报修图片
  317. dataInfo.incidentData.repairImgList.forEach(v => {
  318. let repairOrderImg$ = repairOrderImg(v);
  319. requestList.push(repairOrderImg$);
  320. })
  321. Promise.all(requestList).then(resList => {
  322. uni.hideLoading();
  323. console.log(resList);
  324. incidentBuildStore.clearIncidentBuildData();
  325. uni.showToast({
  326. icon: 'none',
  327. title: '建单成功',
  328. mask: true,
  329. });
  330. setTimeout(() => {
  331. uni.reLaunch({
  332. url: '/pages/incidentList/incidentList',
  333. })
  334. }, 1500)
  335. })
  336. }
  337. // 上传处理图片失败
  338. function handlerImgFail(e){
  339. dataInfo.handlerImgList.forEach(v => {
  340. v.url = v.path;
  341. })
  342. console.log(dataInfo.handlerImgList);
  343. }
  344. // 选择上传图片
  345. function handlerImgSelect(e){
  346. dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
  347. console.log(dataInfo.handlerImgList);
  348. }
  349. // 删除上传图片
  350. function handlerImgDelete(e){
  351. dataInfo.handlerImgList = dataInfo.handlerImgList.filter(v => e.tempFile.uuid != v.uuid);
  352. console.log(dataInfo.handlerImgList);
  353. }
  354. // 添加协同人员
  355. function synergeticAdd(sign = 'assign'){
  356. handlerStore.setHandlerData(dataInfo, 'assign', sign);
  357. uni.navigateTo({
  358. url: `/pages/synergeticAdd/synergeticAdd?incidentId=${dataInfo.incidentId}`
  359. })
  360. }
  361. // 选择故障现象
  362. function selectCategory(sign = 'assign'){
  363. handlerStore.setHandlerData(dataInfo, 'assign', sign);
  364. uni.navigateTo({
  365. url: `/pages/categoryOne/categoryOne?incidentId=${dataInfo.incidentId}`
  366. })
  367. }
  368. // 点击修改数量
  369. function numberClick(data, type){
  370. if(type === 'editConsumable'){
  371. dataInfo.evtNumber = data.consumablesNum;
  372. }else if(type === 'editWorkHourManagement'){
  373. dataInfo.evtNumber = data.workHourNum2;
  374. }
  375. dataInfo.isNumber = true;
  376. dataInfo.selectData = data;
  377. dataInfo.selectType = type;
  378. }
  379. // 确认修改数量
  380. function conformNumber(evtNumber){
  381. dataInfo.evtNumber = evtNumber;
  382. dataInfo.isNumber = false;
  383. addSummaryDoc();
  384. }
  385. // 移除数量
  386. function removeNumber(evtNumber){
  387. dataInfo.evtNumber = evtNumber;
  388. dataInfo.isNumber = false;
  389. removeSummaryDoc();
  390. }
  391. // 关闭修改数量
  392. function cancelNumber(){
  393. dataInfo.isNumber = false;
  394. }
  395. // 修改耗材/工时
  396. function addSummaryDoc(){
  397. uni.showLoading({
  398. title: "加载中",
  399. mask: true,
  400. });
  401. let postData = {
  402. "summaryId": dataInfo.summaryId,
  403. "modifyNum": 'edit',
  404. };
  405. if(dataInfo.selectType === 'editConsumable'){
  406. postData.consumableList = [
  407. {
  408. "consumablesId": dataInfo.selectData.consumableId,
  409. "consumablesNum": dataInfo.evtNumber,
  410. }
  411. ];
  412. }else if(dataInfo.selectType === 'editWorkHourManagement'){
  413. postData.workHourManagementList = [
  414. {
  415. "workHourId": dataInfo.selectData.id,
  416. "workHourNum": dataInfo.evtNumber,
  417. }
  418. ];
  419. }
  420. api_addSummaryDoc(postData).then(res => {
  421. uni.hideLoading();
  422. if(res.status == 200){
  423. uni.showToast({
  424. icon: 'none',
  425. title: '修改数量成功',
  426. mask: true,
  427. });
  428. getSummaryList();
  429. }else{
  430. uni.showToast({
  431. icon: 'none',
  432. title: res.msg || '请求数据失败!'
  433. });
  434. }
  435. })
  436. }
  437. // 移除耗材/工时
  438. function removeSummaryDoc(){
  439. uni.showLoading({
  440. title: "加载中",
  441. mask: true,
  442. });
  443. let postData = {
  444. "summaryId": dataInfo.summaryId,
  445. "remove": 'remove',
  446. };
  447. if(dataInfo.selectType === 'editConsumable'){
  448. postData.consumableList = [
  449. {
  450. "consumablesId": dataInfo.selectData.consumableId,
  451. "consumablesNum": dataInfo.evtNumber,
  452. }
  453. ];
  454. }else if(dataInfo.selectType === 'editWorkHourManagement'){
  455. postData.workHourManagementList = [
  456. {
  457. "workHourId": dataInfo.selectData.id,
  458. "workHourNum": dataInfo.evtNumber,
  459. }
  460. ];
  461. }
  462. api_addSummaryDoc(postData).then(res => {
  463. uni.hideLoading();
  464. if(res.status == 200){
  465. uni.showToast({
  466. icon: 'none',
  467. title: '移除成功',
  468. mask: true,
  469. });
  470. getSummaryList();
  471. }else{
  472. uni.showToast({
  473. icon: 'none',
  474. title: res.msg || '请求数据失败!'
  475. });
  476. }
  477. })
  478. }
  479. // 重置
  480. function reset(){
  481. dataInfo.userList = [];//处理人列表
  482. dataInfo.repairTypeList = []; //延期原因列表
  483. dataInfo.groupId = undefined; //延期原因ID
  484. dataInfo.userIdList = []; //延期天数列表
  485. dataInfo.userIdId = undefined; //延期天数ID
  486. dataInfo.deferralRemark = '';//延期说明
  487. dataInfo.summaryObj = {
  488. consumableList: [],//耗材列表
  489. workHourManagementList: [],//工时列表
  490. };//汇总单信息
  491. dataInfo.summaryId = undefined;//汇总单Id
  492. dataInfo.isNumber = false;//修改数量弹窗
  493. dataInfo.evtNumber = 1;//弹窗返回的数量
  494. dataInfo.selectData = {};//选择的对象
  495. dataInfo.selectType = {};//选择的对象类型
  496. dataInfo.handleDescription = '';//解决方案
  497. solutionId.value = null;//引用知识库id
  498. dataInfo.handleCategory = undefined;//处理方式
  499. dataInfo.handleCategoryList = [];//处理方式列表
  500. dataInfo.closecode = undefined;//处理结果
  501. dataInfo.closecodeList = [];//处理结果列表
  502. dataInfo.handlerImgList = [];//处理图片列表
  503. dataInfo.category = {};//故障现象
  504. dataInfo.synergetic = [];//协同人员
  505. }
  506. // 初始化表单
  507. function initForm(){
  508. if(dataInfo.tabActiveValue === 'direct'){
  509. getHandleCategorys();
  510. getClosecodes();
  511. }else if(dataInfo.tabActiveValue === 'supplement'){
  512. getDicGu();
  513. getHandleCategorys();
  514. getClosecodes();
  515. }else if(dataInfo.tabActiveValue === 'assign'){
  516. getGroups();
  517. }
  518. }
  519. // 点击tab
  520. function clickTab(tabValue){
  521. if(dataInfo.tabActiveValue == tabValue){
  522. return;
  523. }
  524. dataInfo.tabActiveValue = tabValue;
  525. isSubmit.value = false;
  526. reset();
  527. dataInfo.category = dataInfo.incidentData.category || {};
  528. if(dataInfo.incidentData.synergetic&&dataInfo.incidentData.synergetic.length>0){
  529. synergeticArr.value = dataInfo.incidentData.synergetic.map(v => v.name).join(',');
  530. }
  531. initForm();
  532. }
  533. // 选择工作组
  534. function changeGroup(){
  535. dataInfo.userId = undefined;
  536. dataInfo.userList = [];
  537. let postData = {
  538. "key": 'usertype',
  539. "type": "list",
  540. };
  541. api_getDictionary(postData).then((data) => {
  542. userTypes.value = data;
  543. getUsers('');
  544. });
  545. }
  546. function getDicGu(){
  547. let postData = {
  548. "key": 'usertype',
  549. "type": "list",
  550. };
  551. api_getDictionary(postData).then((data) => {
  552. userTypes.value = data;
  553. getUsers('har');
  554. });
  555. }
  556. // 选择是否转派到人
  557. function changeIsAssignUser(){
  558. dataInfo.userId = undefined;
  559. }
  560. // 获取工作组列表
  561. function getGroups(){
  562. uni.showLoading({
  563. title: "加载中",
  564. mask: true,
  565. });
  566. let postData = {
  567. "idx": 0,
  568. "sum": 9999,
  569. "group2": {
  570. "hospitals": dutyList.value.id,
  571. }
  572. };
  573. api_group(postData).then(res => {
  574. uni.hideLoading();
  575. if(res.status == 200){
  576. res.list = res.list || [];
  577. let arr = res.list.filter(i=>i.type==3)
  578. dataInfo.groupList = arr.map(v => ({
  579. text: v.groupName,
  580. value: v.id,
  581. }));
  582. }else{
  583. uni.showToast({
  584. icon: 'none',
  585. title: res.msg || '请求数据失败!'
  586. });
  587. }
  588. })
  589. }
  590. /**
  591. * 获取用户列表
  592. * @param {boolean} noGroup 是否查询组里的用户
  593. */
  594. function getUsers(type,noGroup = false){
  595. uni.showLoading({
  596. title: "加载中",
  597. mask: true,
  598. });
  599. let postData = {
  600. "idx": 0,
  601. "sum": 9999,
  602. "user": {
  603. roledata:{
  604. rolecode:'',
  605. },
  606. roleCodes:'',
  607. "hospital": dutyList.value.id,
  608. "groupdata": (dataInfo.groupId && !noGroup) ? { "id": dataInfo.groupId } : undefined,
  609. userTypeIds:String(userTypes.value.map(v => v.id)),
  610. }
  611. };
  612. if(type=='har'){
  613. postData.user.roledata.rolecode = 'first-line support'
  614. delete postData.user.roleCodes
  615. }else{
  616. postData.user.roleCodes = 'first-line support,second-line support'
  617. delete postData.user.roledata.rolecode
  618. }
  619. api_user(postData).then(res => {
  620. uni.hideLoading();
  621. if(res.status == 200){
  622. res.list = res.list || [];
  623. dataInfo.userList = res.list.map(v => ({
  624. text: v.name,
  625. value: v.id,
  626. }));
  627. }else{
  628. uni.showToast({
  629. icon: 'none',
  630. title: res.msg || '请求数据失败!'
  631. });
  632. }
  633. })
  634. }
  635. // 获取处理方式列表
  636. function getHandleCategorys(){
  637. uni.showLoading({
  638. title: "加载中",
  639. mask: true,
  640. });
  641. let postData = {
  642. "key": 'incident_handle_type',
  643. "type": "list",
  644. };
  645. api_getDictionary(postData).then(res => {
  646. uni.hideLoading();
  647. res = res || [];
  648. dataInfo.handleCategoryList = res.map(v => ({
  649. text: v.name,
  650. value: v.id,
  651. key: v.value,
  652. }));
  653. if(!dataInfo.handleCategory){
  654. let handleCategory = dataInfo.handleCategoryList.find(v => v.key == 'SUPPORT');
  655. dataInfo.handleCategory = handleCategory ? handleCategory.value : undefined;
  656. }
  657. })
  658. }
  659. // 获取处理结果列表
  660. function getClosecodes(){
  661. uni.showLoading({
  662. title: "加载中",
  663. mask: true,
  664. });
  665. let postData = {
  666. "key": 'incident_closecode',
  667. "type": "list",
  668. };
  669. api_getDictionary(postData).then(res => {
  670. uni.hideLoading();
  671. res = res || [];
  672. dataInfo.closecodeList = res.map(v => ({
  673. text: v.name,
  674. value: v.id,
  675. key: v.value,
  676. }));
  677. if(!dataInfo.closecode){
  678. let closecode = dataInfo.closecodeList.find(v => v.key == '1');
  679. dataInfo.closecode = closecode ? closecode.value : undefined;
  680. }
  681. })
  682. }
  683. // 添加耗材
  684. function addConsumable(){
  685. uni.navigateTo({
  686. url: `/pages/consumableList/consumableList?incidentId=${dataInfo.incidentId}&summaryId=${dataInfo.summaryId}`
  687. })
  688. }
  689. // 添加工时
  690. function addWorkHourManagement(){
  691. uni.navigateTo({
  692. url: `/pages/workHourManagementOne/workHourManagementOne?incidentId=${dataInfo.incidentId}&summaryId=${dataInfo.summaryId}`
  693. })
  694. }
  695. // 补单-上一步
  696. function previous(){
  697. dataInfo.supplementFlag = true;
  698. }
  699. // 补单-下一步
  700. function next(){
  701. console.log(dataInfo)
  702. isSubmit.value = true;
  703. if(!dataInfo.acceptDate){
  704. uni.showToast({
  705. icon: 'none',
  706. title: '请选择登记时间'
  707. });
  708. return;
  709. }
  710. if(!dataInfo.responseHandleTime){
  711. uni.showToast({
  712. icon: 'none',
  713. title: '请选择接单时间'
  714. });
  715. return;
  716. }
  717. if(!dataInfo.handleTime){
  718. uni.showToast({
  719. icon: 'none',
  720. title: '请选择解决时间'
  721. });
  722. return;
  723. }
  724. if(!dataInfo.handlingPersonnelUserId){
  725. uni.showToast({
  726. icon: 'none',
  727. title: '请选择处理人'
  728. });
  729. return;
  730. }
  731. dataInfo.supplementFlag = false;
  732. isSubmit.value = false;
  733. }
  734. // 提交
  735. function submit(){
  736. isSubmit.value = true;
  737. if(dataInfo.incidentData.priority){
  738. dataInfo.incidentData.priorityId = dataInfo.incidentData.priority
  739. }
  740. // dataInfo.incidentData.duty = dutyList.value.id
  741. if(loginUserStore.loginUser.user.currentHospital.parent){
  742. dataInfo.incidentData.hosId = loginUserStore.loginUser.user.currentHospital.parent.id
  743. }else{
  744. dataInfo.incidentData.hosId = loginUserStore.loginUser.user.currentHospital.id
  745. }
  746. if(dataInfo.tabActiveValue === 'direct'){
  747. submitHandler();
  748. }else if(dataInfo.tabActiveValue === 'supplement'){
  749. submitSupplement();
  750. }else if(dataInfo.tabActiveValue === 'assign'){
  751. submitAssign();
  752. }
  753. }
  754. // 处理提交事件
  755. async function handlerOrder(){
  756. let postData = {
  757. incident: dataInfo.incidentData,
  758. solutionId: solutionId.value
  759. }
  760. // let result = await beforeBuild();
  761. // if(result[0].status == 200 && result[1].status == 200){
  762. // postData.incident.repairType = result[0].list.length ? result[0].list[0].valueconfig : undefined;
  763. // postData.incident.incidentsign = result[1].data || undefined;
  764. // }else{
  765. // uni.showToast({
  766. // icon: 'none',
  767. // title: '请求数据失败!'
  768. // });
  769. // return;
  770. // }
  771. postData.incident.place = {}
  772. postData.incident.place.id = floorId.value
  773. postData.incident.handleDescription = dataInfo.handleDescription;
  774. postData.incident.handleCategory = {id: dataInfo.handleCategory};
  775. postData.incident.closecode = {id: dataInfo.closecode};
  776. postData.incident.category = dataInfo.category;
  777. if(dataInfo.synergetic && dataInfo.synergetic.length>0){
  778. postData.incident.synergetic = dataInfo.synergetic
  779. }else{
  780. postData.incident.synergetic = null
  781. }
  782. console.log(999, postData.incident)
  783. postData.incident.directProcess = 1;//直接解决
  784. return api_incidentTask('accept', postData);
  785. }
  786. // 补单提交事件
  787. async function supplementOrder(){
  788. let postData = {
  789. incident: dataInfo.incidentData,
  790. solutionId: solutionId.value
  791. }
  792. // let result = await beforeBuild();
  793. // if(result[0].status == 200 && result[1].status == 200){
  794. // postData.incident.repairType = result[0].list.length ? result[0].list[0].valueconfig : undefined;
  795. // postData.incident.incidentsign = result[1].data || undefined;
  796. // }else{
  797. // uni.showToast({
  798. // icon: 'none',
  799. // title: '请求数据失败!'
  800. // });
  801. // return;
  802. // }
  803. if(HandleData.simpleness==1){
  804. dataInfo.closecode = '20401'
  805. }
  806. postData.incident.place = {}
  807. postData.incident.place.id = floorId.value
  808. postData.incident.handleDescription = dataInfo.handleDescription;
  809. postData.incident.handleCategory = {id: dataInfo.handleCategory};
  810. postData.incident.closecode = {id: dataInfo.closecode};
  811. postData.incident.category = dataInfo.category;
  812. if(dataInfo.synergetic && dataInfo.synergetic.length>0){
  813. postData.incident.synergetic = dataInfo.synergetic
  814. }else{
  815. postData.incident.synergetic = null
  816. }
  817. postData.incident.directProcess = 1;//直接解决
  818. postData.incident.acceptDate = dataInfo.acceptDate;
  819. postData.incident.responseHandleTime = dataInfo.responseHandleTime;
  820. postData.incident.handleTime = dataInfo.handleTime;
  821. postData.incident.handlingPersonnelUser = { id: dataInfo.handlingPersonnelUserId };
  822. return api_incidentTask('patchOrder', postData);
  823. }
  824. // 建单前的接口
  825. function beforeBuild(){
  826. let repairMain$ = api_systemConfiguration({
  827. "idx": 0,
  828. "sum": 1,
  829. "systemConfiguration": {
  830. "keyconfig": "repairMain"
  831. }
  832. })
  833. let sj$ = api_sj();
  834. return Promise.all([repairMain$, sj$])
  835. }
  836. // 派单提交事件
  837. async function assignOrder(){
  838. let postData = {
  839. incident: dataInfo.incidentData,
  840. }
  841. // let result = await beforeBuild();
  842. // if(result[0].status == 200 && result[1].status == 200){
  843. // postData.incident.repairType = result[0].list.length ? result[0].list[0].valueconfig : undefined;
  844. // postData.incident.incidentsign = result[1].data || undefined;
  845. // }else{
  846. // uni.showToast({
  847. // icon: 'none',
  848. // title: '请求数据失败!'
  849. // });
  850. // return;
  851. // }
  852. postData.incident.place = {}
  853. postData.incident.place.id = floorId.value
  854. postData.incident.candidateGroupId = dataInfo.groupId;
  855. if(dataInfo.userId){
  856. // 派人
  857. postData.incident.assignee = dataInfo.userId;
  858. delete postData.incident.candidateGroups
  859. } else {
  860. // 派组
  861. postData.incident.candidateGroups = dataInfo.groupId;
  862. delete postData.incident.assignee
  863. }
  864. return api_incidentTask('accept', postData);
  865. }
  866. // 处理图片
  867. function handlerOrderImg(imgObj){
  868. return uploadFile(imgObj, 'incident', dataInfo.incidentId)
  869. }
  870. // 报修图片
  871. function repairOrderImg(imgObj){
  872. return uploadFile(imgObj, 'wechatRequesterIncident', dataInfo.incidentId)
  873. }
  874. // 引入知识库
  875. function importRep(type,tabType){
  876. dataInfo.operateType = type
  877. dataInfo.tabType = tabType
  878. handlerStore.setHandlerData(dataInfo, 'assign', 'assign');
  879. uni.navigateTo({
  880. url: `/pages/repository/repository?incidentId=${dataInfo.incidentId}`
  881. })
  882. }
  883. // 处理提交
  884. function submitHandler(){
  885. console.log(dataInfo);
  886. if(!dataInfo.handleDescription.trim() && HandleData.simpleness != 1){
  887. uni.showToast({
  888. icon: 'none',
  889. title: '请填写解决方案'
  890. });
  891. return;
  892. }
  893. if(!dataInfo.category.id && HandleData.simpleness != 1){
  894. uni.showToast({
  895. icon: 'none',
  896. title: '请选择故障现象'
  897. });
  898. return;
  899. }
  900. if(!dataInfo.handleCategory){
  901. uni.showToast({
  902. icon: 'none',
  903. title: '请选择处理方式'
  904. });
  905. return;
  906. }
  907. if(!dataInfo.closecode && HandleData.simpleness != 1){
  908. uni.showToast({
  909. icon: 'none',
  910. title: '请选择处理结果'
  911. });
  912. return;
  913. }
  914. if(!dutyList.value){
  915. uni.showToast({
  916. icon: 'none',
  917. title: '您选择的故障现象没有设置责任科室'
  918. });
  919. return;
  920. }
  921. uni.showLoading({
  922. title: "加载中",
  923. mask: true,
  924. });
  925. if(HandleData.simpleness==1){
  926. dataInfo.closecode = '20401'
  927. }
  928. if(dataInfo.handlerImgList.length){
  929. // 有处理图片
  930. let handlerOrder$ = handlerOrder();
  931. let requestList = [handlerOrder$];
  932. Promise.all(requestList).then(resList => {
  933. console.log(resList);
  934. if(resList[0].state == 200){
  935. dataInfo.incidentId = resList[0].data.id;
  936. handlerImgRef.value.upload();
  937. }else{
  938. uni.hideLoading();
  939. uni.showToast({
  940. icon: 'none',
  941. title: resList[0].msg || '请求数据失败!'
  942. });
  943. }
  944. })
  945. }else if(dataInfo.incidentData.repairImgList.length){
  946. // 有报修图片,无处理图片
  947. let handlerOrder$ = handlerOrder();
  948. let requestList = [handlerOrder$];
  949. Promise.all(requestList).then(resList => {
  950. console.log(resList);
  951. if(resList[0].state == 200){
  952. dataInfo.incidentId = resList[0].data.id;
  953. handlerImgSuccessNew();
  954. }else{
  955. uni.hideLoading();
  956. uni.showToast({
  957. icon: 'none',
  958. title: resList[0].msg || '请求数据失败!'
  959. });
  960. }
  961. })
  962. }else{
  963. // 没有图片
  964. let handlerOrder$ = handlerOrder();
  965. let requestList = [handlerOrder$];
  966. Promise.all(requestList).then(resList => {
  967. uni.hideLoading();
  968. console.log(resList);
  969. if(resList[0].state == 200){
  970. incidentBuildStore.clearIncidentBuildData();
  971. uni.showToast({
  972. icon: 'none',
  973. title: '建单成功',
  974. mask: true,
  975. });
  976. setTimeout(() => {
  977. uni.reLaunch({
  978. url: '/pages/incidentList/incidentList',
  979. })
  980. }, 1500)
  981. }else{
  982. uni.showToast({
  983. icon: 'none',
  984. title: resList[0].msg || '请求数据失败!'
  985. });
  986. }
  987. })
  988. }
  989. }
  990. // 派单提交
  991. function submitAssign(){
  992. console.log(444,dutyList.value)
  993. if(!dataInfo.groupId){
  994. uni.showToast({
  995. icon: 'none',
  996. title: '请选择工作组'
  997. });
  998. return;
  999. }
  1000. if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
  1001. uni.showToast({
  1002. icon: 'none',
  1003. title: '请选择指派对象'
  1004. });
  1005. return;
  1006. }
  1007. if(!dutyList.value){
  1008. uni.showToast({
  1009. icon: 'none',
  1010. title: '您选择的故障现象没有设置责任科室'
  1011. });
  1012. return;
  1013. }
  1014. uni.showLoading({
  1015. title: "加载中",
  1016. mask: true,
  1017. });
  1018. if(dataInfo.incidentData.repairImgList.length){
  1019. // 有图片
  1020. let assignOrder$ = assignOrder();
  1021. let requestList = [assignOrder$];
  1022. Promise.all(requestList).then(resList => {
  1023. console.log(resList);
  1024. if(resList[0].state == 200){
  1025. dataInfo.incidentId = resList[0].data.id;
  1026. // handlerImgRef.value.upload();
  1027. handlerImgSuccessNew();
  1028. }else{
  1029. uni.hideLoading();
  1030. uni.showToast({
  1031. icon: 'none',
  1032. title: resList[0].msg || '请求数据失败!'
  1033. });
  1034. }
  1035. })
  1036. }else{
  1037. // 没有图片
  1038. let assignOrder$ = assignOrder();
  1039. let requestList = [assignOrder$];
  1040. Promise.all(requestList).then(resList => {
  1041. uni.hideLoading();
  1042. console.log(resList);
  1043. if(resList[0].state == 200){
  1044. incidentBuildStore.clearIncidentBuildData();
  1045. uni.showToast({
  1046. icon: 'none',
  1047. title: '建单成功',
  1048. mask: true,
  1049. });
  1050. setTimeout(() => {
  1051. uni.reLaunch({
  1052. url: '/pages/incidentList/incidentList',
  1053. })
  1054. }, 1500)
  1055. }else{
  1056. uni.showToast({
  1057. icon: 'none',
  1058. title: resList[0].msg || '请求数据失败!'
  1059. });
  1060. }
  1061. })
  1062. }
  1063. }
  1064. // 补单提交
  1065. function submitSupplement(){
  1066. console.log(dataInfo);
  1067. if(!dataInfo.handleDescription.trim() && HandleData.simpleness != 1){
  1068. uni.showToast({
  1069. icon: 'none',
  1070. title: '请填写解决方案'
  1071. });
  1072. return;
  1073. }
  1074. if(!dataInfo.category.id && HandleData.simpleness != 1){
  1075. uni.showToast({
  1076. icon: 'none',
  1077. title: '请选择故障现象'
  1078. });
  1079. return;
  1080. }
  1081. if(!dataInfo.handleCategory){
  1082. uni.showToast({
  1083. icon: 'none',
  1084. title: '请选择处理方式'
  1085. });
  1086. return;
  1087. }
  1088. if(!dataInfo.closecode && HandleData.simpleness != 1){
  1089. uni.showToast({
  1090. icon: 'none',
  1091. title: '请选择处理结果'
  1092. });
  1093. return;
  1094. }
  1095. if(!dutyList.value){
  1096. uni.showToast({
  1097. icon: 'none',
  1098. title: '您选择的故障现象没有设置责任科室'
  1099. });
  1100. return;
  1101. }
  1102. console.log(dataInfo)
  1103. console.log(dataInfo.handlerImgList)
  1104. console.log(dataInfo.incidentData.repairImgList)
  1105. uni.showLoading({
  1106. title: "加载中",
  1107. mask: true,
  1108. });
  1109. if(dataInfo.handlerImgList.length){
  1110. // 有处理图片
  1111. let supplementOrder$ = supplementOrder();
  1112. let requestList = [supplementOrder$];
  1113. Promise.all(requestList).then(resList => {
  1114. console.log(resList);
  1115. if(resList[0].state == 200){
  1116. dataInfo.incidentId = resList[0].data.id;
  1117. handlerImgRef.value.upload();
  1118. }else{
  1119. uni.hideLoading();
  1120. uni.showToast({
  1121. icon: 'none',
  1122. title: resList[0].msg || '请求数据失败!'
  1123. });
  1124. }
  1125. })
  1126. }else if(dataInfo.incidentData.repairImgList.length){
  1127. // 有报修图片,无处理图片
  1128. let supplementOrder$ = supplementOrder();
  1129. let requestList = [supplementOrder$];
  1130. Promise.all(requestList).then(resList => {
  1131. console.log(resList);
  1132. if(resList[0].state == 200){
  1133. dataInfo.incidentId = resList[0].data.id;
  1134. handlerImgSuccessNew();
  1135. }else{
  1136. uni.hideLoading();
  1137. uni.showToast({
  1138. icon: 'none',
  1139. title: resList[0].msg || '请求数据失败!'
  1140. });
  1141. }
  1142. })
  1143. }else{
  1144. // 没有图片
  1145. let supplementOrder$ = supplementOrder();
  1146. let requestList = [supplementOrder$];
  1147. Promise.all(requestList).then(resList => {
  1148. uni.hideLoading();
  1149. console.log(resList);
  1150. if(resList[0].state == 200){
  1151. incidentBuildStore.clearIncidentBuildData();
  1152. uni.showToast({
  1153. icon: 'none',
  1154. title: '建单成功',
  1155. mask: true,
  1156. });
  1157. setTimeout(() => {
  1158. uni.reLaunch({
  1159. url: '/pages/incidentList/incidentList',
  1160. })
  1161. }, 1500)
  1162. }else{
  1163. uni.showToast({
  1164. icon: 'none',
  1165. title: resList[0].msg || '请求数据失败!'
  1166. });
  1167. }
  1168. })
  1169. }
  1170. }
  1171. // 菜单权限
  1172. function menuAuthHandle(){
  1173. let shijianliebiao_supplement = false;//故障处理权限
  1174. for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
  1175. if (loginUserStore.loginUser.menu[i].link == "replenishment") {
  1176. shijianliebiao_supplement = true
  1177. }
  1178. }
  1179. // 补单
  1180. if(shijianliebiao_supplement){
  1181. let index = dataInfo.tabs.findIndex(v => v.value === 'assign');
  1182. dataInfo.tabs.splice(index, 0, {id: 7, name: '补单', value: 'supplement', num: ''});
  1183. }
  1184. }
  1185. // 获取知识库数量
  1186. function getIntroduceCount(categoryId){
  1187. uni.showLoading({
  1188. title: "加载中",
  1189. mask: true,
  1190. });
  1191. let postData = {
  1192. idx: 0,
  1193. sum: 9999,
  1194. solution: {
  1195. deleteFlag:0,
  1196. hosId: loginUserStore.loginUser.user.currentHospital.id,
  1197. categoryId: categoryId,
  1198. status:{id:dicData.value?.id},
  1199. }
  1200. }
  1201. api_getSolution(postData).then(res => {
  1202. uni.hideLoading();
  1203. if(res.status == 200){
  1204. dataInfo.introduceCount = res.totalNum
  1205. }else{
  1206. uni.showToast({
  1207. icon: 'none',
  1208. title: res.msg || '请求数据失败!'
  1209. });
  1210. }
  1211. })
  1212. }
  1213. // 获取文本内容
  1214. function getHtml(html) {
  1215. const tempDiv = document.createElement('div');
  1216. tempDiv.innerHTML = html;
  1217. return tempDiv.textContent || tempDiv.innerText || '';
  1218. }
  1219. // 获取字典
  1220. function getDic(){
  1221. let postData = {
  1222. "key": 'solution_status',
  1223. "type": "list",
  1224. };
  1225. api_getDictionary(postData).then(res => {
  1226. dicData.value = res.find(v => v.value == '3');
  1227. // 跳转页面选择了选项
  1228. if(handlerStore.handler.data){
  1229. Object.assign(dataInfo, handlerStore.handler.data);
  1230. if(dataInfo.synergetic){
  1231. synergeticArr.value = dataInfo.synergetic.map(v => v.name).join(',')
  1232. }
  1233. if(handlerStore.handler.sign === 'assign'){
  1234. dataInfo.tabActiveValue = 'direct';
  1235. }else if(handlerStore.handler.sign === 'assign_supplement'){
  1236. dataInfo.tabActiveValue = 'supplement';
  1237. next();
  1238. }
  1239. let storeData = handlerStore.handler.data
  1240. if(storeData.type == 'rep'){
  1241. dataInfo.handleDescription = null;
  1242. if(storeData.handleDescription){
  1243. dataInfo.handleDescription = storeData.handleDescription;
  1244. solutionId.value = storeData.solutionId
  1245. }
  1246. if(storeData.tabType == 'direct'){
  1247. dataInfo.tabActiveValue = 'direct'
  1248. }else{
  1249. dataInfo.tabActiveValue = 'supplement'
  1250. dataInfo.supplementFlag = false
  1251. }
  1252. }
  1253. handlerStore.clearHandlerData();
  1254. if(dataInfo.category){
  1255. dataInfo.incidentData.category = dataInfo.category;
  1256. if(dataInfo.incidentData.place.floor){
  1257. floorId.value = JSON.parse(JSON.stringify(dataInfo.incidentData.place.floor.id))
  1258. }else{
  1259. floorId.value = JSON.parse(JSON.stringify(dataInfo.incidentData.place.id))
  1260. }
  1261. console.log(111)
  1262. getIntroduceCount(dataInfo.category.id)
  1263. // 处理责任科室
  1264. // if(dataInfo.category.branchType == 1){
  1265. // // 分院区
  1266. // if(dataInfo.incidentData.branch){
  1267. // let dutyConfig = dataInfo.category.branchUserGroups.find(v=>v.branchId == dataInfo.incidentData.branch);
  1268. // if(dutyConfig && dutyConfig.dutyId && dutyConfig.dutyName){
  1269. // dataInfo.incidentData.duty = {id:dutyConfig.dutyId,dept:dutyConfig.dutyName};
  1270. // }else{
  1271. // dataInfo.incidentData.duty = undefined;
  1272. // }
  1273. // }else{
  1274. // dataInfo.incidentData.duty = undefined;
  1275. // }
  1276. // }else{
  1277. // // 不分院区
  1278. // // dataInfo.incidentData.hosId = loginUserStore.loginUser.user.currentHospital.id;
  1279. // }
  1280. getDuty()
  1281. }
  1282. }else if(incidentBuildStore.incidentBuild.data){
  1283. console.log(222)
  1284. // 初始化
  1285. Object.assign(dataInfo.incidentData, incidentBuildStore.incidentBuild.data);
  1286. if(dataInfo.incidentData.category){
  1287. if(dataInfo.incidentData.synergetic){
  1288. synergeticArr.value = dataInfo.incidentData.synergetic.map(v => v.name).join(',')
  1289. }
  1290. dataInfo.category = dataInfo.incidentData.category;
  1291. getIntroduceCount(dataInfo.category.id)
  1292. // 处理责任科室
  1293. // if(dataInfo.category.branchType == 1){
  1294. // // 分院区
  1295. // if(dataInfo.incidentData.branch){
  1296. // let dutyConfig = dataInfo.category.branchUserGroups.find(v=>v.branchId == dataInfo.incidentData.branch);
  1297. // if(dutyConfig && dutyConfig.dutyId && dutyConfig.dutyName){
  1298. // dataInfo.incidentData.duty = {id:dutyConfig.dutyId,dept:dutyConfig.dutyName};
  1299. // }else{
  1300. // dataInfo.incidentData.duty = undefined;
  1301. // }
  1302. // }else{
  1303. // dataInfo.incidentData.duty = undefined;
  1304. // }
  1305. // }else{
  1306. // // 不分院区
  1307. // dataInfo.incidentData.hosId = loginUserStore.loginUser.user.currentHospital.id;
  1308. // }
  1309. }
  1310. if(dataInfo.incidentData.place.floor){
  1311. floorId.value = JSON.parse(JSON.stringify(dataInfo.incidentData.place.floor.id))
  1312. }else{
  1313. floorId.value = JSON.parse(JSON.stringify(dataInfo.incidentData.place.id))
  1314. }
  1315. getDuty()
  1316. if(dataInfo.incidentData.source){
  1317. dataInfo.incidentData.source = { id: dataInfo.incidentData.source };
  1318. }
  1319. if(dataInfo.incidentData.requester){
  1320. dataInfo.incidentData.requester = dataInfo.incidentData.requester
  1321. }
  1322. }
  1323. })
  1324. }
  1325. // 获取故障现象绑定的科室
  1326. function getDuty(){
  1327. let postData = {
  1328. idx: 0,
  1329. sum: 9999,
  1330. incidentCategoryConfig: {
  1331. categoryId: dataInfo.incidentData.category.id,
  1332. dutyId: loginUserStore.loginUser.user.currentHospital.id,
  1333. },
  1334. };
  1335. getFetchDataList("simple/data", "incidentCategoryConfig", postData).then(res => {
  1336. let item = res.list.find(i=>i.categoryId == dataInfo.incidentData.category.id)
  1337. dutyList.value = item.dutyDTO
  1338. dataInfo.incidentData.duty = dutyList.value.id
  1339. initForm()
  1340. console.log(1111,dutyList.value)
  1341. })
  1342. }
  1343. // 获取是否开启汇总单
  1344. function getHosConfig(){
  1345. let postData = {
  1346. idx: 0,
  1347. sum: 9999,
  1348. hospitalConfig:{
  1349. hosId: loginUserStore.loginUser.user.currentHospital.id,
  1350. model: "itsm"
  1351. }
  1352. };
  1353. getFetchDataList("simple/data", "hospitalConfig", postData)
  1354. .then((res) => {
  1355. // SummaryData.value = res.list.find(i=>i.key=='itsmSummarySheet')
  1356. HandleData.simpleness = res.list.find(i=>i.key=='itsmSimpleHandle').value
  1357. });
  1358. }
  1359. onLoad((option) => {
  1360. getHosConfig()
  1361. menuAuthHandle()
  1362. getDic()
  1363. if(!dataInfo.tabActiveValue){
  1364. dataInfo.tabActiveValue = dataInfo.tabs[0].value;
  1365. }
  1366. })
  1367. </script>
  1368. <style lang="scss" scoped>
  1369. .handler{
  1370. height: 100%;
  1371. display: flex;
  1372. flex-direction: column;
  1373. justify-content: space-between;
  1374. .head{
  1375. height: 88rpx;
  1376. display: flex;
  1377. position: fixed;
  1378. z-index: 99;
  1379. width: 100%;
  1380. background-color: #fff;
  1381. font-size: 30rpx;
  1382. .tab{
  1383. flex: 1;
  1384. display: flex;
  1385. justify-content: center;
  1386. align-items: center;
  1387. border-bottom: 4rpx solid transparent;
  1388. &.active{
  1389. color: $uni-primary;
  1390. border-color: $uni-primary;
  1391. }
  1392. }
  1393. }
  1394. .body{
  1395. margin-top: 88rpx;
  1396. box-sizing: border-box;
  1397. flex: 1;
  1398. min-height: 0;
  1399. &.bg{
  1400. background-color: #F7F7F7;
  1401. }
  1402. .summaryItem{
  1403. &:first-of-type{
  1404. .summaryItem_head{
  1405. border-bottom: 1rpx solid #DDDDDD;
  1406. }
  1407. }
  1408. .summary_total{
  1409. padding: 20rpx 0;
  1410. display: flex;
  1411. justify-content: center;
  1412. align-items: center;
  1413. }
  1414. .summaryItem_head{
  1415. padding: 24rpx;
  1416. font-size: 26rpx;
  1417. color: #3A3A3A;
  1418. }
  1419. .summaryItem_body{
  1420. font-size: 30rpx;
  1421. background-color: #fff;
  1422. .summaryItem_bodyItem{
  1423. padding: 24rpx;
  1424. border-bottom: 1rpx solid #DDDDDD;
  1425. .summaryItem_bodyItem_top{
  1426. display: flex;
  1427. justify-content: space-between;
  1428. align-items: center;
  1429. .value{
  1430. padding-left: 48rpx;
  1431. flex-shrink: 0;
  1432. }
  1433. }
  1434. .summaryItem_bodyItem_bottom{
  1435. margin-top: 24rpx;
  1436. display: flex;
  1437. justify-content: space-between;
  1438. align-items: center;
  1439. .name{
  1440. text-align: right;
  1441. flex: 1;
  1442. }
  1443. .value{
  1444. width: 240rpx;
  1445. text-align: right;
  1446. padding-left: 48rpx;
  1447. flex-shrink: 0;
  1448. }
  1449. }
  1450. }
  1451. }
  1452. .summaryItem_foot{
  1453. font-size: 30rpx;
  1454. background-color: #fff;
  1455. &.total{
  1456. margin-top: 24rpx;
  1457. }
  1458. .summaryItem_foot_total{
  1459. padding: 24rpx 0;
  1460. display: flex;
  1461. justify-content: center;
  1462. align-items: center;
  1463. }
  1464. .summaryItem_foot_add{
  1465. border-top: 1rpx solid #DDDDDD;
  1466. padding: 24rpx 0;
  1467. display: flex;
  1468. justify-content: center;
  1469. align-items: center;
  1470. .newicon-icon-test{
  1471. font-size: 30rpx;
  1472. font-weight: bold;
  1473. }
  1474. }
  1475. }
  1476. }
  1477. .form_item_column{
  1478. padding-top: 24rpx;
  1479. min-height: 86rpx;
  1480. .form_item{
  1481. padding-top: 0;
  1482. min-height: auto;
  1483. }
  1484. }
  1485. .form_item{
  1486. display: flex;
  1487. align-items: center;
  1488. padding-top: 24rpx;
  1489. min-height: 86rpx;
  1490. &.column{
  1491. height: auto;
  1492. flex-direction: column;
  1493. align-items: flex-start;
  1494. .import-rep{
  1495. padding: 5rpx 10rpx;
  1496. border-radius: 50rpx;
  1497. background: #d1fcd5;
  1498. color: #49b856;
  1499. font-size: 24rpx;
  1500. }
  1501. .title{
  1502. margin-right: 0;
  1503. }
  1504. .title-width{
  1505. width: 100%;
  1506. }
  1507. .title-fl-sb{
  1508. display: flex;
  1509. justify-content: space-between;
  1510. width: 100%;
  1511. }
  1512. .value{
  1513. margin-top: 10rpx;
  1514. padding-left: 20rpx;
  1515. box-sizing: border-box;
  1516. }
  1517. .tips{
  1518. padding: 24rpx;
  1519. text-align: center;
  1520. font-size: 22rpx;
  1521. color: #909399;
  1522. width: 100%;
  1523. box-sizing: border-box;
  1524. }
  1525. }
  1526. .title{
  1527. font-size: 26rpx;
  1528. display: flex;
  1529. align-items: center;
  1530. margin-right: 12rpx;
  1531. flex-shrink: 0;
  1532. &.select{
  1533. width: calc(5em + 20rpx);
  1534. }
  1535. }
  1536. .value{
  1537. width: 100%;
  1538. &.category{
  1539. width: 100%;
  1540. display: flex;
  1541. justify-content: space-between;
  1542. align-items: center;
  1543. .categoryName{
  1544. font-size: 26rpx;
  1545. color: #555;
  1546. flex: 1;
  1547. }
  1548. .newicon-weibiaoti2010104{
  1549. color: $uni-primary;
  1550. margin-left: 24rpx;
  1551. }
  1552. }
  1553. .imgTips{
  1554. color: #909399;
  1555. font-size: 22rpx;
  1556. }
  1557. }
  1558. .synergeticNames{
  1559. font-size: 26rpx;
  1560. margin-right: 24rpx;
  1561. }
  1562. .synergeticAdd{
  1563. flex-shrink: 0;
  1564. }
  1565. }
  1566. }
  1567. }
  1568. </style>