resumeIndex.uvue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745
  1. <template>
  2. <view class="detail-page">
  3. <scroll-view class="detail-content" :scroll-y="true">
  4. <!-- 工单信息 -->
  5. <view class="info-section">
  6. <view class="section-title">
  7. <text class="section-title-text">工单信息</text>
  8. </view>
  9. <view class="info-card">
  10. <view class="info-item">
  11. <text class="info-label">工单编码</text>
  12. <text class="info-value">{{ detailData.workOrderProjectNo ?? '' }}</text>
  13. </view>
  14. <view class="info-item">
  15. <text class="info-label">工单类型</text>
  16. <text class="info-value">{{ detailData.orderType == 1 ? '维修工单' : '维保工单' }}</text>
  17. </view>
  18. <view class="info-item">
  19. <text class="info-label">风机编号</text>
  20. <text class="info-value">{{ detailData.pcsDeviceName ?? '' }}</text>
  21. </view>
  22. <view class="info-item">
  23. <text class="info-label">维保中心</text>
  24. <text class="info-value">{{ detailData.gxtCenter ?? '' }}</text>
  25. </view>
  26. <view class="info-item">
  27. <text class="info-label">场站</text>
  28. <text class="info-value">{{ detailData.pcsStationName ?? '' }}</text>
  29. </view>
  30. <!-- <view class="info-item">
  31. <text class="info-label">品牌</text>
  32. <text class="info-value">{{ detailData.model ?? '' }}</text>
  33. </view> -->
  34. <view class="info-item">
  35. <text class="info-label">机型</text>
  36. <text class="info-value">{{ detailData.brand ?? '' }} {{ detailData.model ?? '' }}</text>
  37. </view>
  38. <view class="info-item">
  39. <text class="info-label">审批通过时间</text>
  40. <text class="info-value">{{ formatDate(detailData.updateTime ?? '') }}</text>
  41. </view>
  42. </view>
  43. </view>
  44. <!-- <view class="info-section">
  45. <view class="section-title">
  46. <text class="section-title-text">工作负责人</text>
  47. </view>
  48. <view class="info-card">
  49. <view class="info-item">
  50. <input class="input" type="text" placeholder="请输入工作负责人" v-model="teamLeaderName" />
  51. </view>
  52. </view>
  53. </view> -->
  54. <!-- 工单流转 -->
  55. <!-- <view class="info-section">
  56. <view class="section-title">
  57. <text class="section-title-text">工单流转</text>
  58. </view>
  59. <view class="info-card" v-if="detailData.workOrderFlowList != null && detailData.workOrderFlowList.length > 0">
  60. <view class="flow-item" v-for="(flow, index) in detailData.workOrderFlowList" :key="index">
  61. <view class="flow-header">
  62. <text class="flow-operator">{{ flow.operatorName ?? '未知操作人' }}</text>
  63. <text class="flow-time">{{ flow.actionTime ?? '' }}</text>
  64. </view>
  65. <view class="flow-content">
  66. <text class="flow-action">{{ getActionTypeName(flow.actionType) }}</text>
  67. <text class="flow-remark" v-if="flow.actionRemark">{{ flow.actionRemark }}</text>
  68. </view>
  69. </view>
  70. </view>
  71. <view class="info-card" v-else>
  72. <view class="no-data">暂无流转记录</view>
  73. </view>
  74. </view> -->
  75. </scroll-view>
  76. <!-- 接单按钮 -->
  77. <view class="accept-button-container" v-if="checkPermi(detailData.orderType == 2 ? ['gxt:maintenance:order:resume'] : ['gxt:repairOrder:resume'])">
  78. <button class="accept-button" @click="handleResumeOrder">{{ isDealing ? '恢复中...' : '恢 复' }}</button>
  79. </view>
  80. <!-- 加载中状态 -->
  81. <view v-if="loading" class="loading-mask">
  82. <text class="loading-text">加载中...</text>
  83. </view>
  84. </view>
  85. </template>
  86. <script setup lang="uts">
  87. import { ref } from 'vue'
  88. import type { acceptOrderInfo } from '../../../types/order'
  89. import type { WorkOrderFlow } from '../../../types/flow'
  90. import { getOrderInfoById, getRepairOrderInfoById, resumeOrder } from '../../../api/order/detail'
  91. import type { SysDictData } from '../../../types/dict'
  92. import { getDictDataByType } from '../../../api/dict/index'
  93. import { getLeaderList } from '../../../api/user/list'
  94. import type { UserInfo } from '../../../types/user'
  95. import {checkPermi} from '../../../utils/storage'
  96. const teamLeaderName = ref<string>("")
  97. const statusDictList = ref<SysDictData[]>([]) // 工单状态字典列表
  98. // 添加字典加载状态
  99. const dictLoaded = ref<boolean>(false)
  100. // 详情数据
  101. const detailData = ref<acceptOrderInfo>({
  102. orderType: 0,
  103. id: 0,
  104. teamLeaderId: 0,
  105. acceptUserId: 0,
  106. teamLeaderName: null,
  107. acceptUserName: null,
  108. acceptTime: null,
  109. assignTime: null,
  110. assignUserName: null,
  111. status: 0,
  112. workOrderProjectNo: null,
  113. workOrderStatus: null,
  114. gxtCenterId: 0,
  115. gxtCenter: null,
  116. pcsStationId: 0,
  117. pcsStationName: null,
  118. pcsDeviceId: 0,
  119. pcsDeviceName: null,
  120. brand: null,
  121. model: null,
  122. createTime: null,
  123. workOrderFlowList: null,
  124. suspendReason: null,
  125. rejectionReason: null,
  126. updateTime: null, // 新增字段
  127. workEndTime: null // 新增字段
  128. })
  129. // 选择器选项类型
  130. type PickerOption = {
  131. label: string
  132. value: string
  133. }
  134. // 选中的负责人信息
  135. const selectedTeamLeaderId = ref<string>('')
  136. const rejectReason = ref<string>('')
  137. const selectedTeamLeaderIndex = ref<number>(-1)
  138. const teamLeaderNameOptions = ref<PickerOption[]>([])
  139. const showLeaderPicker = ref<boolean>(false)
  140. const formatDate = (dateString: string): string => {
  141. if (dateString != null && dateString.length >= 3) {
  142. dateString = dateString.slice(0, -3);
  143. } else {
  144. dateString = dateString
  145. }
  146. return dateString
  147. // if (dateString == '' || dateString == null) return ''
  148. // const date = new Date(dateString)
  149. // const year = date.getFullYear()
  150. // const month = (date.getMonth() + 1).toString().padStart(2, '0')
  151. // const day = date.getDate().toString().padStart(2, '0')
  152. // const hours = date.getHours().toString().padStart(2, '0')
  153. // const minutes = date.getMinutes().toString().padStart(2, '0')
  154. // return `${year}-${month}-${day} ${hours}:${minutes}`
  155. }
  156. // 获取负责人列表(使用用户列表接口)
  157. const loadTeamLeaderList = async (): Promise<void> => {
  158. try {
  159. const deptId = detailData.value.gxtCenterId
  160. const result = await getLeaderList(deptId)
  161. const resultObj = result as UTSJSONObject
  162. if (resultObj['code'] == 200) {
  163. const data = resultObj['data'] as any[]
  164. const leaders: UserInfo[] = []
  165. const options: PickerOption[] = []
  166. if (data.length > 0) {
  167. for (let i = 0; i < data.length; i++) {
  168. const item = data[i] as UTSJSONObject
  169. let leader: UserInfo = {
  170. userName: item['userName'] as string,
  171. nickName: item['nickName'] as string,
  172. userId: new Int32Array([item['userId'] != null ? (item['userId'] as number) : 0]),
  173. phone: item['phonenumber'] as string,
  174. deptName : item['deptName'] != null ? (item['deptName'] as string) : ''
  175. }
  176. leaders.push(leader)
  177. // 构建选择器选项(只使用用户名)
  178. options.push({
  179. label: leader.nickName,
  180. value: leader.userId.toString()
  181. })
  182. }
  183. }
  184. // teamLeaderList.value = leaders
  185. teamLeaderNameOptions.value = options
  186. }
  187. } catch (e: any) {
  188. console.error('获取负责人列表失败:', e.message)
  189. }
  190. }
  191. // 获取工单状态字典列表
  192. const loadStatusDictList = async (): Promise<void> => {
  193. try {
  194. const result = await getDictDataByType('gxt_repair_order_flow_action_type')
  195. const resultObj = result as UTSJSONObject
  196. if (resultObj['code'] == 200) {
  197. const data = resultObj['data'] as any[]
  198. const dictData: SysDictData[] = []
  199. if (data.length > 0) {
  200. for (let i = 0; i < data.length; i++) {
  201. const item = data[i] as UTSJSONObject
  202. // 只提取需要的字段
  203. const dictItem: SysDictData = {
  204. dictValue: item['dictValue'] as string | null,
  205. dictLabel: item['dictLabel'] as string | null,
  206. dictCode: null,
  207. dictSort: null,
  208. dictType: null,
  209. cssClass: null,
  210. listClass: null,
  211. isDefault: null,
  212. status: null,
  213. default: null,
  214. createTime: null,
  215. remark: null
  216. }
  217. dictData.push(dictItem)
  218. }
  219. }
  220. statusDictList.value = dictData
  221. dictLoaded.value = true
  222. }
  223. } catch (e: any) {
  224. console.error('获取工单状态字典失败:', e.message)
  225. dictLoaded.value = true
  226. }
  227. }
  228. const isDealing = ref(false)
  229. const hasDealed = ref(false)
  230. // 处理恢复操作
  231. const handleResumeOrder = async (): Promise<void> => {
  232. if (isDealing.value || hasDealed.value) return // 双重保险
  233. isDealing.value = true
  234. // detailData.value.rejectionReason = rejectReason.value
  235. detailData.value.workOrderStatus = 'to_finish'
  236. try {
  237. const result = await resumeOrder(detailData.value)
  238. const resultObj = result as UTSJSONObject
  239. const code = resultObj['code'] as number
  240. if (code == 200) {
  241. uni.showToast({
  242. title: '恢复成功',
  243. icon: 'success'
  244. })
  245. hasDealed.value = true
  246. // 使用事件总线通知列表页面刷新
  247. uni.$emit('refreshOrderList', {})
  248. uni.$emit('refreshAssignedCount')
  249. uni.$emit('refreshOverdueCount')
  250. // 接单成功后返回上一页
  251. setTimeout(() => {
  252. uni.navigateBack()
  253. }, 800)
  254. } else {
  255. // 处理业务错误
  256. uni.showToast({
  257. title: resultObj['msg'] as string,
  258. icon: 'none'
  259. })
  260. }
  261. } catch (error: any) {
  262. console.error('请求失败:', error);
  263. uni.showToast({
  264. title: error.message ?? '恢复失败',
  265. icon: 'none'
  266. })
  267. } finally {
  268. isDealing.value = false // 无论成功失败都解锁
  269. }
  270. }
  271. const loading = ref<boolean>(false)
  272. // 获取操作类型名称
  273. const getActionTypeName = (item: string | null): string | null => {
  274. if (item == null) return ''
  275. // const orderInfoItem = item as orderInfo
  276. const rawStatus = item
  277. if (rawStatus==null) return ''
  278. // 如果字典尚未加载,返回原始值
  279. if (!dictLoaded.value) {
  280. return rawStatus
  281. }
  282. // 查找字典中对应的标签
  283. const dictItem = statusDictList.value.find(dict => dict.dictValue == rawStatus)
  284. return dictItem!=null ? dictItem.dictLabel : rawStatus
  285. }
  286. // 加载详情数据
  287. const loadDetail = async (id: string, orderType?: number): Promise<void> => {
  288. try {
  289. loading.value = true
  290. let result: any;
  291. // 根据orderType决定调用哪个API
  292. if (orderType == 1) {
  293. // 维修工单
  294. result = await getRepairOrderInfoById(id)
  295. } else {
  296. // 维保工单
  297. result = await getOrderInfoById(id)
  298. }
  299. // 提取响应数据
  300. const resultObj = result as UTSJSONObject
  301. const code = resultObj['code'] as number
  302. const data = resultObj['data'] as UTSJSONObject | null
  303. if (code == 200 && data != null) {
  304. // 处理工单流转列表
  305. let workOrderFlowList: WorkOrderFlow[] | null = null
  306. let flowList: UTSJSONObject[] = []
  307. if (orderType == 1) {
  308. // 维修工单
  309. flowList = data['repairOrderFlowList'] as UTSJSONObject[]
  310. } else {
  311. // 维保工单
  312. flowList = data['workOrderFlowList'] as UTSJSONObject[]
  313. }
  314. if (flowList.length > 0) {
  315. workOrderFlowList = []
  316. for (let i = 0; i < flowList.length; i++) {
  317. const flowItem = flowList[i]
  318. const flow: WorkOrderFlow = {
  319. id: flowItem['id'] as Number,
  320. orderId: flowItem['orderId'] as Number,
  321. orderCode: flowItem['orderCode'] as string,
  322. actionType: flowItem['actionType'] as string,
  323. fromStatus: flowItem['fromStatus'] as string | null,
  324. toStatus: flowItem['toStatus'] as string,
  325. operatorId: flowItem['operatorId'] as Number | null,
  326. operatorName: flowItem['operatorName'] as string | null,
  327. actionTime: flowItem['actionTime'] as string,
  328. actionRemark: flowItem['actionRemark'] as string | null,
  329. createBy: flowItem['createBy'] as string | null,
  330. createTime: flowItem['createTime'] as string | null
  331. }
  332. workOrderFlowList.push(flow)
  333. }
  334. }
  335. // 转换数据
  336. const orderDtail: acceptOrderInfo = {
  337. orderType: data['orderType'] as Number,
  338. id: data['id'] as Number,
  339. teamLeaderId: data['teamLeaderId'] != null ? (data['teamLeaderId'] as Number) : 0,
  340. acceptUserId: data['acceptUserId'] != null ? (data['acceptUserId'] as Number) : 0,
  341. teamLeaderName: data['teamLeaderName'] as string | null,
  342. acceptUserName: data['acceptUserName'] as string | null,
  343. acceptTime: data['acceptTime'] as string | null,
  344. assignTime: data['assignTime'] as string | null,
  345. assignUserName: data['assignUserName'] as string | null,
  346. status: (data['status']==null)?0:data['status'] as Number,
  347. workOrderProjectNo: data['workOrderProjectNo'] as string | null,
  348. workOrderStatus: data['workOrderStatus'] as string | null,
  349. gxtCenterId: data['gxtCenterId'] as Number | 0,
  350. gxtCenter: data['gxtCenter'] as string | null,
  351. pcsStationId: data['pcsStationId'] as Number | 0,
  352. pcsStationName: data['pcsStationName'] as string | null,
  353. pcsDeviceId: data['pcsDeviceId'] as Number | 0,
  354. pcsDeviceName: data['pcsDeviceName'] as string | null,
  355. brand: data['brand'] as string | null,
  356. model: data['model'] as string | null,
  357. createTime: data['createTime'] as string | null,
  358. workOrderFlowList: workOrderFlowList,
  359. suspendReason: data['suspendReason'] as string | null,
  360. rejectionReason: data['rejectionReason'] as string | null,
  361. updateTime: data['updateTime'] as string | null, // 新增字段
  362. workEndTime: data['workEndTime'] as string | null // 新增字段
  363. }
  364. detailData.value = orderDtail
  365. // 如果工单数据中已有负责人信息,设置到输入框中
  366. if (orderDtail.teamLeaderName != null && orderDtail.teamLeaderName.length > 0) {
  367. teamLeaderName.value = orderDtail.teamLeaderName as string
  368. }
  369. loadTeamLeaderList()
  370. } else {
  371. const msg = resultObj['msg'] as string | null
  372. uni.showToast({
  373. title: msg ?? '加载失败',
  374. icon: 'none'
  375. })
  376. }
  377. } catch (e: any) {
  378. uni.showToast({
  379. title: e.message ?? '加载失败',
  380. icon: 'none'
  381. })
  382. } finally {
  383. loading.value = false
  384. }
  385. }
  386. // 页面加载
  387. onLoad((options: any) => {
  388. const params = options as UTSJSONObject
  389. const id = params['id'] as string | null
  390. const orderTypeParam = params['orderType'] as string | null
  391. if (id != null && orderTypeParam != null) {
  392. // 先尝试从参数中获取orderType
  393. const orderTypeNumber = parseInt(orderTypeParam)
  394. loadDetail(id, orderTypeNumber)
  395. }
  396. })
  397. // 初始化
  398. onMounted(() => {
  399. loadStatusDictList()
  400. })
  401. </script>
  402. <style lang="scss">
  403. .detail-page {
  404. flex: 1;
  405. background-color: #e8f0f9;
  406. }
  407. .detail-content {
  408. flex: 1;
  409. padding: 20rpx 0;
  410. }
  411. .info-section {
  412. margin: 0 30rpx 24rpx;
  413. .section-title {
  414. position: relative;
  415. padding-left: 20rpx;
  416. margin-bottom: 20rpx;
  417. &::before {
  418. // content: '';
  419. position: absolute;
  420. left: 0;
  421. top: 50%;
  422. transform: translateY(-50%);
  423. width: 8rpx;
  424. height: 32rpx;
  425. background-color: #007aff;
  426. border-radius: 4rpx;
  427. }
  428. &-text {
  429. font-size: 32rpx;
  430. font-weight: bold;
  431. color: #333333;
  432. }
  433. }
  434. .info-card {
  435. background-color: #ffffff;
  436. border-radius: 16rpx;
  437. padding: 30rpx;
  438. .info-item {
  439. flex-direction: row;
  440. padding: 20rpx 0;
  441. border-bottom: 1rpx solid #f0f0f0;
  442. &:last-child {
  443. border-bottom: none;
  444. }
  445. &.full-width {
  446. flex-direction: column;
  447. .info-label {
  448. margin-bottom: 12rpx;
  449. }
  450. .info-value {
  451. line-height: 44rpx;
  452. }
  453. }
  454. .info-label {
  455. width: 240rpx;
  456. font-size: 28rpx;
  457. color: #666666;
  458. white-space: nowrap;
  459. }
  460. .info-value {
  461. flex: 1;
  462. font-size: 28rpx;
  463. color: #333333;
  464. text-align: right;
  465. &.highlight {
  466. color: #007aff;
  467. font-weight: bold;
  468. }
  469. &.input {
  470. text-align: left;
  471. border: 1rpx solid #e0e0e0;
  472. border-radius: 8rpx;
  473. padding: 10rpx;
  474. }
  475. }
  476. }
  477. .flow-item {
  478. padding: 20rpx 0;
  479. border-bottom: 1rpx solid #f0f0f0;
  480. &:last-child {
  481. border-bottom: none;
  482. }
  483. .flow-header {
  484. flex-direction: row;
  485. justify-content: space-between;
  486. margin-bottom: 10rpx;
  487. .flow-operator {
  488. font-size: 28rpx;
  489. color: #333333;
  490. font-weight: bold;
  491. }
  492. .flow-time {
  493. font-size: 24rpx;
  494. color: #999999;
  495. }
  496. }
  497. .flow-content {
  498. flex-direction: column;
  499. .flow-action {
  500. font-size: 26rpx;
  501. color: #666666;
  502. margin-bottom: 8rpx;
  503. }
  504. .flow-remark {
  505. font-size: 24rpx;
  506. color: #999999;
  507. background-color: #f5f5f5;
  508. padding: 10rpx;
  509. border-radius: 8rpx;
  510. }
  511. }
  512. }
  513. .no-data {
  514. text-align: center;
  515. padding: 40rpx 0;
  516. font-size: 28rpx;
  517. color: #999999;
  518. }
  519. }
  520. }
  521. .accept-button-container {
  522. padding: 30rpx 30rpx 50rpx;
  523. background-color: #ffffff;
  524. display: flex;
  525. flex-direction: row;
  526. justify-content: space-between;
  527. align-items: center;
  528. .accept-button {
  529. width: 100%;
  530. height: 80rpx;
  531. background-color: #007aff;
  532. color: #ffffff;
  533. font-size: 32rpx;
  534. border-radius: 16rpx;
  535. border: none;
  536. &:active {
  537. background-color: #0062cc;
  538. }
  539. }
  540. .reject-btn {
  541. width: 45%;
  542. height: 80rpx;
  543. background-color: #ff4d4f;
  544. color: #ffffff;
  545. font-size: 32rpx;
  546. border-radius: 16rpx;
  547. border: none;
  548. &:active {
  549. background-color: #d9363e;
  550. }
  551. }
  552. }
  553. .loading-mask {
  554. position: absolute;
  555. top: 0;
  556. left: 0;
  557. right: 0;
  558. bottom: 0;
  559. justify-content: center;
  560. align-items: center;
  561. background-color: rgba(0, 0, 0, 0.3);
  562. .loading-text {
  563. padding: 30rpx 60rpx;
  564. background-color: rgba(0, 0, 0, 0.7);
  565. color: #ffffff;
  566. font-size: 28rpx;
  567. border-radius: 12rpx;
  568. }
  569. }
  570. .picker-modal {
  571. position: fixed;
  572. top: 0;
  573. left: 0;
  574. right: 0;
  575. bottom: 0;
  576. z-index: 1000;
  577. }
  578. .modal-mask {
  579. position: absolute;
  580. top: 0;
  581. left: 0;
  582. right: 0;
  583. bottom: 0;
  584. background-color: rgba(0, 0, 0, 0.5);
  585. }
  586. .modal-content {
  587. position: absolute;
  588. bottom: 0;
  589. left: 0;
  590. right: 0;
  591. background-color: #ffffff;
  592. border-top-left-radius: 16rpx;
  593. border-top-right-radius: 16rpx;
  594. max-height: 700rpx;
  595. }
  596. .modal-header {
  597. flex-direction: row;
  598. justify-content: space-between;
  599. align-items: center;
  600. padding: 30rpx;
  601. border-bottom: 1rpx solid #f0f0f0;
  602. }
  603. .modal-title {
  604. font-size: 32rpx;
  605. font-weight: bold;
  606. color: #333333;
  607. }
  608. .modal-close {
  609. font-size: 28rpx;
  610. color: #007aff;
  611. }
  612. .modal-body {
  613. max-height: 600rpx;
  614. }
  615. .picker-option {
  616. flex-direction: row;
  617. justify-content: space-between;
  618. align-items: center;
  619. padding: 24rpx 30rpx;
  620. border-bottom: 1rpx solid #f0f0f0;
  621. }
  622. .picker-option.selected {
  623. background-color: #f8f9fa;
  624. }
  625. .option-text {
  626. font-size: 28rpx;
  627. color: #333333;
  628. }
  629. .option-check {
  630. font-size: 28rpx;
  631. color: #007aff;
  632. }
  633. .form-picker {
  634. flex: 1;
  635. }
  636. .picker-display {
  637. flex-direction: row;
  638. justify-content: space-between;
  639. align-items: center;
  640. min-height: 40rpx;
  641. }
  642. .selected-value {
  643. font-size: 28rpx;
  644. color: #333333;
  645. }
  646. .placeholder {
  647. font-size: 28rpx;
  648. color: #999999;
  649. }
  650. .arrow {
  651. font-size: 24rpx;
  652. color: #999999;
  653. margin-left: 12rpx;
  654. }
  655. .reject-reason-textarea {
  656. width: 100%;
  657. min-height: 100rpx;
  658. line-height: 1.5;
  659. }
  660. </style>