changeUser.vue 19 KB

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