assign.vue 52 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691
  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 repairIncidentTypeList = await api_getDictionary({
  757. "key": 'repair_incident_type',
  758. "type": "list",
  759. })
  760. repairIncidentTypeList = repairIncidentTypeList || [];
  761. let postData = {
  762. incident: dataInfo.incidentData,
  763. solutionId: solutionId.value
  764. }
  765. // let result = await beforeBuild();
  766. // if(result[0].status == 200 && result[1].status == 200){
  767. // postData.incident.repairType = result[0].list.length ? result[0].list[0].valueconfig : undefined;
  768. // postData.incident.incidentsign = result[1].data || undefined;
  769. // }else{
  770. // uni.showToast({
  771. // icon: 'none',
  772. // title: '请求数据失败!'
  773. // });
  774. // return;
  775. // }
  776. postData.incident.repairIncidentType = repairIncidentTypeList.find(v => v.value === 'dept');
  777. postData.incident.place = {}
  778. postData.incident.place.id = floorId.value
  779. postData.incident.handleDescription = dataInfo.handleDescription;
  780. postData.incident.handleCategory = {id: dataInfo.handleCategory};
  781. postData.incident.closecode = {id: dataInfo.closecode};
  782. postData.incident.category = dataInfo.category;
  783. if(dataInfo.synergetic && dataInfo.synergetic.length>0){
  784. postData.incident.synergetic = dataInfo.synergetic
  785. }else{
  786. postData.incident.synergetic = null
  787. }
  788. console.log(999, postData.incident)
  789. postData.incident.directProcess = 1;//直接解决
  790. return api_incidentTask('accept', postData);
  791. }
  792. // 补单提交事件
  793. async function supplementOrder(){
  794. let repairIncidentTypeList = await api_getDictionary({
  795. "key": 'repair_incident_type',
  796. "type": "list",
  797. })
  798. repairIncidentTypeList = repairIncidentTypeList || [];
  799. let postData = {
  800. incident: dataInfo.incidentData,
  801. solutionId: solutionId.value
  802. }
  803. // let result = await beforeBuild();
  804. // if(result[0].status == 200 && result[1].status == 200){
  805. // postData.incident.repairType = result[0].list.length ? result[0].list[0].valueconfig : undefined;
  806. // postData.incident.incidentsign = result[1].data || undefined;
  807. // }else{
  808. // uni.showToast({
  809. // icon: 'none',
  810. // title: '请求数据失败!'
  811. // });
  812. // return;
  813. // }
  814. // if(HandleData.simpleness==1){
  815. // dataInfo.closecode = '1'
  816. // }
  817. postData.incident.repairIncidentType = repairIncidentTypeList.find(v => v.value === 'dept');
  818. postData.incident.place = {}
  819. postData.incident.place.id = floorId.value
  820. postData.incident.handleDescription = dataInfo.handleDescription;
  821. postData.incident.handleCategory = {id: dataInfo.handleCategory};
  822. postData.incident.closecode = {id: dataInfo.closecode};
  823. postData.incident.category = dataInfo.category;
  824. if(dataInfo.synergetic && dataInfo.synergetic.length>0){
  825. postData.incident.synergetic = dataInfo.synergetic
  826. }else{
  827. postData.incident.synergetic = null
  828. }
  829. postData.incident.directProcess = 1;//直接解决
  830. postData.incident.acceptDate = dataInfo.acceptDate;
  831. postData.incident.responseHandleTime = dataInfo.responseHandleTime;
  832. postData.incident.handleTime = dataInfo.handleTime;
  833. postData.incident.handlingPersonnelUser = { id: dataInfo.handlingPersonnelUserId };
  834. return api_incidentTask('patchOrder', postData);
  835. }
  836. // 建单前的接口
  837. function beforeBuild(){
  838. let repairMain$ = api_systemConfiguration({
  839. "idx": 0,
  840. "sum": 1,
  841. "systemConfiguration": {
  842. "keyconfig": "repairMain"
  843. }
  844. })
  845. let sj$ = api_sj();
  846. return Promise.all([repairMain$, sj$])
  847. }
  848. // 派单提交事件
  849. async function assignOrder(){
  850. let repairIncidentTypeList = await api_getDictionary({
  851. "key": 'repair_incident_type',
  852. "type": "list",
  853. })
  854. repairIncidentTypeList = repairIncidentTypeList || [];
  855. let postData = {
  856. incident: dataInfo.incidentData,
  857. }
  858. // let result = await beforeBuild();
  859. // if(result[0].status == 200 && result[1].status == 200){
  860. // postData.incident.repairType = result[0].list.length ? result[0].list[0].valueconfig : undefined;
  861. // postData.incident.incidentsign = result[1].data || undefined;
  862. // }else{
  863. // uni.showToast({
  864. // icon: 'none',
  865. // title: '请求数据失败!'
  866. // });
  867. // return;
  868. // }
  869. postData.incident.repairIncidentType = repairIncidentTypeList.find(v => v.value === 'dept');
  870. postData.incident.place = {}
  871. postData.incident.place.id = floorId.value
  872. postData.incident.candidateGroupId = dataInfo.groupId;
  873. if(dataInfo.userId){
  874. // 派人
  875. postData.incident.assignee = dataInfo.userId;
  876. delete postData.incident.candidateGroups
  877. } else {
  878. // 派组
  879. postData.incident.candidateGroups = dataInfo.groupId;
  880. delete postData.incident.assignee
  881. }
  882. return api_incidentTask('accept', postData);
  883. }
  884. // 处理图片
  885. function handlerOrderImg(imgObj){
  886. return uploadFile(imgObj, 'incident', dataInfo.incidentId)
  887. }
  888. // 报修图片
  889. function repairOrderImg(imgObj){
  890. return uploadFile(imgObj, 'wechatRequesterIncident', dataInfo.incidentId)
  891. }
  892. // 引入知识库
  893. function importRep(type,tabType){
  894. dataInfo.operateType = type
  895. dataInfo.tabType = tabType
  896. handlerStore.setHandlerData(dataInfo, 'assign', 'assign');
  897. uni.navigateTo({
  898. url: `/pages/repository/repository?incidentId=${dataInfo.incidentId}`
  899. })
  900. }
  901. // 处理提交
  902. function submitHandler(){
  903. console.log(dataInfo);
  904. if(!dataInfo.handleDescription.trim() && HandleData.simpleness != 1){
  905. uni.showToast({
  906. icon: 'none',
  907. title: '请填写解决方案'
  908. });
  909. return;
  910. }
  911. if(!dataInfo.category.id && HandleData.simpleness != 1){
  912. uni.showToast({
  913. icon: 'none',
  914. title: '请选择故障现象'
  915. });
  916. return;
  917. }
  918. if(!dataInfo.handleCategory){
  919. uni.showToast({
  920. icon: 'none',
  921. title: '请选择处理方式'
  922. });
  923. return;
  924. }
  925. if(!dataInfo.closecode && HandleData.simpleness != 1){
  926. uni.showToast({
  927. icon: 'none',
  928. title: '请选择处理结果'
  929. });
  930. return;
  931. }
  932. if(!dutyList.value){
  933. uni.showToast({
  934. icon: 'none',
  935. title: '您选择的故障现象没有设置责任科室'
  936. });
  937. return;
  938. }
  939. uni.showLoading({
  940. title: "加载中",
  941. mask: true,
  942. });
  943. // if(HandleData.simpleness==1){
  944. // dataInfo.closecode = '1'
  945. // }
  946. if(dataInfo.handlerImgList.length){
  947. // 有处理图片
  948. let handlerOrder$ = handlerOrder();
  949. let requestList = [handlerOrder$];
  950. Promise.all(requestList).then(resList => {
  951. console.log(resList);
  952. if(resList[0].state == 200){
  953. dataInfo.incidentId = resList[0].data.id;
  954. handlerImgRef.value.upload();
  955. }else{
  956. uni.hideLoading();
  957. uni.showToast({
  958. icon: 'none',
  959. title: resList[0].msg || '请求数据失败!'
  960. });
  961. }
  962. })
  963. }else if(dataInfo.incidentData.repairImgList.length){
  964. // 有报修图片,无处理图片
  965. let handlerOrder$ = handlerOrder();
  966. let requestList = [handlerOrder$];
  967. Promise.all(requestList).then(resList => {
  968. console.log(resList);
  969. if(resList[0].state == 200){
  970. dataInfo.incidentId = resList[0].data.id;
  971. handlerImgSuccessNew();
  972. }else{
  973. uni.hideLoading();
  974. uni.showToast({
  975. icon: 'none',
  976. title: resList[0].msg || '请求数据失败!'
  977. });
  978. }
  979. })
  980. }else{
  981. // 没有图片
  982. let handlerOrder$ = handlerOrder();
  983. let requestList = [handlerOrder$];
  984. Promise.all(requestList).then(resList => {
  985. uni.hideLoading();
  986. console.log(resList);
  987. if(resList[0].state == 200){
  988. incidentBuildStore.clearIncidentBuildData();
  989. uni.showToast({
  990. icon: 'none',
  991. title: '建单成功',
  992. mask: true,
  993. });
  994. setTimeout(() => {
  995. uni.reLaunch({
  996. url: '/pages/incidentList/incidentList',
  997. })
  998. }, 1500)
  999. }else{
  1000. uni.showToast({
  1001. icon: 'none',
  1002. title: resList[0].msg || '请求数据失败!'
  1003. });
  1004. }
  1005. })
  1006. }
  1007. }
  1008. // 派单提交
  1009. function submitAssign(){
  1010. console.log(444,dutyList.value)
  1011. if(!dataInfo.groupId){
  1012. uni.showToast({
  1013. icon: 'none',
  1014. title: '请选择工作组'
  1015. });
  1016. return;
  1017. }
  1018. if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
  1019. uni.showToast({
  1020. icon: 'none',
  1021. title: '请选择指派对象'
  1022. });
  1023. return;
  1024. }
  1025. if(!dutyList.value){
  1026. uni.showToast({
  1027. icon: 'none',
  1028. title: '您选择的故障现象没有设置责任科室'
  1029. });
  1030. return;
  1031. }
  1032. uni.showLoading({
  1033. title: "加载中",
  1034. mask: true,
  1035. });
  1036. if(dataInfo.incidentData.repairImgList.length){
  1037. // 有图片
  1038. let assignOrder$ = assignOrder();
  1039. let requestList = [assignOrder$];
  1040. Promise.all(requestList).then(resList => {
  1041. console.log(resList);
  1042. if(resList[0].state == 200){
  1043. dataInfo.incidentId = resList[0].data.id;
  1044. // handlerImgRef.value.upload();
  1045. handlerImgSuccessNew();
  1046. }else{
  1047. uni.hideLoading();
  1048. uni.showToast({
  1049. icon: 'none',
  1050. title: resList[0].msg || '请求数据失败!'
  1051. });
  1052. }
  1053. })
  1054. }else{
  1055. // 没有图片
  1056. let assignOrder$ = assignOrder();
  1057. let requestList = [assignOrder$];
  1058. Promise.all(requestList).then(resList => {
  1059. uni.hideLoading();
  1060. console.log(resList);
  1061. if(resList[0].state == 200){
  1062. incidentBuildStore.clearIncidentBuildData();
  1063. uni.showToast({
  1064. icon: 'none',
  1065. title: '建单成功',
  1066. mask: true,
  1067. });
  1068. setTimeout(() => {
  1069. uni.reLaunch({
  1070. url: '/pages/incidentList/incidentList',
  1071. })
  1072. }, 1500)
  1073. }else{
  1074. uni.showToast({
  1075. icon: 'none',
  1076. title: resList[0].msg || '请求数据失败!'
  1077. });
  1078. }
  1079. })
  1080. }
  1081. }
  1082. // 补单提交
  1083. function submitSupplement(){
  1084. console.log(dataInfo);
  1085. if(!dataInfo.handleDescription.trim() && HandleData.simpleness != 1){
  1086. uni.showToast({
  1087. icon: 'none',
  1088. title: '请填写解决方案'
  1089. });
  1090. return;
  1091. }
  1092. if(!dataInfo.category.id && HandleData.simpleness != 1){
  1093. uni.showToast({
  1094. icon: 'none',
  1095. title: '请选择故障现象'
  1096. });
  1097. return;
  1098. }
  1099. if(!dataInfo.handleCategory){
  1100. uni.showToast({
  1101. icon: 'none',
  1102. title: '请选择处理方式'
  1103. });
  1104. return;
  1105. }
  1106. if(!dataInfo.closecode && HandleData.simpleness != 1){
  1107. uni.showToast({
  1108. icon: 'none',
  1109. title: '请选择处理结果'
  1110. });
  1111. return;
  1112. }
  1113. if(!dutyList.value){
  1114. uni.showToast({
  1115. icon: 'none',
  1116. title: '您选择的故障现象没有设置责任科室'
  1117. });
  1118. return;
  1119. }
  1120. console.log(dataInfo)
  1121. console.log(dataInfo.handlerImgList)
  1122. console.log(dataInfo.incidentData.repairImgList)
  1123. uni.showLoading({
  1124. title: "加载中",
  1125. mask: true,
  1126. });
  1127. if(dataInfo.handlerImgList.length){
  1128. // 有处理图片
  1129. let supplementOrder$ = supplementOrder();
  1130. let requestList = [supplementOrder$];
  1131. Promise.all(requestList).then(resList => {
  1132. console.log(resList);
  1133. if(resList[0].state == 200){
  1134. dataInfo.incidentId = resList[0].data.id;
  1135. handlerImgRef.value.upload();
  1136. }else{
  1137. uni.hideLoading();
  1138. uni.showToast({
  1139. icon: 'none',
  1140. title: resList[0].msg || '请求数据失败!'
  1141. });
  1142. }
  1143. })
  1144. }else if(dataInfo.incidentData.repairImgList.length){
  1145. // 有报修图片,无处理图片
  1146. let supplementOrder$ = supplementOrder();
  1147. let requestList = [supplementOrder$];
  1148. Promise.all(requestList).then(resList => {
  1149. console.log(resList);
  1150. if(resList[0].state == 200){
  1151. dataInfo.incidentId = resList[0].data.id;
  1152. handlerImgSuccessNew();
  1153. }else{
  1154. uni.hideLoading();
  1155. uni.showToast({
  1156. icon: 'none',
  1157. title: resList[0].msg || '请求数据失败!'
  1158. });
  1159. }
  1160. })
  1161. }else{
  1162. // 没有图片
  1163. let supplementOrder$ = supplementOrder();
  1164. let requestList = [supplementOrder$];
  1165. Promise.all(requestList).then(resList => {
  1166. uni.hideLoading();
  1167. console.log(resList);
  1168. if(resList[0].state == 200){
  1169. incidentBuildStore.clearIncidentBuildData();
  1170. uni.showToast({
  1171. icon: 'none',
  1172. title: '建单成功',
  1173. mask: true,
  1174. });
  1175. setTimeout(() => {
  1176. uni.reLaunch({
  1177. url: '/pages/incidentList/incidentList',
  1178. })
  1179. }, 1500)
  1180. }else{
  1181. uni.showToast({
  1182. icon: 'none',
  1183. title: resList[0].msg || '请求数据失败!'
  1184. });
  1185. }
  1186. })
  1187. }
  1188. }
  1189. // 菜单权限
  1190. function menuAuthHandle(){
  1191. let shijianliebiao_supplement = false;//故障处理权限
  1192. for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
  1193. if(loginUserStore.loginUser.menu[i].link === 'incidentManagement'){
  1194. let currentMenu = loginUserStore.loginUser.menu[i].childrens;
  1195. for (let j = 0; j < currentMenu.length; j++) {
  1196. if (currentMenu[j].link == "replenishment") {
  1197. shijianliebiao_supplement = true
  1198. }
  1199. }
  1200. }
  1201. }
  1202. // 补单
  1203. if(shijianliebiao_supplement){
  1204. let index = dataInfo.tabs.findIndex(v => v.value === 'assign');
  1205. dataInfo.tabs.splice(index, 0, {id: 7, name: '补单', value: 'supplement', num: ''});
  1206. }
  1207. }
  1208. // 获取知识库数量
  1209. function getIntroduceCount(categoryId){
  1210. uni.showLoading({
  1211. title: "加载中",
  1212. mask: true,
  1213. });
  1214. let postData = {
  1215. idx: 0,
  1216. sum: 9999,
  1217. solution: {
  1218. deleteFlag:0,
  1219. hosId: loginUserStore.loginUser.user.currentHospital.id,
  1220. categoryId: categoryId,
  1221. status:{id:dicData.value?.id},
  1222. }
  1223. }
  1224. api_getSolution(postData).then(res => {
  1225. uni.hideLoading();
  1226. if(res.status == 200){
  1227. dataInfo.introduceCount = res.totalNum
  1228. }else{
  1229. uni.showToast({
  1230. icon: 'none',
  1231. title: res.msg || '请求数据失败!'
  1232. });
  1233. }
  1234. })
  1235. }
  1236. // 获取文本内容
  1237. function getHtml(html) {
  1238. const tempDiv = document.createElement('div');
  1239. tempDiv.innerHTML = html;
  1240. return tempDiv.textContent || tempDiv.innerText || '';
  1241. }
  1242. // 获取字典
  1243. function getDic(){
  1244. let postData = {
  1245. "key": 'solution_status',
  1246. "type": "list",
  1247. };
  1248. api_getDictionary(postData).then(res => {
  1249. dicData.value = res.find(v => v.value == '3');
  1250. // 跳转页面选择了选项
  1251. if(handlerStore.handler.data){
  1252. Object.assign(dataInfo, handlerStore.handler.data);
  1253. if(dataInfo.synergetic){
  1254. synergeticArr.value = dataInfo.synergetic.map(v => v.name).join(',')
  1255. }
  1256. if(handlerStore.handler.sign === 'assign'){
  1257. dataInfo.tabActiveValue = 'direct';
  1258. }else if(handlerStore.handler.sign === 'assign_supplement'){
  1259. dataInfo.tabActiveValue = 'supplement';
  1260. next();
  1261. }
  1262. let storeData = handlerStore.handler.data
  1263. if(storeData.type == 'rep'){
  1264. dataInfo.handleDescription = null;
  1265. if(storeData.handleDescription){
  1266. dataInfo.handleDescription = storeData.handleDescription;
  1267. solutionId.value = storeData.solutionId
  1268. }
  1269. if(storeData.tabType == 'direct'){
  1270. dataInfo.tabActiveValue = 'direct'
  1271. }else{
  1272. dataInfo.tabActiveValue = 'supplement'
  1273. dataInfo.supplementFlag = false
  1274. }
  1275. }
  1276. handlerStore.clearHandlerData();
  1277. if(dataInfo.category){
  1278. dataInfo.incidentData.category = dataInfo.category;
  1279. if(dataInfo.incidentData.place.floor){
  1280. floorId.value = JSON.parse(JSON.stringify(dataInfo.incidentData.place.floor.id))
  1281. }else{
  1282. floorId.value = JSON.parse(JSON.stringify(dataInfo.incidentData.place.id))
  1283. }
  1284. console.log(111)
  1285. getIntroduceCount(dataInfo.category.id)
  1286. // 处理责任科室
  1287. // if(dataInfo.category.branchType == 1){
  1288. // // 分院区
  1289. // if(dataInfo.incidentData.branch){
  1290. // let dutyConfig = dataInfo.category.branchUserGroups.find(v=>v.branchId == dataInfo.incidentData.branch);
  1291. // if(dutyConfig && dutyConfig.dutyId && dutyConfig.dutyName){
  1292. // dataInfo.incidentData.duty = {id:dutyConfig.dutyId,dept:dutyConfig.dutyName};
  1293. // }else{
  1294. // dataInfo.incidentData.duty = undefined;
  1295. // }
  1296. // }else{
  1297. // dataInfo.incidentData.duty = undefined;
  1298. // }
  1299. // }else{
  1300. // // 不分院区
  1301. // // dataInfo.incidentData.hosId = loginUserStore.loginUser.user.currentHospital.id;
  1302. // }
  1303. getDuty()
  1304. }
  1305. }else if(incidentBuildStore.incidentBuild.data){
  1306. console.log(222)
  1307. // 初始化
  1308. Object.assign(dataInfo.incidentData, incidentBuildStore.incidentBuild.data);
  1309. if(dataInfo.incidentData.category){
  1310. if(dataInfo.incidentData.synergetic){
  1311. synergeticArr.value = dataInfo.incidentData.synergetic.map(v => v.name).join(',')
  1312. }
  1313. dataInfo.category = dataInfo.incidentData.category;
  1314. getIntroduceCount(dataInfo.category.id)
  1315. // 处理责任科室
  1316. // if(dataInfo.category.branchType == 1){
  1317. // // 分院区
  1318. // if(dataInfo.incidentData.branch){
  1319. // let dutyConfig = dataInfo.category.branchUserGroups.find(v=>v.branchId == dataInfo.incidentData.branch);
  1320. // if(dutyConfig && dutyConfig.dutyId && dutyConfig.dutyName){
  1321. // dataInfo.incidentData.duty = {id:dutyConfig.dutyId,dept:dutyConfig.dutyName};
  1322. // }else{
  1323. // dataInfo.incidentData.duty = undefined;
  1324. // }
  1325. // }else{
  1326. // dataInfo.incidentData.duty = undefined;
  1327. // }
  1328. // }else{
  1329. // // 不分院区
  1330. // dataInfo.incidentData.hosId = loginUserStore.loginUser.user.currentHospital.id;
  1331. // }
  1332. }
  1333. if(dataInfo.incidentData.place.floor){
  1334. floorId.value = JSON.parse(JSON.stringify(dataInfo.incidentData.place.floor.id))
  1335. }else{
  1336. floorId.value = JSON.parse(JSON.stringify(dataInfo.incidentData.place.id))
  1337. }
  1338. getDuty()
  1339. if(dataInfo.incidentData.source){
  1340. dataInfo.incidentData.source = { id: dataInfo.incidentData.source };
  1341. }
  1342. if(dataInfo.incidentData.requester){
  1343. dataInfo.incidentData.requester = dataInfo.incidentData.requester
  1344. }
  1345. }
  1346. })
  1347. }
  1348. // 获取故障现象绑定的科室
  1349. function getDuty(){
  1350. let postData = {
  1351. idx: 0,
  1352. sum: 9999,
  1353. incidentCategoryConfig: {
  1354. categoryId: dataInfo.incidentData.category.id,
  1355. dutyId: loginUserStore.loginUser.user.currentHospital.id,
  1356. },
  1357. };
  1358. getFetchDataList("simple/data", "incidentCategoryConfig", postData).then(res => {
  1359. let item = res.list.find(i=>i.categoryId == dataInfo.incidentData.category.id)
  1360. dutyList.value = item.dutyDTO
  1361. dataInfo.incidentData.duty = dutyList.value.id
  1362. initForm()
  1363. console.log(1111,dutyList.value)
  1364. })
  1365. }
  1366. // 获取是否开启汇总单
  1367. function getHosConfig(){
  1368. let postData = {
  1369. idx: 0,
  1370. sum: 9999,
  1371. hospitalConfig:{
  1372. hosId: loginUserStore.loginUser.user.currentHospital.id,
  1373. model: "itsm"
  1374. }
  1375. };
  1376. getFetchDataList("simple/data", "hospitalConfig", postData)
  1377. .then((res) => {
  1378. // SummaryData.value = res.list.find(i=>i.key=='itsmSummarySheet')
  1379. HandleData.simpleness = res.list.find(i=>i.key=='itsmSimpleHandle').value
  1380. });
  1381. }
  1382. onLoad((option) => {
  1383. getHosConfig()
  1384. menuAuthHandle()
  1385. getDic()
  1386. if(!dataInfo.tabActiveValue){
  1387. dataInfo.tabActiveValue = dataInfo.tabs[0].value;
  1388. }
  1389. })
  1390. </script>
  1391. <style lang="scss" scoped>
  1392. .handler{
  1393. height: 100%;
  1394. display: flex;
  1395. flex-direction: column;
  1396. justify-content: space-between;
  1397. .head{
  1398. height: 88rpx;
  1399. display: flex;
  1400. position: fixed;
  1401. z-index: 99;
  1402. width: 100%;
  1403. background-color: #fff;
  1404. font-size: 30rpx;
  1405. .tab{
  1406. flex: 1;
  1407. display: flex;
  1408. justify-content: center;
  1409. align-items: center;
  1410. border-bottom: 4rpx solid transparent;
  1411. &.active{
  1412. color: $uni-primary;
  1413. border-color: $uni-primary;
  1414. }
  1415. }
  1416. }
  1417. .body{
  1418. margin-top: 88rpx;
  1419. box-sizing: border-box;
  1420. flex: 1;
  1421. min-height: 0;
  1422. &.bg{
  1423. background-color: #F7F7F7;
  1424. }
  1425. .summaryItem{
  1426. &:first-of-type{
  1427. .summaryItem_head{
  1428. border-bottom: 1rpx solid #DDDDDD;
  1429. }
  1430. }
  1431. .summary_total{
  1432. padding: 20rpx 0;
  1433. display: flex;
  1434. justify-content: center;
  1435. align-items: center;
  1436. }
  1437. .summaryItem_head{
  1438. padding: 24rpx;
  1439. font-size: 26rpx;
  1440. color: #3A3A3A;
  1441. }
  1442. .summaryItem_body{
  1443. font-size: 30rpx;
  1444. background-color: #fff;
  1445. .summaryItem_bodyItem{
  1446. padding: 24rpx;
  1447. border-bottom: 1rpx solid #DDDDDD;
  1448. .summaryItem_bodyItem_top{
  1449. display: flex;
  1450. justify-content: space-between;
  1451. align-items: center;
  1452. .value{
  1453. padding-left: 48rpx;
  1454. flex-shrink: 0;
  1455. }
  1456. }
  1457. .summaryItem_bodyItem_bottom{
  1458. margin-top: 24rpx;
  1459. display: flex;
  1460. justify-content: space-between;
  1461. align-items: center;
  1462. .name{
  1463. text-align: right;
  1464. flex: 1;
  1465. }
  1466. .value{
  1467. width: 240rpx;
  1468. text-align: right;
  1469. padding-left: 48rpx;
  1470. flex-shrink: 0;
  1471. }
  1472. }
  1473. }
  1474. }
  1475. .summaryItem_foot{
  1476. font-size: 30rpx;
  1477. background-color: #fff;
  1478. &.total{
  1479. margin-top: 24rpx;
  1480. }
  1481. .summaryItem_foot_total{
  1482. padding: 24rpx 0;
  1483. display: flex;
  1484. justify-content: center;
  1485. align-items: center;
  1486. }
  1487. .summaryItem_foot_add{
  1488. border-top: 1rpx solid #DDDDDD;
  1489. padding: 24rpx 0;
  1490. display: flex;
  1491. justify-content: center;
  1492. align-items: center;
  1493. .newicon-icon-test{
  1494. font-size: 30rpx;
  1495. font-weight: bold;
  1496. }
  1497. }
  1498. }
  1499. }
  1500. .form_item_column{
  1501. padding-top: 24rpx;
  1502. min-height: 86rpx;
  1503. .form_item{
  1504. padding-top: 0;
  1505. min-height: auto;
  1506. }
  1507. }
  1508. .form_item{
  1509. display: flex;
  1510. align-items: center;
  1511. padding-top: 24rpx;
  1512. min-height: 86rpx;
  1513. &.column{
  1514. height: auto;
  1515. flex-direction: column;
  1516. align-items: flex-start;
  1517. .import-rep{
  1518. padding: 5rpx 10rpx;
  1519. border-radius: 50rpx;
  1520. background: #d1fcd5;
  1521. color: #49b856;
  1522. font-size: 24rpx;
  1523. }
  1524. .title{
  1525. margin-right: 0;
  1526. }
  1527. .title-width{
  1528. width: 100%;
  1529. }
  1530. .title-fl-sb{
  1531. display: flex;
  1532. justify-content: space-between;
  1533. width: 100%;
  1534. }
  1535. .value{
  1536. margin-top: 10rpx;
  1537. padding-left: 20rpx;
  1538. box-sizing: border-box;
  1539. }
  1540. .tips{
  1541. padding: 24rpx;
  1542. text-align: center;
  1543. font-size: 22rpx;
  1544. color: #909399;
  1545. width: 100%;
  1546. box-sizing: border-box;
  1547. }
  1548. }
  1549. .title{
  1550. font-size: 26rpx;
  1551. display: flex;
  1552. align-items: center;
  1553. margin-right: 12rpx;
  1554. flex-shrink: 0;
  1555. &.select{
  1556. width: calc(5em + 20rpx);
  1557. }
  1558. }
  1559. .value{
  1560. width: 100%;
  1561. &.category{
  1562. width: 100%;
  1563. display: flex;
  1564. justify-content: space-between;
  1565. align-items: center;
  1566. .categoryName{
  1567. font-size: 26rpx;
  1568. color: #555;
  1569. flex: 1;
  1570. }
  1571. .newicon-weibiaoti2010104{
  1572. color: $uni-primary;
  1573. margin-left: 24rpx;
  1574. }
  1575. }
  1576. .imgTips{
  1577. color: #909399;
  1578. font-size: 22rpx;
  1579. }
  1580. }
  1581. .synergeticNames{
  1582. font-size: 26rpx;
  1583. margin-right: 24rpx;
  1584. }
  1585. .synergeticAdd{
  1586. flex-shrink: 0;
  1587. }
  1588. }
  1589. }
  1590. }
  1591. </style>