changeUser.vue 21 KB

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