handler.vue 31 KB

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