assign.vue 51 KB

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