supp_clock_approve.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817
  1. <template>
  2. <view class="warp">
  3. <view class="topInfo">
  4. <view class="topInfo-item">
  5. <view class="flex info">
  6. <view class="logo">
  7. <image src="../../../static/img/reject.png" mode=""
  8. v-if="dataList.status == '补卡失败'" style="height: 40rpx;">
  9. </image><!-- 驳回 -->
  10. <image src="../../../static/img/tongguo.png" mode=""
  11. v-else-if="dataList.status == '补卡成功'"
  12. style="height: 40rpx;"></image><!-- 通过 -->
  13. <image src="../../../static/img/daishenhe.png" mode=""
  14. v-else-if="dataList.approveStatus == '待人事审核'"
  15. style="height: 40rpx;"></image><!-- 待审核 -->
  16. </view>
  17. <view class="infoText" v-if="dataList.approveStatus">{{dataList.approveStatus}}</view>
  18. <view class="infoText" v-else>{{dataList.status}}</view>
  19. </view>
  20. <view class="infoData" v-if="dataList.updateDate">{{dataList.updateDate}}</view>
  21. </view>
  22. </view>
  23. <view class="content1">
  24. <!-- :model="OutList" -->
  25. <u-form ref="uForm">
  26. <u-form-item label="申请人" prop="empName" label-width="140" class="uForm_item">
  27. <u-input input-align="right" disabled v-model="dataList.empName" />
  28. </u-form-item>
  29. <u-form-item label="补卡日期" prop="suppDay" label-width="140" class="uForm_item">
  30. <u-input input-align="right" disabled v-model="dataList.suppDay" />
  31. </u-form-item>
  32. <u-form-item label="补卡原因" prop="supplementClockType" label-width="140" class="uForm_item">
  33. <u-input input-align="right" disabled v-if="dataList.supplementClockType=='1'" value="上班">上班</u-input>
  34. <u-input input-align="right" disabled v-if="dataList.supplementClockType=='3'" value="下班">下班</u-input>
  35. </u-form-item>
  36. <view class="uForm_item">
  37. <u-form-item label="申请理由" prop="reasonForApplication" label-width="160" label-position="top">
  38. <u-input v-model="dataList.reasonForApplication" input-align="left" placeholder="请输入业务描述"
  39. type="textarea" class="textarea" maxlength="150" />
  40. </u-form-item>
  41. </view>
  42. </u-form>
  43. </view>
  44. <view v-if='show' class="shade1">
  45. <view class="wrap1">
  46. <view class="alert-top1">
  47. <view class="title1">
  48. {{title}}
  49. </view>
  50. <u-icon name="close" class="close1" color="#8890B1" @click="close()"></u-icon>
  51. </view>
  52. <view class="u-textarea-style1">
  53. <view class="right-bottom1">
  54. {{auditMind.length}}/1000个字
  55. </view>
  56. <u-input class="" v-model='auditMind' placeholder="请在此输入审核意见" type="textarea" height="414"
  57. maxlength="1000" />
  58. </view>
  59. <view @click='close()' class="cancel1">取消</view>
  60. <view @click='passSubmit()' class="confirm1">确定</view>
  61. </view>
  62. </view>
  63. <view class="content3">
  64. <view class="titlez rowz">
  65. 流程
  66. </view>
  67. <view v-for="(item,index) in auditList" :key='index' class="audit">
  68. <view class="row" v-if='item.desc!="_PLACEHOLDER_"'>
  69. <view class="left">
  70. <view class="item1">
  71. <view class="item-content">{{item.operatorTitle}}</view>
  72. <view v-if="item.status=='success'" class='status success'>
  73. <u-icon name="checkmark" color="#2979ff" size="24"></u-icon>
  74. </view>
  75. <view v-if="item.status=='error'" class='status error'>
  76. <u-icon name="close" color="rgb(245, 108, 108)" size="24"></u-icon>
  77. </view>
  78. <view v-if="item.status=='question'" class='status question'>
  79. <u-icon name="question" color="#f9ae3d" size="24"></u-icon>
  80. </view>
  81. </view>
  82. </view>
  83. <view class="right">
  84. <view class="right-item">
  85. <view class="item2">
  86. <view class="name">{{item.desc}}
  87. </view>
  88. <!-- <view class='time'>{{item.updateDate}}</view> -->
  89. <view v-if="item.status=='success'" class="status success">
  90. {{item.commonStaffs1?item.staffscontent:item.operatorName}}<text
  91. v-if='!item.commonStaffs1&&index!=0'>已审核</text></view>
  92. <view v-if="item.status=='error'" class="status error">
  93. {{item.commonStaffs1?item.staffscontent:item.operatorName}}<text
  94. v-if='!item.commonStaffs1'>{{item.workflowHistoricTasks ? "已驳回":''}}</text>
  95. </view>
  96. <view v-if="item.status=='question'" class="status question">
  97. {{item.commonStaffs1?item.staffscontent:''}}<text
  98. v-if='!item.commonStaffs1'>未审核</text></view>
  99. <!-- <view class="status success">吕波(已审核)</view> -->
  100. </view>
  101. <view v-if='index==0||item.workflowHistoricTasks&&item.workflowHistoricTasks.length>0'
  102. class='time'>
  103. {{item.updateDate}}
  104. </view>
  105. </view>
  106. <view v-if='item.auditMind' class="right-content">
  107. {{item.auditMind}}
  108. </view>
  109. </view>
  110. <view v-if='item.commonStaffs1' class="right">
  111. <u-icon @click='showcontent(item)' :name="item.showflow?'arrow-up':'arrow-down'" size="28">
  112. </u-icon>
  113. </view>
  114. </view>
  115. <view v-if='item.showflow' style='padding:10px 0 0 50px;'>
  116. <view class='row2'>
  117. <view v-for='item1 in item.commonStaffs1' style='margin:5px;text-align:center;'>
  118. <view class="item-content">
  119. <u-icon v-if='item1.status' name="checkmark" color="#fff" size="14"></u-icon>
  120. <u-icon v-if='!item1.status' name="question" color="#f9ae3d" size="14"></u-icon>
  121. </view>
  122. <view class="name">{{item1.staffName}}</view>
  123. </view>
  124. </view>
  125. </view>
  126. <view class="row-line" v-if="index!= auditList.length - 1&&item.desc!='_PLACEHOLDER_'"></view>
  127. </view>
  128. </view>
  129. <u-toast ref="uToast" />
  130. <view style='padding:10px;' class='flex bottom-btn'>
  131. <u-button @click='reject' type="error" class="btn1" hover-class='none'>驳回</u-button>
  132. <u-button @click='pass' type="success" class="btn2">通过</u-button>
  133. </view>
  134. </view>
  135. </template>
  136. <script>
  137. import helper from '@/common/helper.js';
  138. import {
  139. mapState
  140. } from 'vuex';
  141. export default {
  142. data() {
  143. return {
  144. everyCheck: '',
  145. height: 200,
  146. autoHeight: true,
  147. border: false,
  148. id: "",
  149. show: false,
  150. auditList: [],
  151. auditMind: '',
  152. reasonForApplication:'',
  153. supplementClockType:'',
  154. approveStatus:'',
  155. status:'',
  156. updateDate:'',
  157. pcUserInfo :uni.getStorageSync('pcUserInfo'),
  158. auditMind: '',
  159. dataList:{
  160. srcList:[]
  161. },
  162. }
  163. },
  164. onBackPress(e) {
  165. if (this.everyCheck) {
  166. uni.navigateTo({
  167. url: "/pages/task/my_task"
  168. })
  169. return true;
  170. }
  171. },
  172. onLoad(options) {
  173. this.id = options.id
  174. this.everyCheck = uni.getStorageSync("everyTask")
  175. this.getList()
  176. },
  177. computed: {
  178. ...mapState(['hasLogin', 'userInfo']),
  179. },
  180. methods: {
  181. getList() {
  182. this.$api.doRequest('get', '/clockInfo/getSuppClock', {
  183. id: this.id
  184. }).then(res => {
  185. if (res.data.code == 200) {
  186. this.dataList = res.data.data
  187. this.$api.doRequest('get', '/workflow/query/workflowDefinitions', {
  188. businessCode: 'BUKA-APPROVE',
  189. tmpCompId: uni.getStorageSync('pcUserInfo').compId
  190. }).then(res1 => {
  191. this.$api.doRequest('get', '/commonUser/getHis', {
  192. workflowId: res1.data.data[0].id,
  193. businessKey: this.id,
  194. // branch:that.list.jointVentureParties?that.list.jointVentureParties:'zt'
  195. }).then(response => {
  196. uni.hideLoading()
  197. for (let i = 0; i < response.data.data.length; i++) {
  198. this.$set(response.data.data[i], 'status', 'question')
  199. // console.log(response.data.data[i].workflowHistoricTasks,i)
  200. if (response.data.data[i].commonStaffs) {
  201. response.data.data[i].showflow = false
  202. response.data.data[i].operatorTitle = response.data.data[i]
  203. .desc.substring(0, 2)
  204. response.data.data[i].operatorName = response.data.data[i]
  205. .desc
  206. response.data.data[i].staffscontent = '共' + response.data
  207. .data[i].commonStaffs.length + '人,当前审核' + response.data
  208. .data[i].workflowHistoricTasks.length + '人'
  209. if (response.data.data[i].workflowHistoricTasks && response
  210. .data.data[i].workflowHistoricTasks.length > 0) {
  211. if (response.data.data[i].workflowHistoricTasks
  212. .length != response.data.data[i].commonStaffs
  213. .length) {
  214. // response.data.data[i].status='question'
  215. this.$set(response.data.data[i], 'status',
  216. 'question')
  217. } else {
  218. this.$set(response.data.data[i], 'status',
  219. 'success')
  220. // response.data.data[i].status='success'
  221. }
  222. response.data.data[i].workflowlen = response.data.data[
  223. i].workflowHistoricTasks.length
  224. var workflowdata = response.data.data[i]
  225. .workflowHistoricTasks
  226. var staffsdata = response.data.data[i].commonStaffs
  227. for (let q = 0; q < staffsdata.length; q++) {
  228. staffsdata[q].status = false
  229. staffsdata[q].staffTitle = staffsdata[q].staffName
  230. for (let k = 0; k < workflowdata.length; k++) {
  231. if (staffsdata[q].staffId == workflowdata[k]
  232. .operatorId) {
  233. staffsdata[q].status = true
  234. }
  235. }
  236. }
  237. }
  238. response.data.data[i].commonStaffs1 = response.data.data[i]
  239. .commonStaffs
  240. } else {
  241. if (response.data.data[i].workflowHistoricTasks && response
  242. .data.data[i].workflowHistoricTasks.length > 0) {
  243. var len = response.data.data[i].workflowHistoricTasks
  244. .length - 1
  245. if (response.data.data[i].workflowHistoricTasks[len]
  246. .approved) {
  247. this.$set(response.data.data[i], 'status',
  248. 'success')
  249. } else {
  250. this.$set(response.data.data[i], 'status', 'error')
  251. }
  252. response.data.data[i].operatorTitle = response.data
  253. .data[i].workflowHistoricTasks[len].operatorName
  254. .substring(response.data.data[i]
  255. .workflowHistoricTasks[0].operatorName.length -
  256. 2)
  257. response.data.data[i].operatorName = response.data
  258. .data[i].workflowHistoricTasks[len].operatorName
  259. var time = new Date(response.data.data[i]
  260. .workflowHistoricTasks[len].claimTime)
  261. .getTime()
  262. response.data.data[i].updateDate = this.$u.timeFormat(
  263. time, 'mm.dd hh:MM')
  264. response.data.data[i].auditMind = response.data.data[i]
  265. .workflowHistoricTasks[len].auditMind
  266. } else {
  267. this.$set(response.data.data[i], 'status', 'question')
  268. // response.data.data[i].status='question'
  269. if (response.data.data[i].desc == '总经理助理审核') {
  270. response.data.data[i].operatorTitle = '总助'
  271. } else if (response.data.data[i].desc == '杜大光审核') {
  272. response.data.data[i].operatorTitle = '大光'
  273. } else {
  274. response.data.data[i].operatorTitle = response.data
  275. .data[i].desc.substring(0, 2)
  276. }
  277. response.data.data[i].operatorName = response.data
  278. .data[i].desc
  279. var time1 = new Date(response.data.data[i].updateDate)
  280. .getTime()
  281. response.data.data[i].updateDate = this.$u.timeFormat(
  282. time1, 'mm.dd hh:MM')
  283. response.data.data[i].auditMind = ''
  284. }
  285. }
  286. }
  287. console.log(response.data.data)
  288. this.auditList = response.data.data
  289. var time2 = new Date(this.dataList.createDate).getTime()
  290. var time3 = this.$u.timeFormat(time2, 'mm.dd hh:MM')
  291. this.auditList.unshift({
  292. operatorTitle: this.dataList.empName.substring(0, 2),
  293. operatorName: this.dataList.empName,
  294. updateDate: time3,
  295. auditMind: '',
  296. desc: '发起申请',
  297. showflow: false,
  298. commonStaffs1: null,
  299. commonStaffs: null,
  300. workflowHistoricTasks: [],
  301. status: 'success'
  302. })
  303. })
  304. })
  305. }
  306. })
  307. },
  308. close() {
  309. this.show = false
  310. },
  311. pass() {
  312. this.show = true
  313. this.title = '审核意见(通过)'
  314. },
  315. reject() {
  316. this.show = true
  317. this.title = '驳回原因(驳回)'
  318. },
  319. //通过
  320. passSubmit() {
  321. var that = this
  322. if (this.title == '驳回原因(驳回)') {
  323. this.rejectSubmit()
  324. } else {
  325. let that = this
  326. that.show = false
  327. uni.showModal({
  328. content: "是否确定通过?",
  329. showCancel: true,
  330. confirmText: '确定',
  331. success: function(res) {
  332. uni.showLoading({
  333. title: "审核中"
  334. })
  335. that.$api.doRequest('post', '/newWorkflow/api/handle', {
  336. approved: true,
  337. taskId: that.dataList.taskId,
  338. auditMind: that.auditMind,
  339. needReapply: false
  340. }).then(res => {
  341. uni.hideLoading()
  342. if (res.data.code == 200) {
  343. that.$api.msg('审核成功!')
  344. setTimeout(function() {
  345. uni.navigateBack();
  346. }, 2000);
  347. } else {
  348. that.$api.msg('审核失败!')
  349. }
  350. }).catch(res => {
  351. uni.hideLoading()
  352. if (res.message) {
  353. uni.showToast({
  354. title: res.message,
  355. icon: 'none',
  356. duration: 2000
  357. })
  358. } else {
  359. uni.showToast({
  360. title: "系统异常,请联系管理员",
  361. icon: 'none',
  362. duration: 2000
  363. })
  364. }
  365. })
  366. }
  367. })
  368. }
  369. },
  370. //驳回
  371. rejectSubmit() {
  372. if (!this.auditMind) {
  373. this.$api.msg('驳回原因不能为空!')
  374. } else {
  375. this.show = false
  376. let that = this
  377. uni.showModal({
  378. content: "是否确定驳回?",
  379. showCancel: true,
  380. confirmText: '确定',
  381. success: function(res) {
  382. uni.showLoading({
  383. title: "审核中"
  384. })
  385. that.$api.doRequest('post', '/newWorkflow/api/handle', {
  386. approved: false,
  387. taskId: that.dataList.taskId,
  388. auditMind: that.auditMind,
  389. needReapply: true
  390. }).then(res => {
  391. if (res.data.code == 200) {
  392. this.$api.msg('驳回成功!')
  393. setTimeout(function() {
  394. uni.navigateBack();
  395. }, 2000);
  396. uni.hideLoading()
  397. } else {
  398. this.$api.msg('驳回失败!')
  399. }
  400. })
  401. }
  402. })
  403. }
  404. },
  405. }
  406. }
  407. </script>
  408. <style scoped lang="scss">
  409. .warp {
  410. margin: 10rpx;
  411. padding: 20rpx 20rpx 240rpx 20rpx;
  412. }
  413. .content1 {
  414. margin: 10rpx;
  415. .title {
  416. height: 70rpx;
  417. line-height: 60rpx;
  418. font-size: 32rpx;
  419. font-weight: 600;
  420. color: #333333;
  421. border-bottom: 2rpx solid #EEEEEE;
  422. }
  423. }
  424. .uForm {
  425. padding: 0 40rpx;
  426. }
  427. .u-form-item {
  428. padding: 0;
  429. }
  430. .bottom-btn {
  431. width: 100%;
  432. position: fixed;
  433. bottom: 0;
  434. display: flex;
  435. z-index: 2;
  436. left: 0;
  437. background-color: #f8f8f8;
  438. flex-direction: column;
  439. .btn1,
  440. .btn2 {
  441. width: 100%;
  442. margin-bottom: 26rpx;
  443. border-radius: 90rpx;
  444. }
  445. .btn1 {
  446. background: white;
  447. color: #00C265;
  448. }
  449. }
  450. .submit {
  451. width: 50%;
  452. background: #22C572;
  453. border-radius: 10rpx;
  454. }
  455. .part2 {
  456. margin-top: 20rpx;
  457. }
  458. .textarea {
  459. border: 1px solid #ccc;
  460. border-radius: 10rpx;
  461. background-color: #F9F9FA;
  462. height: 100px;
  463. }
  464. .row {
  465. display: flex;
  466. justify-content: space-between;
  467. // border-bottom: 1px solid #EEEEEE;
  468. padding: 21rpx 0;
  469. .right,
  470. input {
  471. font-size: 28rpx;
  472. color: #333333;
  473. }
  474. }
  475. //弹出框
  476. // .popup {
  477. // padding: 30rpx;
  478. // border-radius: 20rpx;
  479. // }
  480. // .rejectInfoCss {
  481. // border: 1px solid #ccc;
  482. // border-radius: 10rpx;
  483. // background-color: #F9F9FA;
  484. // margin: 30rpx;
  485. // overflow-y: auto;
  486. // // height: 300rpx;
  487. // background: red;
  488. // }
  489. .uForm_item {
  490. padding: 20rpx;
  491. background-color: #FFFFFF;
  492. margin: 20rpx 0rpx 0rpx 0rpx;
  493. border-radius: 20rpx;
  494. width: 100%;
  495. }
  496. .rejectText {
  497. text-align: center;
  498. }
  499. .topInfo {
  500. height: 210rpx;
  501. background: linear-gradient(270deg, #22C572 0%, #34DE8A 100%);
  502. padding: 30rpx;
  503. .topInfo-item {
  504. height: 150rpx;
  505. background-color: #FFFFFF;
  506. border-radius: 20rpx;
  507. padding: 40rpx;
  508. .logo {
  509. width: 40rpx;
  510. height: 40rpx;
  511. margin-top: 8rpx;
  512. }
  513. .infoText {
  514. font-size: 36rpx;
  515. font-weight: 600;
  516. margin-left: 20rpx;
  517. }
  518. .infoData {
  519. color: #878C9C;
  520. font-size: 26rpx;
  521. margin-top: 10rpx;
  522. }
  523. }
  524. }
  525. .shade1 {
  526. position: fixed;
  527. top: 0;
  528. left: 0;
  529. height: 100%;
  530. width: 100%;
  531. background: rgba(0, 0, 0, 0.4);
  532. z-index: 3;
  533. .wrap1 {
  534. position: absolute;
  535. left: 0;
  536. top: 0;
  537. right: 0;
  538. bottom: 0;
  539. margin: auto;
  540. background: #fff;
  541. width: calc(100% - 198rpx);
  542. height: 355px;
  543. border-radius: 20rpx;
  544. .alert-top1 {
  545. padding: 33rpx;
  546. display: flex;
  547. justify-content: center;
  548. align-items: center;
  549. position: relative;
  550. }
  551. .title1 {
  552. font-size: 32rpx;
  553. font-weight: 600;
  554. color: #333333;
  555. }
  556. .close1 {
  557. position: absolute;
  558. right: 33rpx;
  559. }
  560. }
  561. .u-textarea-style1 {
  562. margin: 20rpx;
  563. background: #F9F9FA;
  564. border-radius: 10px;
  565. border: 1px solid #EEEEEE;
  566. padding: 10rpx 20rpx;
  567. height: 230px;
  568. .right-bottom1 {
  569. position: absolute;
  570. right: 20rpx;
  571. bottom: 80px;
  572. color: #AFB3BF;
  573. }
  574. }
  575. .cancel1 {
  576. position: absolute;
  577. display: inline-block;
  578. width: 50%;
  579. text-align: center;
  580. bottom: 0;
  581. padding: 10px;
  582. border-top: 1px solid #eee;
  583. font-size: 34rpx;
  584. }
  585. .confirm1 {
  586. position: absolute;
  587. display: inline-block;
  588. width: 50%;
  589. text-align: center;
  590. bottom: 0;
  591. padding: 10px;
  592. border-top: 1px solid #eee;
  593. font-size: 34rpx;
  594. }
  595. .cancel1 {
  596. left: 0;
  597. border-right: 1px solid #eee;
  598. color: #ff0000;
  599. }
  600. .confirm1 {
  601. right: 0;
  602. color: #22C572;
  603. }
  604. .bottom-btn1 {
  605. width: 100%;
  606. // position: fixed;
  607. bottom: 0;
  608. display: flex;
  609. z-index: 2;
  610. left: 0;
  611. background-color: #f8f8f8;
  612. flex-direction: column;
  613. .btn1,
  614. .btn2 {
  615. width: 100%;
  616. margin-bottom: 26rpx;
  617. border-radius: 90rpx;
  618. }
  619. .btn1 {
  620. background: white;
  621. color: #00C265;
  622. }
  623. }
  624. }
  625. .content3 {
  626. background: white;
  627. margin: 20rpx 0;
  628. border-radius: 20rpx;
  629. padding: 20rpx;
  630. .row {
  631. display: flex;
  632. .left {
  633. display: flex;
  634. align-items: center;
  635. .item1 {
  636. position: relative;
  637. .item-content {
  638. background: #617AE0;
  639. width: 44px;
  640. height: 44px;
  641. border-radius: 22px;
  642. line-height: 44px;
  643. text-align: center;
  644. font-size: 15px;
  645. color: #fff;
  646. }
  647. .status {
  648. position: absolute;
  649. border-radius: 50%;
  650. padding: 0px 2px;
  651. right: -3px;
  652. bottom: -3px;
  653. background: #fff;
  654. }
  655. .status.success {
  656. border: 1px solid rgb(60, 156, 255);
  657. }
  658. .status.error {
  659. border: 1px solid rgb(245, 108, 108);
  660. }
  661. .status.question {
  662. border: 1px solid #f9ae3d;
  663. }
  664. }
  665. }
  666. .right {
  667. width: 80%;
  668. // color: #B0B1B5;
  669. margin-top: 10px;
  670. .right-content {
  671. background: #F2F3F7;
  672. margin-left: 10px;
  673. margin-top: 10px;
  674. padding: 10px;
  675. border-radius: 5px;
  676. color: #B0B1B5;
  677. }
  678. .right-item {
  679. display: flex;
  680. justify-content: space-between;
  681. .time {
  682. color: #999;
  683. }
  684. .item2 {
  685. margin-left: 20rpx;
  686. margin-top: -7px;
  687. .name {
  688. font-size: 28rpx;
  689. font-weight: 800;
  690. }
  691. .status.success {
  692. color: #6CC48C;
  693. }
  694. .status.error {
  695. color: rgb(245, 108, 108);
  696. }
  697. .status.question {
  698. color: #f9ae3d;
  699. }
  700. }
  701. }
  702. }
  703. }
  704. .row2 {
  705. display: flex;
  706. .item-content {
  707. background: #22C572;
  708. width: 30px;
  709. height: 30px;
  710. border-radius: 50%;
  711. line-height: 30px;
  712. text-align: center;
  713. font-size: 12px;
  714. color: #fff;
  715. padding: 0 2px;
  716. margin: 0 auto;
  717. }
  718. .status {
  719. position: absolute;
  720. top: 0;
  721. right: 0;
  722. }
  723. }
  724. .row-line {
  725. width: 1px;
  726. height: 40rpx;
  727. background: #F2F2F2;
  728. margin: 10rpx 50rpx;
  729. }
  730. .audit {
  731. margin-top: 20rpx;
  732. }
  733. }
  734. .titlez {
  735. font-size: 17px;
  736. font-weight: 700;
  737. height: 35px;
  738. border-bottom: 1px solid #EEEEEE;
  739. }
  740. .rowz{
  741. display: flex;
  742. justify-content: space-between;
  743. .right,
  744. input {
  745. font-size: 28rpx;
  746. color: #333333;
  747. }
  748. }
  749. /deep/.u-input__textarea {
  750. height: 200rpx !important;
  751. }
  752. </style>