changeUser.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736
  1. <template>
  2. <view class="changeUser">
  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"> -->
  9. <view class="body view-body">
  10. <!-- 转派 -->
  11. <template v-if="dataInfo.tabActiveValue === 'redeploy'">
  12. <view class="form_item">
  13. <view class="title select"><text class="required newicon newicon-bitian"></text>工作组:</view>
  14. <!-- <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> -->
  15. <uni-data-picker class="value" placeholder="请选择工作组"
  16. :localdata="dataInfo.groupList" v-model="dataInfo.groupId"
  17. :clear-icon="false" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}">
  18. </uni-data-picker>
  19. </view>
  20. <view class="form_item">
  21. <view class="title radio"><text class="required newicon newicon-bitian"></text>是否转派到人:</view>
  22. <uni-data-checkbox class="value" v-model="dataInfo.isAssignUser" :localdata="dataInfo.isAssignUserList" @change="changeIsAssignUser" />
  23. </view>
  24. <view class="form_item" v-if="dataInfo.isAssignUser === 1">
  25. <view class="title select"><text class="required newicon newicon-bitian"></text>转派对象:</view>
  26. <!-- <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> -->
  27. <uni-data-picker class="value" placeholder="请选择转派对象"
  28. :localdata="dataInfo.userList" v-model="dataInfo.userId"
  29. :clear-icon="false" :class="{formRed: isSubmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}">
  30. </uni-data-picker>
  31. </view>
  32. </template>
  33. <!-- 指派 -->
  34. <template v-if="dataInfo.tabActiveValue === 'assign'">
  35. <view class="form_item">
  36. <view class="title select"><text class="required newicon newicon-bitian"></text>院区:</view>
  37. <!-- <uni-data-select class="value" v-model="dataInfo.branchId" :localdata="dataInfo.branchList" :clear="false" placeholder="请选择院区" @change="changeBranch" :class="{formRed: isSubmit && !dataInfo.branchId}"></uni-data-select> -->
  38. <uni-data-picker class="value" placeholder="请选择院区"
  39. :localdata="dataInfo.branchList" v-model="dataInfo.branchId"
  40. :clear-icon="false" @change="changeBranch" :class="{formRed: isSubmit && !dataInfo.branchId}">
  41. </uni-data-picker>
  42. </view>
  43. <view class="form_item">
  44. <view class="title select"><text class="required newicon newicon-bitian"></text>责任科室:</view>
  45. <!-- <uni-data-select class="value" v-model="dataInfo.dutyId" :localdata="dataInfo.dutyList" :clear="false" placeholder="请选择责任科室" @change="changeDuty" :class="{formRed: isSubmit && !dataInfo.dutyId}"></uni-data-select> -->
  46. <uni-data-picker class="value" placeholder="请选择责任科室"
  47. :localdata="dataInfo.dutyList" v-model="dataInfo.dutyId"
  48. :clear-icon="false" @change="changeDuty" :class="{formRed: isSubmit && !dataInfo.dutyId}">
  49. </uni-data-picker>
  50. </view>
  51. <view class="form_item">
  52. <view class="title select"><text class="required newicon newicon-bitian"></text>工作组:</view>
  53. <!-- <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> -->
  54. <uni-data-picker class="value" placeholder="请选择工作组"
  55. v-model="dataInfo.groupId" :localdata="dataInfo.groupList"
  56. :clear-icon="false" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}">
  57. </uni-data-picker>
  58. </view>
  59. <view class="form_item">
  60. <view class="title radio"><text class="required newicon newicon-bitian"></text>是否指派到人:</view>
  61. <uni-data-checkbox class="value" v-model="dataInfo.isAssignUser" :localdata="dataInfo.isAssignUserList" @change="changeIsAssignUser" />
  62. </view>
  63. <view class="form_item" v-if="dataInfo.isAssignUser === 1">
  64. <view class="title select"><text class="required newicon newicon-bitian"></text>指派对象:</view>
  65. <!-- <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> -->
  66. <uni-data-picker class="value" placeholder="请选择指派对象"
  67. v-model="dataInfo.userId" :localdata="dataInfo.userList"
  68. :clear-icon="false" :class="{formRed: isSubmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}">
  69. </uni-data-picker>
  70. </view>
  71. </template>
  72. <!-- 退回 -->
  73. <template v-if="dataInfo.tabActiveValue === 'reassign'">
  74. <view class="form_item column">
  75. <view class="title"><text class="required newicon newicon-bitian"></text>退回原因:</view>
  76. <uni-easyinput class="value" type="textarea" v-model="dataInfo.reassignRemark" placeholder="请输入退回原因" :class="{formRed: isSubmit && !dataInfo.reassignRemark.trim()}" />
  77. <view class="tips">注:退回后,由调度台重新指派。</view>
  78. </view>
  79. </template>
  80. </view>
  81. <!-- </scroll-view> -->
  82. <view class="foot_common_btns">
  83. <button @click="goBack" type="default" class="cancelButton btn">返回</button>
  84. <button @click="submit" type="default" class="primaryButton btn">提交</button>
  85. </view>
  86. </view>
  87. </template>
  88. <script setup>
  89. import { ref, reactive } from 'vue'
  90. import { onLoad } from '@dcloudio/uni-app'
  91. import { api_group, api_department, api_incidentDetail, api_user, api_incidentTask, api_branch, api_dutyDepartment } from "@/http/api.js"
  92. import { defaultColor } from '@/static/js/theme.js'
  93. import { useSetTitle } from '@/share/useSetTitle.js'
  94. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  95. import { useGoBack } from '@/share/useGoBack.js'
  96. import { useLoginUserStore } from '@/stores/loginUser'
  97. useSetTitle();
  98. const loginUserStore = useLoginUserStore();
  99. const { makePhoneCall } = useMakePhoneCall();
  100. const { goBack } = useGoBack();
  101. // 主题颜色
  102. const primaryColor = ref(defaultColor)
  103. // 数据
  104. const dataInfo = reactive({
  105. tabs: [
  106. // {id: 1, name: '转派', value: 'redeploy', num: ''},
  107. // {id: 2, name: '指派', value: 'assign', num: ''},
  108. // {id: 3, name: '升级', value: 'upgrade', num: ''},
  109. // {id: 4, name: '退回', value: 'reassign', num: ''},
  110. ],
  111. tabActiveValue: 0,//当前选择的tab
  112. incidentId: undefined,//事件ID
  113. incidentData: {},//事件对象
  114. groupList: [], //工作组列表
  115. groupId: undefined, //工作组ID
  116. userList: [], //用户列表
  117. userId: undefined, //用户ID
  118. branchList: [], //院区列表
  119. branchId: undefined, //院区ID
  120. dutyList: [], //责任科室列表
  121. dutyId: undefined, //责任科室ID
  122. isAssignUser: 1, //工作组是否转派到人
  123. isAssignUserList: [
  124. { text: '是', value: 1 },
  125. { text: '否', value: 0 },
  126. ], //工作组是否转派到人选项
  127. reassignRemark: '',//退回原因
  128. })
  129. // 是否提交
  130. const isSubmit = ref(false)
  131. // 重置
  132. function reset(){
  133. dataInfo.branchId = undefined;
  134. dataInfo.branchList = [];
  135. dataInfo.dutyId = undefined;
  136. dataInfo.dutyList = [];
  137. dataInfo.groupId = undefined;
  138. dataInfo.groupList = [];
  139. dataInfo.userId = undefined;
  140. dataInfo.userList = [];
  141. dataInfo.isAssignUser = 1;
  142. dataInfo.reassignRemark = '';
  143. }
  144. // 初始化表单
  145. function initForm(){
  146. if(dataInfo.tabActiveValue === 'redeploy'){
  147. getGroups();
  148. }else if(dataInfo.tabActiveValue === 'assign'){
  149. getBranchs();
  150. }
  151. }
  152. // 点击tab
  153. function clickTab(tabValue){
  154. if(dataInfo.tabActiveValue == tabValue){
  155. return;
  156. }
  157. dataInfo.tabActiveValue = tabValue;
  158. isSubmit.value = false;
  159. reset();
  160. initForm()
  161. }
  162. // 获取事件详情
  163. function getIncidentDetail(){
  164. uni.showLoading({
  165. title: "加载中",
  166. mask: true,
  167. });
  168. api_incidentDetail(dataInfo.incidentId).then(res => {
  169. uni.hideLoading();
  170. if(res.status == 200){
  171. dataInfo.incidentData = res.data || {};
  172. if(res.data.state.value!='pending' && res.data.state.value!='handler' && res.data.state.value!='reassign'){
  173. uni.showToast({
  174. icon: 'none',
  175. title: '工单状态异常!请刷新页面再重试',
  176. });
  177. setTimeout(_=>{
  178. goBack()
  179. },1000)
  180. return
  181. }
  182. let transferFlag = false;//转派权限
  183. let assignFlag = false;//指派权限
  184. for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
  185. if(loginUserStore.loginUser.menu[i].link === 'incidentManagement'){
  186. let currentMenu = loginUserStore.loginUser.menu[i].childrens;
  187. for (let j = 0; j < currentMenu.length; j++) {
  188. if (currentMenu[j].link == "assign") {
  189. assignFlag = true
  190. }
  191. if (currentMenu[j].link == "transfer") {
  192. transferFlag = true
  193. }
  194. }
  195. }
  196. }
  197. // 转派
  198. if(dataInfo.incidentData.state.value == 'handler' && dataInfo.incidentData.handlingPersonnelUser && dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id && !assignFlag && transferFlag){
  199. dataInfo.tabs.splice(0, 0, {id: 1, name: '转派', value: 'redeploy', num: ''});
  200. }else if(dataInfo.incidentData.state.value == 'pending'){
  201. let inUser = dataInfo.incidentData.currentLog && dataInfo.incidentData.currentLog.workerId == loginUserStore.loginUser.user.id;
  202. let inGroup = false;
  203. let groupList = loginUserStore.loginUser.user.group || [];
  204. groupList.forEach(item => {
  205. if(dataInfo.incidentData.currentLog){
  206. if (item.id == dataInfo.incidentData.currentLog.groupId) {
  207. inGroup = true;
  208. }
  209. }
  210. })
  211. if((inUser || inGroup)){
  212. dataInfo.tabs.splice(0, 0, {id: 1, name: '转派', value: 'redeploy', num: ''});
  213. }
  214. }
  215. // 指派
  216. if((dataInfo.incidentData.state.value == 'pending' || dataInfo.incidentData.state.value == 'handler' || dataInfo.incidentData.state.value == 'reassign') && assignFlag){
  217. let index = dataInfo.tabs.findIndex(v => v.value === 'reassign');
  218. if(index < 0){
  219. dataInfo.tabs = [{id: 1, name: '指派', value: 'assign', num: ''}];
  220. }else{
  221. dataInfo.tabs.splice(index, 0, {id: 1, name: '指派', value: 'assign', num: ''});
  222. }
  223. }
  224. // 退回
  225. if(dataInfo.incidentData.state.value == 'pending' || dataInfo.incidentData.state.value == 'handler'){
  226. if(dataInfo.tabs.length){
  227. dataInfo.tabs.splice(dataInfo.tabs.length, 0, {id: 4, name: '退回', value: 'reassign', num: ''});
  228. }else{
  229. dataInfo.tabs = [{id: 4, name: '退回', value: 'reassign', num: ''}];
  230. }
  231. }
  232. dataInfo.tabActiveValue = dataInfo.tabs[0].value;
  233. initForm()
  234. }else{
  235. uni.showToast({
  236. icon: 'none',
  237. title: res.msg || '请求数据失败!'
  238. });
  239. }
  240. })
  241. }
  242. // 获取院区列表
  243. function getBranchs(){
  244. let arr = loginUserStore.loginUser.hospital.filter(i=>i.parent==undefined)
  245. dataInfo.branchList = arr.map(v => ({
  246. text: v.hosName,
  247. value: v.id,
  248. }));
  249. // uni.showLoading({
  250. // title: "加载中",
  251. // mask: true,
  252. // });
  253. // let postData = {
  254. // "idx": 0,
  255. // "sum": 9999,
  256. // hospital:{
  257. // selectType:"level1",
  258. // }
  259. // // parent:{id:loginUserStore.loginUser.user.currentHospital.id}
  260. // };
  261. // api_branch(postData).then(res => {
  262. // uni.hideLoading();
  263. // if(res.status == 200){
  264. // res.list = res.list || [];
  265. // dataInfo.branchList = res.list.map(v => ({
  266. // text: v.hosName,
  267. // value: v.id,
  268. // }));
  269. // if(loginUserStore.loginUser.user.duty){
  270. // // 当前的所属责任科室
  271. // dataInfo.branchId = loginUserStore.loginUser.user.duty.branch;
  272. // changeBranch();
  273. // dataInfo.dutyId = loginUserStore.loginUser.user.duty.id;
  274. // changeDuty();
  275. // }else if(loginUserStore.loginUser.user.branch){
  276. // // 当前的所属院区
  277. // dataInfo.branchId = loginUserStore.loginUser.user.branch.id;
  278. // changeBranch();
  279. // }
  280. // }else{
  281. // uni.showToast({
  282. // icon: 'none',
  283. // title: res.msg || '请求数据失败!'
  284. // });
  285. // }
  286. // })
  287. }
  288. // 获取责任科室列表
  289. function getDutys(){
  290. uni.showLoading({
  291. title: "加载中",
  292. mask: true,
  293. });
  294. let postData = {
  295. "idx": 0,
  296. "sum": 9999,
  297. hospital: {
  298. parent:{
  299. id:dataInfo.branchId
  300. },
  301. type:{value:6}
  302. }
  303. };
  304. api_branch(postData).then(res => {
  305. uni.hideLoading();
  306. if(res.status == 200){
  307. res.list = res.list || [];
  308. dataInfo.dutyList = res.list.map(v => ({
  309. text: v.hosName,
  310. value: v.id,
  311. }));
  312. }else{
  313. uni.showToast({
  314. icon: 'none',
  315. title: res.msg || '请求数据失败!'
  316. });
  317. }
  318. })
  319. }
  320. // 获取工作组列表
  321. function getGroups(){
  322. uni.showLoading({
  323. title: "加载中",
  324. mask: true,
  325. });
  326. let duty = undefined;
  327. if(dataInfo.tabActiveValue === 'redeploy'){
  328. duty = dataInfo.incidentData.duty.id;
  329. }else if(dataInfo.tabActiveValue === 'assign'){
  330. duty = dataInfo.dutyId;
  331. }
  332. let postData = {
  333. "idx": 0,
  334. "sum": 9999,
  335. "group2": {
  336. "hospitals": duty
  337. }
  338. };
  339. api_group(postData).then(res => {
  340. uni.hideLoading();
  341. if(res.status == 200){
  342. res.list = res.list || [];
  343. let arr = res.list.filter(i=>i.type==3)
  344. dataInfo.groupList = arr.map(v => ({
  345. text: v.groupName,
  346. value: v.id,
  347. }));
  348. }else{
  349. uni.showToast({
  350. icon: 'none',
  351. title: res.msg || '请求数据失败!'
  352. });
  353. }
  354. })
  355. }
  356. // 获取用户列表
  357. function getUsers(){
  358. uni.showLoading({
  359. title: "加载中",
  360. mask: true,
  361. });
  362. let postData = {
  363. "idx": 0,
  364. "sum": 9999,
  365. "user": {
  366. "groupdata":{
  367. "id": dataInfo.groupId,
  368. },
  369. roleCodes: 'first-line support,second-line support'
  370. // "roledata": {
  371. // "rolecode": "first-line support"
  372. // },
  373. // "roledata2": {
  374. // "rolecode": "second-line support"
  375. // },
  376. // "selectType": "1",
  377. // "selectDetails": 1,
  378. // "simple": true,
  379. // "engineer": 1
  380. }
  381. };
  382. api_user(postData).then(res => {
  383. uni.hideLoading();
  384. if(res.status == 200){
  385. res.list = res.list || [];
  386. dataInfo.userList = res.list.map(v => ({
  387. text: v.name,
  388. value: v.id,
  389. }));
  390. }else{
  391. uni.showToast({
  392. icon: 'none',
  393. title: res.msg || '请求数据失败!'
  394. });
  395. }
  396. })
  397. }
  398. // 选择院区
  399. function changeBranch(){
  400. dataInfo.dutyId = undefined;
  401. dataInfo.dutyList = [];
  402. dataInfo.groupId = undefined;
  403. dataInfo.groupList = [];
  404. dataInfo.userId = undefined;
  405. dataInfo.userList = [];
  406. getDutys();
  407. }
  408. // 选择责任科室
  409. function changeDuty(){
  410. dataInfo.groupId = undefined;
  411. dataInfo.groupList = [];
  412. dataInfo.userId = undefined;
  413. dataInfo.userList = [];
  414. getGroups();
  415. }
  416. // 选择工作组
  417. function changeGroup(){
  418. dataInfo.userId = undefined;
  419. dataInfo.userList = [];
  420. getUsers();
  421. }
  422. // 选择是否转派到人
  423. function changeIsAssignUser(){
  424. dataInfo.userId = undefined;
  425. }
  426. // 提交
  427. function submit(){
  428. isSubmit.value = true;
  429. if(dataInfo.tabActiveValue === 'redeploy'){
  430. submitRedeploy();
  431. }else if(dataInfo.tabActiveValue === 'assign'){
  432. submitAssign();
  433. }else if(dataInfo.tabActiveValue === 'reassign'){
  434. submitReassign();
  435. }
  436. }
  437. // 转派提交
  438. function submitRedeploy(){
  439. if(!dataInfo.groupId){
  440. uni.showToast({
  441. icon: 'none',
  442. title: '请选择工作组'
  443. });
  444. return;
  445. }
  446. if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
  447. uni.showToast({
  448. icon: 'none',
  449. title: '请选择指派对象'
  450. });
  451. return;
  452. }
  453. uni.showLoading({
  454. title: "加载中",
  455. mask: true,
  456. });
  457. let postData = {
  458. incident: dataInfo.incidentData,
  459. }
  460. postData.incident.candidateGroupId = dataInfo.groupId;
  461. if(dataInfo.userId){
  462. // 派人
  463. postData.incident.assignee = dataInfo.userId;
  464. delete postData.incident.candidateGroups
  465. } else {
  466. // 派组
  467. postData.incident.candidateGroups = dataInfo.groupId;
  468. delete postData.incident.assignee
  469. }
  470. api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
  471. uni.hideLoading();
  472. if(res.state == 200){
  473. uni.showToast({
  474. icon: 'none',
  475. title: '转派成功',
  476. mask: true,
  477. });
  478. setTimeout(() => {
  479. uni.reLaunch({
  480. url: '/pages/incidentList/incidentList',
  481. })
  482. }, 1500)
  483. }else{
  484. uni.showToast({
  485. icon: 'none',
  486. title: res.msg || '请求数据失败!'
  487. });
  488. }
  489. })
  490. }
  491. // 指派提交
  492. function submitAssign(){
  493. if(!dataInfo.branchId){
  494. uni.showToast({
  495. icon: 'none',
  496. title: '请选择院区'
  497. });
  498. return;
  499. }
  500. if(!dataInfo.dutyId){
  501. uni.showToast({
  502. icon: 'none',
  503. title: '请选择责任科室'
  504. });
  505. return;
  506. }
  507. if(!dataInfo.groupId){
  508. uni.showToast({
  509. icon: 'none',
  510. title: '请选择工作组'
  511. });
  512. return;
  513. }
  514. if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
  515. uni.showToast({
  516. icon: 'none',
  517. title: '请选择指派对象'
  518. });
  519. return;
  520. }
  521. uni.showLoading({
  522. title: "加载中",
  523. mask: true,
  524. });
  525. let postData = {
  526. incident: dataInfo.incidentData,
  527. }
  528. postData.incident.candidateGroupId = dataInfo.groupId;
  529. if(dataInfo.userId){
  530. // 派人
  531. postData.incident.assignee = dataInfo.userId;
  532. delete postData.incident.candidateGroups
  533. } else {
  534. // 派组
  535. postData.incident.candidateGroups = dataInfo.groupId;
  536. delete postData.incident.assignee
  537. }
  538. postData.incident.duty = { id: dataInfo.dutyId };
  539. // postData.incident.hosId = dataInfo.branchId
  540. api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
  541. uni.hideLoading();
  542. if(res.state == 200){
  543. uni.showToast({
  544. icon: 'none',
  545. title: '指派成功',
  546. mask: true,
  547. });
  548. setTimeout(() => {
  549. uni.reLaunch({
  550. url: '/pages/incidentList/incidentList',
  551. })
  552. }, 1500)
  553. }else{
  554. uni.showToast({
  555. icon: 'none',
  556. title: res.msg || '请求数据失败!'
  557. });
  558. }
  559. })
  560. }
  561. // 退回提交
  562. function submitReassign(){
  563. if(!dataInfo.reassignRemark.trim()){
  564. uni.showToast({
  565. icon: 'none',
  566. title: '请填写退回原因'
  567. });
  568. return;
  569. }
  570. uni.showLoading({
  571. title: "加载中",
  572. mask: true,
  573. });
  574. let postData = {
  575. incident: dataInfo.incidentData,
  576. }
  577. postData.incident.reassignRemark = dataInfo.reassignRemark;
  578. api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
  579. uni.hideLoading();
  580. if(res.state == 200){
  581. uni.showToast({
  582. icon: 'none',
  583. title: '退回成功',
  584. mask: true,
  585. });
  586. setTimeout(() => {
  587. uni.reLaunch({
  588. url: '/pages/incidentList/incidentList',
  589. })
  590. }, 1500)
  591. }else{
  592. uni.showToast({
  593. icon: 'none',
  594. title: res.msg || '请求数据失败!'
  595. });
  596. }
  597. })
  598. }
  599. onLoad((option) => {
  600. dataInfo.incidentId = option.incidentId;
  601. getIncidentDetail();
  602. })
  603. </script>
  604. <style lang="scss" scoped>
  605. .changeUser{
  606. height: 100%;
  607. display: flex;
  608. flex-direction: column;
  609. justify-content: space-between;
  610. .head{
  611. height: 88rpx;
  612. display: flex;
  613. position: fixed;
  614. z-index: 99;
  615. width: 100%;
  616. background-color: #fff;
  617. font-size: 30rpx;
  618. .tab{
  619. flex: 1;
  620. display: flex;
  621. justify-content: center;
  622. align-items: center;
  623. border-bottom: 4rpx solid transparent;
  624. &.active{
  625. color: $uni-primary;
  626. border-color: $uni-primary;
  627. }
  628. }
  629. }
  630. .body{
  631. margin-top: 88rpx;
  632. padding: 0 24rpx;
  633. box-sizing: border-box;
  634. flex: 1;
  635. min-height: 0;
  636. .form_item{
  637. display: flex;
  638. align-items: center;
  639. padding-top: 24rpx;
  640. min-height: 86rpx;
  641. &.column{
  642. height: auto;
  643. flex-direction: column;
  644. align-items: flex-start;
  645. .title{
  646. margin-right: 0;
  647. }
  648. .value{
  649. margin-top: 10rpx;
  650. padding-left: 20rpx;
  651. box-sizing: border-box;
  652. }
  653. .tips{
  654. padding: 24rpx;
  655. text-align: center;
  656. font-size: 22rpx;
  657. color: #909399;
  658. width: 100%;
  659. box-sizing: border-box;
  660. }
  661. }
  662. .title{
  663. font-size: 26rpx;
  664. display: flex;
  665. align-items: center;
  666. margin-right: 12rpx;
  667. &.select{
  668. width: calc(5em + 20rpx);
  669. }
  670. }
  671. }
  672. }
  673. }
  674. </style>