changeUser.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716
  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 == "assign") {
  186. assignFlag = true
  187. }
  188. if (loginUserStore.loginUser.menu[i].link == "receive") {
  189. transferFlag = true
  190. }
  191. }
  192. // 转派
  193. if(dataInfo.incidentData.state.value == 'handler' && dataInfo.incidentData.handlingPersonnelUser && dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id && !assignFlag && transferFlag){
  194. dataInfo.tabs.splice(0, 0, {id: 1, name: '转派', value: 'redeploy', num: ''});
  195. }
  196. // 指派
  197. if((dataInfo.incidentData.state.value == 'pending' || dataInfo.incidentData.state.value == 'handler' || dataInfo.incidentData.state.value == 'reassign') && assignFlag){
  198. let index = dataInfo.tabs.findIndex(v => v.value === 'reassign');
  199. if(index < 0){
  200. dataInfo.tabs = [{id: 1, name: '指派', value: 'assign', num: ''}];
  201. }else{
  202. dataInfo.tabs.splice(index, 0, {id: 1, name: '指派', value: 'assign', num: ''});
  203. }
  204. }
  205. // 退回
  206. if(dataInfo.incidentData.state.value == 'pending' || dataInfo.incidentData.state.value == 'handler'){
  207. if(dataInfo.tabs.length){
  208. dataInfo.tabs.splice(dataInfo.tabs.length, 0, {id: 4, name: '退回', value: 'reassign', num: ''});
  209. }else{
  210. dataInfo.tabs = [{id: 4, name: '退回', value: 'reassign', num: ''}];
  211. }
  212. }
  213. dataInfo.tabActiveValue = dataInfo.tabs[0].value;
  214. initForm()
  215. }else{
  216. uni.showToast({
  217. icon: 'none',
  218. title: res.msg || '请求数据失败!'
  219. });
  220. }
  221. })
  222. }
  223. // 获取院区列表
  224. function getBranchs(){
  225. let arr = loginUserStore.loginUser.hospital.filter(i=>i.parent==undefined)
  226. dataInfo.branchList = arr.map(v => ({
  227. text: v.hosName,
  228. value: v.id,
  229. }));
  230. // uni.showLoading({
  231. // title: "加载中",
  232. // mask: true,
  233. // });
  234. // let postData = {
  235. // "idx": 0,
  236. // "sum": 9999,
  237. // hospital:{
  238. // selectType:"level1",
  239. // }
  240. // // parent:{id:loginUserStore.loginUser.user.currentHospital.id}
  241. // };
  242. // api_branch(postData).then(res => {
  243. // uni.hideLoading();
  244. // if(res.status == 200){
  245. // res.list = res.list || [];
  246. // dataInfo.branchList = res.list.map(v => ({
  247. // text: v.hosName,
  248. // value: v.id,
  249. // }));
  250. // if(loginUserStore.loginUser.user.duty){
  251. // // 当前的所属责任科室
  252. // dataInfo.branchId = loginUserStore.loginUser.user.duty.branch;
  253. // changeBranch();
  254. // dataInfo.dutyId = loginUserStore.loginUser.user.duty.id;
  255. // changeDuty();
  256. // }else if(loginUserStore.loginUser.user.branch){
  257. // // 当前的所属院区
  258. // dataInfo.branchId = loginUserStore.loginUser.user.branch.id;
  259. // changeBranch();
  260. // }
  261. // }else{
  262. // uni.showToast({
  263. // icon: 'none',
  264. // title: res.msg || '请求数据失败!'
  265. // });
  266. // }
  267. // })
  268. }
  269. // 获取责任科室列表
  270. function getDutys(){
  271. uni.showLoading({
  272. title: "加载中",
  273. mask: true,
  274. });
  275. let postData = {
  276. "idx": 0,
  277. "sum": 9999,
  278. hospital: {
  279. parent:{
  280. id:dataInfo.branchId
  281. },
  282. type:{value:6}
  283. }
  284. };
  285. api_branch(postData).then(res => {
  286. uni.hideLoading();
  287. if(res.status == 200){
  288. res.list = res.list || [];
  289. dataInfo.dutyList = res.list.map(v => ({
  290. text: v.hosName,
  291. value: v.id,
  292. }));
  293. }else{
  294. uni.showToast({
  295. icon: 'none',
  296. title: res.msg || '请求数据失败!'
  297. });
  298. }
  299. })
  300. }
  301. // 获取工作组列表
  302. function getGroups(){
  303. uni.showLoading({
  304. title: "加载中",
  305. mask: true,
  306. });
  307. let duty = undefined;
  308. if(dataInfo.tabActiveValue === 'redeploy'){
  309. duty = dataInfo.incidentData.duty.id;
  310. }else if(dataInfo.tabActiveValue === 'assign'){
  311. duty = dataInfo.dutyId;
  312. }
  313. let postData = {
  314. "idx": 0,
  315. "sum": 9999,
  316. "group2": {
  317. "hospitals": duty
  318. }
  319. };
  320. api_group(postData).then(res => {
  321. uni.hideLoading();
  322. if(res.status == 200){
  323. res.list = res.list || [];
  324. let arr = res.list.filter(i=>i.type==3)
  325. dataInfo.groupList = arr.map(v => ({
  326. text: v.groupName,
  327. value: v.id,
  328. }));
  329. }else{
  330. uni.showToast({
  331. icon: 'none',
  332. title: res.msg || '请求数据失败!'
  333. });
  334. }
  335. })
  336. }
  337. // 获取用户列表
  338. function getUsers(){
  339. uni.showLoading({
  340. title: "加载中",
  341. mask: true,
  342. });
  343. let postData = {
  344. "idx": 0,
  345. "sum": 9999,
  346. "user": {
  347. "groupdata":{
  348. "id": dataInfo.groupId,
  349. },
  350. roleCodes: 'first-line support,second-line support'
  351. // "roledata": {
  352. // "rolecode": "first-line support"
  353. // },
  354. // "roledata2": {
  355. // "rolecode": "second-line support"
  356. // },
  357. // "selectType": "1",
  358. // "selectDetails": 1,
  359. // "simple": true,
  360. // "engineer": 1
  361. }
  362. };
  363. api_user(postData).then(res => {
  364. uni.hideLoading();
  365. if(res.status == 200){
  366. res.list = res.list || [];
  367. dataInfo.userList = res.list.map(v => ({
  368. text: v.name,
  369. value: v.id,
  370. }));
  371. }else{
  372. uni.showToast({
  373. icon: 'none',
  374. title: res.msg || '请求数据失败!'
  375. });
  376. }
  377. })
  378. }
  379. // 选择院区
  380. function changeBranch(){
  381. dataInfo.dutyId = undefined;
  382. dataInfo.dutyList = [];
  383. dataInfo.groupId = undefined;
  384. dataInfo.groupList = [];
  385. dataInfo.userId = undefined;
  386. dataInfo.userList = [];
  387. getDutys();
  388. }
  389. // 选择责任科室
  390. function changeDuty(){
  391. dataInfo.groupId = undefined;
  392. dataInfo.groupList = [];
  393. dataInfo.userId = undefined;
  394. dataInfo.userList = [];
  395. getGroups();
  396. }
  397. // 选择工作组
  398. function changeGroup(){
  399. dataInfo.userId = undefined;
  400. dataInfo.userList = [];
  401. getUsers();
  402. }
  403. // 选择是否转派到人
  404. function changeIsAssignUser(){
  405. dataInfo.userId = undefined;
  406. }
  407. // 提交
  408. function submit(){
  409. isSubmit.value = true;
  410. if(dataInfo.tabActiveValue === 'redeploy'){
  411. submitRedeploy();
  412. }else if(dataInfo.tabActiveValue === 'assign'){
  413. submitAssign();
  414. }else if(dataInfo.tabActiveValue === 'reassign'){
  415. submitReassign();
  416. }
  417. }
  418. // 转派提交
  419. function submitRedeploy(){
  420. if(!dataInfo.groupId){
  421. uni.showToast({
  422. icon: 'none',
  423. title: '请选择工作组'
  424. });
  425. return;
  426. }
  427. if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
  428. uni.showToast({
  429. icon: 'none',
  430. title: '请选择指派对象'
  431. });
  432. return;
  433. }
  434. uni.showLoading({
  435. title: "加载中",
  436. mask: true,
  437. });
  438. let postData = {
  439. incident: dataInfo.incidentData,
  440. }
  441. postData.incident.candidateGroupId = dataInfo.groupId;
  442. if(dataInfo.userId){
  443. // 派人
  444. postData.incident.assignee = dataInfo.userId;
  445. delete postData.incident.candidateGroups
  446. } else {
  447. // 派组
  448. postData.incident.candidateGroups = dataInfo.groupId;
  449. delete postData.incident.assignee
  450. }
  451. api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
  452. uni.hideLoading();
  453. if(res.state == 200){
  454. uni.showToast({
  455. icon: 'none',
  456. title: '转派成功',
  457. mask: true,
  458. });
  459. setTimeout(() => {
  460. uni.reLaunch({
  461. url: '/pages/incidentList/incidentList',
  462. })
  463. }, 1500)
  464. }else{
  465. uni.showToast({
  466. icon: 'none',
  467. title: res.msg || '请求数据失败!'
  468. });
  469. }
  470. })
  471. }
  472. // 指派提交
  473. function submitAssign(){
  474. if(!dataInfo.branchId){
  475. uni.showToast({
  476. icon: 'none',
  477. title: '请选择院区'
  478. });
  479. return;
  480. }
  481. if(!dataInfo.dutyId){
  482. uni.showToast({
  483. icon: 'none',
  484. title: '请选择责任科室'
  485. });
  486. return;
  487. }
  488. if(!dataInfo.groupId){
  489. uni.showToast({
  490. icon: 'none',
  491. title: '请选择工作组'
  492. });
  493. return;
  494. }
  495. if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
  496. uni.showToast({
  497. icon: 'none',
  498. title: '请选择指派对象'
  499. });
  500. return;
  501. }
  502. uni.showLoading({
  503. title: "加载中",
  504. mask: true,
  505. });
  506. let postData = {
  507. incident: dataInfo.incidentData,
  508. }
  509. postData.incident.candidateGroupId = dataInfo.groupId;
  510. if(dataInfo.userId){
  511. // 派人
  512. postData.incident.assignee = dataInfo.userId;
  513. delete postData.incident.candidateGroups
  514. } else {
  515. // 派组
  516. postData.incident.candidateGroups = dataInfo.groupId;
  517. delete postData.incident.assignee
  518. }
  519. postData.incident.duty = { id: dataInfo.dutyId };
  520. postData.incident.hosId = dataInfo.branchId
  521. api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
  522. uni.hideLoading();
  523. if(res.state == 200){
  524. uni.showToast({
  525. icon: 'none',
  526. title: '指派成功',
  527. mask: true,
  528. });
  529. setTimeout(() => {
  530. uni.reLaunch({
  531. url: '/pages/incidentList/incidentList',
  532. })
  533. }, 1500)
  534. }else{
  535. uni.showToast({
  536. icon: 'none',
  537. title: res.msg || '请求数据失败!'
  538. });
  539. }
  540. })
  541. }
  542. // 退回提交
  543. function submitReassign(){
  544. if(!dataInfo.reassignRemark.trim()){
  545. uni.showToast({
  546. icon: 'none',
  547. title: '请填写退回原因'
  548. });
  549. return;
  550. }
  551. uni.showLoading({
  552. title: "加载中",
  553. mask: true,
  554. });
  555. let postData = {
  556. incident: dataInfo.incidentData,
  557. }
  558. postData.incident.reassignRemark = dataInfo.reassignRemark;
  559. api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
  560. uni.hideLoading();
  561. if(res.state == 200){
  562. uni.showToast({
  563. icon: 'none',
  564. title: '退回成功',
  565. mask: true,
  566. });
  567. setTimeout(() => {
  568. uni.reLaunch({
  569. url: '/pages/incidentList/incidentList',
  570. })
  571. }, 1500)
  572. }else{
  573. uni.showToast({
  574. icon: 'none',
  575. title: res.msg || '请求数据失败!'
  576. });
  577. }
  578. })
  579. }
  580. onLoad((option) => {
  581. dataInfo.incidentId = option.incidentId;
  582. getIncidentDetail();
  583. })
  584. </script>
  585. <style lang="scss" scoped>
  586. .changeUser{
  587. height: 100%;
  588. display: flex;
  589. flex-direction: column;
  590. justify-content: space-between;
  591. .head{
  592. height: 88rpx;
  593. display: flex;
  594. position: fixed;
  595. z-index: 99;
  596. width: 100%;
  597. background-color: #fff;
  598. font-size: 30rpx;
  599. .tab{
  600. flex: 1;
  601. display: flex;
  602. justify-content: center;
  603. align-items: center;
  604. border-bottom: 4rpx solid transparent;
  605. &.active{
  606. color: $uni-primary;
  607. border-color: $uni-primary;
  608. }
  609. }
  610. }
  611. .body{
  612. margin-top: 88rpx;
  613. padding: 0 24rpx;
  614. box-sizing: border-box;
  615. flex: 1;
  616. min-height: 0;
  617. .form_item{
  618. display: flex;
  619. align-items: center;
  620. padding-top: 24rpx;
  621. min-height: 86rpx;
  622. &.column{
  623. height: auto;
  624. flex-direction: column;
  625. align-items: flex-start;
  626. .title{
  627. margin-right: 0;
  628. }
  629. .value{
  630. margin-top: 10rpx;
  631. padding-left: 20rpx;
  632. box-sizing: border-box;
  633. }
  634. .tips{
  635. padding: 24rpx;
  636. text-align: center;
  637. font-size: 22rpx;
  638. color: #909399;
  639. width: 100%;
  640. box-sizing: border-box;
  641. }
  642. }
  643. .title{
  644. font-size: 26rpx;
  645. display: flex;
  646. align-items: center;
  647. margin-right: 12rpx;
  648. &.select{
  649. width: calc(5em + 20rpx);
  650. }
  651. }
  652. }
  653. }
  654. }
  655. </style>