assign.vue 53 KB

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