freight_settlement_detailscopy.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845
  1. <template>
  2. <view class="container">
  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="" v-if="dataobj.approveStatus == '已驳回'"
  8. style="height: 40rpx;"></image><!-- 驳回 -->
  9. <image src="../../../static/img/tongguo.png" mode="" v-if="dataobj.approveStatus == '已通过'"
  10. style="height: 40rpx;"></image><!-- 通过 -->
  11. <image src="../../../static/img/daishenhe.png" mode=""
  12. v-if="dataobj.approveStatus == '待决策人审核'|| dataobj.approveStatus == '待财务审核'"
  13. style="height: 40rpx;"></image><!-- 待审核 -->
  14. </view>
  15. <view class="infoText">{{dataobj.approveStatus?dataobj.approveStatus:dataobj.status}}</view>
  16. </view>
  17. <view class="infoData">{{dataobj.updateDate}}</view>
  18. </view>
  19. </view>
  20. <view class="content">
  21. <view class="top">
  22. <view v-if='dataobj.contractFlag=="1"'>合同编号</view>
  23. <view v-if='dataobj.contractFlag=="0"'>移库编号</view>
  24. <view>{{dataobj.contractNo}}</view>
  25. </view>
  26. <view class="person-info">
  27. <view style='display:flex;align-items: center;' class="top1">
  28. <view>收款方</view>
  29. <view class="top_info">{{dataobj.payee}}</view>
  30. </view>
  31. <view style='display:flex;align-items: center;' class="top1">
  32. <view>账号</view>
  33. <view class="top_info">{{dataobj.accountNumber}}</view>
  34. </view>
  35. <view style='display:flex;align-items: center;' class="top1">
  36. <view>开户行</view>
  37. <view class="top_info">{{dataobj.bank}}</view>
  38. </view>
  39. <view style='display:flex;align-items: center;' class="top1">
  40. <view>开户支行</view>
  41. <view class="top_info">{{dataobj.bankBranch}}</view>
  42. </view>
  43. <view style='display:flex;align-items: center;' class="top1">
  44. <view>备注</view>
  45. <view class="top_info">{{dataobj.remark}}</view>
  46. </view>
  47. <view style='display:flex;align-items: center;' class="top1">
  48. <view>合计(元)</view>
  49. <view class="top_info">{{num}}</view>
  50. </view>
  51. <view style='display:flex;align-items: center;' class="top1">
  52. <view>附件</view>
  53. <view>
  54. <view v-if='imglist2.length>0'>
  55. <view style="margin-top: 20rpx;" v-for='item in imglist2'>
  56. <view class="img_item">
  57. <view class="" style="width: 16%;">
  58. <image v-if="item.type == 'pdf'" style="width: 40px; height: 40px;"
  59. src="../../../static/img/pdf3.png" mode=""></image>
  60. <image v-else-if="item.type == 'xls'||item.type == 'xlsx'"
  61. style="width: 40px; height: 40px;" src="../../../static/img/excle3.png"
  62. mode=""></image>
  63. <image v-else-if="item.type == 'doc'||item.type == 'docx'"
  64. style="width: 40px; height: 40px;" src="../../../static/img/word3.png"
  65. mode=""></image>
  66. <image v-else style="width: 40px; height: 40px;" :src="item.appendixPath"
  67. mode="">
  68. </image>
  69. </view>
  70. <view class="" style="width: 70%;">
  71. <view class="char_css">{{item.appendixName}}</view>
  72. <u-line-progress v-if='item.progressstatus' :striped="true" :percent="item.progress" :striped-active="true"></u-line-progress>
  73. <view class="">{{item.appendixSize}}</view>
  74. </view>
  75. <view class="img_dowload" @click="openDocument(item)">下载</view>
  76. </view>
  77. </view>
  78. </view>
  79. </view>
  80. </view>
  81. </view>
  82. <view class="car-container">
  83. <view v-for="item1 in list" class="car-container-item">
  84. <view style='display:flex;align-items: center;' class="top1">
  85. <view>运输编号</view>
  86. <view class="top_info">{{item1.taskNo}}</view>
  87. </view>
  88. <view style='display:flex;align-items: center;' class="top1">
  89. <view>发货地</view>
  90. <view class="top_info">
  91. {{item1.startPrivate}}{{item1.startCity}}{{item1.startArea}}{{item1.startDetailedAddress}}
  92. </view>
  93. </view>
  94. <view style='display:flex;align-items: center;' class="top1">
  95. <view>收货地</view>
  96. <view class="top_info">
  97. {{item1.endPrivate}}{{item1.endCity}}{{item1.endArea}}{{item1.endDetailedAddress}}
  98. </view>
  99. </view>
  100. <view v-for="item in item1.tranSettlementReportList" class="car-container-item">
  101. <view class="car-num title" v-if="item.tranTypeKey== '1'">{{item.carNo}} ({{item.tranCarNo}})
  102. </view>
  103. <view class="car-num title" v-if="item.tranTypeKey== '2'">车厢号{{item.boxNo}}</view>
  104. <view class="car-num title" v-if="item.tranTypeKey== '3'&&item.shipType== '散船'">
  105. 仓位号{{item.boxNo}}
  106. </view>
  107. <view class="car-num title" v-if="item.tranTypeKey== '3'&&item.shipType== '集装箱'">
  108. 箱号{{item.boxNo}}
  109. </view>
  110. <view class="car-type-item">
  111. <view class="left">装</view>
  112. <view class="textInfo">{{item.loadingWeight}}吨</view>
  113. </view>
  114. <view class="car-type-item">
  115. <view class="center">卸</view>
  116. <view class="textInfo">{{item.unloadingWeight}}吨</view>
  117. </view>
  118. <view class="car-type-item">
  119. <view class="right">结</view>
  120. <view class="textInfo">{{item.settlementWeight}}吨</view>
  121. </view>
  122. <view class="car-type-item">
  123. <view class="left">预</view>
  124. <view class="textInfo">{{item.transportPrice}}元/吨</view>
  125. </view>
  126. <view class="car-type-item">
  127. <view class="center">算</view>
  128. <view class="textInfo">{{item.settlementPrice}}元/吨</view>
  129. </view>
  130. <view class="car-type-item">
  131. <view v-if='item.deductionAmount>=0' class="right">扣</view>
  132. <view v-if='item.deductionAmount<0' class="right">加</view>
  133. <view v-if='item.deductionAmount<0' class="textInfo">
  134. {{item.deductionAmount?-item.deductionAmount:0}}元
  135. </view>
  136. <view v-if='item.deductionAmount>=0' class="textInfo">
  137. {{item.deductionAmount?-item.deductionAmount:0}}元
  138. </view>
  139. </view>
  140. <view class="car-type-item">
  141. <view class="left">服</view>
  142. <view class="textInfo">{{item.serviceCharge}}元</view>
  143. </view>
  144. <view class="car-type-item">
  145. <view class="center">税</view>
  146. <view class="textInfo">{{item.taxPoint}}元</view>
  147. </view>
  148. <view class="car-type-item">
  149. <view class="right">实</view>
  150. <view class="textInfo">{{item.amountActuallyPaid}}元</view>
  151. </view>
  152. <view class="car-type-item">
  153. <view class="left">合</view>
  154. <view class="textInfo">{{item.totalPayable}}元</view>
  155. </view>
  156. </view>
  157. </view>
  158. </view>
  159. </view>
  160. <u-form ref="uForm">
  161. <view class="form_top">流程</view>
  162. <view class="content2">
  163. <view v-for="(item,index) in auditList" :key='index' class="audit">
  164. <view class="row" v-if='item.desc!="_PLACEHOLDER_"'>
  165. <view class="row-left">
  166. <view class="item1">
  167. <view class="item-content">{{item.operatorTitle}}</view>
  168. <view v-if="item.status=='success'" class='status success'>
  169. <u-icon name="checkmark" color="#2979ff" size="24"></u-icon>
  170. </view>
  171. <view v-if="item.status=='error'" class='status error'>
  172. <u-icon name="close" color="rgb(245, 108, 108)" size="24"></u-icon>
  173. </view>
  174. <view v-if="item.status=='question'" class='status question'>
  175. <u-icon name="question" color="#f9ae3d" size="24"></u-icon>
  176. </view>
  177. </view>
  178. </view>
  179. <view class="row-right">
  180. <view class="right-item">
  181. <view class="item2">
  182. <view class="name">{{item.desc}}
  183. </view>
  184. <!-- <view class='time'>{{item.updateDate}}</view> -->
  185. <view v-if="item.status=='success'" class="status success">
  186. {{item.commonStaffs1?item.staffscontent:item.operatorName}}<text
  187. v-if='!item.commonStaffs1&&index!=0'>已审核</text>
  188. </view>
  189. <view v-if="item.status=='error'" class="status error">
  190. {{item.commonStaffs1?item.staffscontent:item.operatorName}}<text
  191. v-if='!item.commonStaffs1'>{{item.workflowHistoricTasks ? "已驳回":''}}</text>
  192. </view>
  193. <view v-if="item.status=='question'" class="status question">
  194. {{item.commonStaffs1?item.staffscontent:''}}<text
  195. v-if='!item.commonStaffs1'>未审核</text>
  196. </view>
  197. <!-- <view class="status success">吕波(已审核)</view> -->
  198. </view>
  199. <view v-if='index==0||item.workflowHistoricTasks&&item.workflowHistoricTasks.length>0'
  200. class='time'>
  201. {{item.updateDate}}
  202. </view>
  203. </view>
  204. <view v-if='item.auditMind' class="right-content">
  205. {{item.auditMind}}
  206. </view>
  207. </view>
  208. <view v-if='item.commonStaffs1' class="right">
  209. <u-icon @click='showcontent(item)' :name="item.showflow?'arrow-up':'arrow-down'" size="28">
  210. </u-icon>
  211. </view>
  212. </view>
  213. <view v-if='item.showflow' style='padding:10px 0 0 50px;'>
  214. <view class='row2'>
  215. <view v-for='item1 in item.commonStaffs1' style='margin:5px;text-align:center;'>
  216. <view class="item-content">
  217. <u-icon v-if='item1.status' name="checkmark" color="#fff" size="14"></u-icon>
  218. <u-icon v-if='!item1.status' name="question" color="#f9ae3d" size="14"></u-icon>
  219. </view>
  220. <view class="name">{{item1.staffName}}</view>
  221. </view>
  222. </view>
  223. </view>
  224. <view class="row-line" v-if="index!= auditList.length - 1 &&item.desc!='_PLACEHOLDER_'"></view>
  225. </view>
  226. </view>
  227. </u-form>
  228. <view v-if='show' class="shade">
  229. <view class="wrap">
  230. <view class="alert-top">
  231. <view class="title">
  232. {{title}}
  233. </view>
  234. <u-icon name="close" class="close" color="#8890B1" @click="close()"></u-icon>
  235. </view>
  236. <view class="u-textarea-style">
  237. <view class="right-bottom">
  238. {{auditMind.length}}/1000个字
  239. </view>
  240. <u-input class="" v-model='auditMind' placeholder="请在此输入审核意见" type="textarea" height="414"
  241. maxlength="1000" />
  242. </view>
  243. <view @click='close()' class="cancel">取消</view>
  244. <view @click='passSubmit()' class="confirm">确定</view>
  245. </view>
  246. </view>
  247. <u-toast ref="uToast" />
  248. <view style='padding:10px;' class='flex bottom-btn'>
  249. <u-button @click="fanHui" type="success" class="btn1" hover-class='none'>返回</u-button>
  250. </view>
  251. </view>
  252. </template>
  253. <script>
  254. export default {
  255. data() {
  256. return {
  257. currentPage: 1,
  258. pageSize: 10,
  259. num: 0,
  260. list: {
  261. approveStatus: "",
  262. },
  263. show: false,
  264. auditList: [],
  265. dataobj: {},
  266. customerName: "", //客户
  267. shippingAddress: "", //发货地址
  268. receivingAddress: "", //收货地址
  269. imglist: [], //存
  270. imglist2: [], //展示
  271. }
  272. },
  273. onLoad(options) {
  274. this.id = options.id
  275. this.getList()
  276. },
  277. watch: {
  278. imglist: {
  279. handler: function() {
  280. this.$api.doRequest('get', 'appendix/query/getFileList', {
  281. appendixIds: this.imglist.toString()
  282. }).then(res => {
  283. this.imglist2 = res.data.data
  284. for (let i = 0; i < this.imglist2.length; i++) {
  285. this.imglist2[i].progressstatus=false
  286. this.imglist2[i].progress=0
  287. if (this.imglist2[i].appendixName) {
  288. this.imglist2[i].type = this.imglist2[i].appendixName.split(".")[1]
  289. }
  290. }
  291. })
  292. },
  293. deep: true
  294. }
  295. },
  296. methods: {
  297. openDocument(item) {
  298. this.$set(item,'progressstatus',true)
  299. this.$forceUpdate()
  300. const downloadTask =uni.downloadFile({
  301. url: item.appendixPath,
  302. success: function(res) {
  303. var filePath = res.tempFilePath;
  304. if(item.type=='pdf'||item.type == 'xls'||item.type == 'xlsx'||item.type == 'doc'||item.type == 'docx'){
  305. uni.openDocument({
  306. filePath: filePath,
  307. showMenu: true,
  308. success: function(res) {
  309. console.log('打开文档成功');
  310. }
  311. });
  312. }else{
  313. uni.previewImage({
  314. current: 0, //预览图片的下标
  315. urls: [item.appendixPath]
  316. })
  317. }
  318. }
  319. });
  320. downloadTask.onProgressUpdate((res) => {
  321. this.$set(item,'progress',res.progress)
  322. this.$forceUpdate()
  323. console.log('下载进度' + res.progress);
  324. console.log('已经下载的数据长度' + res.totalBytesWritten);
  325. console.log('预期需要下载的数据总长度' + res.totalBytesExpectedToWrite);
  326. // 满足测试条件,取消下载任务。
  327. // if (res.progress > 50) {
  328. // downloadTask.abort();
  329. // }
  330. });
  331. },
  332. getList() {
  333. var that = this
  334. this.$api.doRequest('get', '/expenseInfo/ExpenseInfo', {
  335. id: this.id
  336. }).then(res => {
  337. if (res.data.code == 200) {
  338. this.dataobj = res.data.data
  339. if(this.dataobj.freightAddressUrl){
  340. this.imglist = this.dataobj.freightAddressUrl.split(',')
  341. }
  342. if (res.data.data.tranTaskInfoList.length > 0) {
  343. this.num = 0
  344. for (var i = 0; i < res.data.data.tranTaskInfoList.length; i++) {
  345. if (res.data.data.tranTaskInfoList[i].tranSettlementReportList) {
  346. var data = res.data.data.tranTaskInfoList[i].tranSettlementReportList
  347. for (var q = 0; q < data.length; q++) {
  348. if (data[q].totalPayable) {
  349. this.num += data[q].totalPayable
  350. }
  351. }
  352. }
  353. }
  354. }
  355. this.num = this.num.toFixed(2)
  356. this.list = res.data.data.tranTaskInfoList
  357. // console.log(this.list, 124)
  358. // 查流程
  359. this.$api.doRequest('get', '/workflow/query/workflowDefinitions', {
  360. businessCode: 'FEIYONGYUNFEI-APPROVE',
  361. tmpCompId: uni.getStorageSync('pcUserInfo').compId
  362. }).then(res1 => {
  363. this.$api.doRequest('get', '/commonUser/getHis', {
  364. workflowId: res1.data.data[0].id,
  365. businessKey: this.id,
  366. // branch:that.list[0].jointVentureParties?that.list[0].jointVentureParties:'zt'
  367. }).then(response => {
  368. uni.hideLoading()
  369. for (let i = 0; i < response.data.data.length; i++) {
  370. this.$set(response.data.data[i], 'status', 'question')
  371. console.log(response.data.data[i].workflowHistoricTasks, i)
  372. if (response.data.data[i].commonStaffs) {
  373. response.data.data[i].showflow = false
  374. response.data.data[i].operatorTitle = response.data.data[i]
  375. .desc.substring(0, 2)
  376. response.data.data[i].operatorName = response.data.data[i]
  377. .desc
  378. response.data.data[i].staffscontent = '共' + response.data
  379. .data[i].commonStaffs.length + '人,当前审核' + response.data
  380. .data[i].workflowHistoricTasks.length + '人'
  381. if (response.data.data[i].workflowHistoricTasks && response
  382. .data.data[i].workflowHistoricTasks.length > 0) {
  383. if (response.data.data[i].workflowHistoricTasks
  384. .length != response.data.data[i].commonStaffs
  385. .length) {
  386. // response.data.data[i].status='question'
  387. this.$set(response.data.data[i], 'status',
  388. 'question')
  389. } else {
  390. this.$set(response.data.data[i], 'status',
  391. 'success')
  392. // response.data.data[i].status='success'
  393. }
  394. response.data.data[i].workflowlen = response.data.data[
  395. i].workflowHistoricTasks.length
  396. var workflowdata = response.data.data[i]
  397. .workflowHistoricTasks
  398. var staffsdata = response.data.data[i].commonStaffs
  399. for (let q = 0; q < staffsdata.length; q++) {
  400. staffsdata[q].status = false
  401. staffsdata[q].staffTitle = staffsdata[q].staffName
  402. for (let k = 0; k < workflowdata.length; k++) {
  403. if (staffsdata[q].staffId == workflowdata[k]
  404. .operatorId) {
  405. staffsdata[q].status = true
  406. }
  407. }
  408. }
  409. }
  410. response.data.data[i].commonStaffs1 = response.data.data[i]
  411. .commonStaffs
  412. } else {
  413. if (response.data.data[i].workflowHistoricTasks && response
  414. .data.data[i].workflowHistoricTasks.length > 0) {
  415. var len = response.data.data[i].workflowHistoricTasks
  416. .length - 1
  417. if (response.data.data[i].workflowHistoricTasks[len]
  418. .approved) {
  419. this.$set(response.data.data[i], 'status',
  420. 'success')
  421. } else {
  422. this.$set(response.data.data[i], 'status', 'error')
  423. }
  424. response.data.data[i].operatorTitle = response.data
  425. .data[i].workflowHistoricTasks[len].operatorName
  426. .substring(response.data.data[i]
  427. .workflowHistoricTasks[0].operatorName.length -
  428. 2)
  429. response.data.data[i].operatorName = response.data
  430. .data[i].workflowHistoricTasks[len].operatorName
  431. var time = new Date(response.data.data[i]
  432. .workflowHistoricTasks[len].claimTime)
  433. .getTime()
  434. response.data.data[i].updateDate = this.$u.timeFormat(
  435. time, 'mm.dd hh:MM')
  436. response.data.data[i].auditMind = response.data.data[i]
  437. .workflowHistoricTasks[len].auditMind
  438. } else {
  439. this.$set(response.data.data[i], 'status', 'question')
  440. // response.data.data[i].status='question'
  441. if (response.data.data[i].desc == '总经理助理审核') {
  442. response.data.data[i].operatorTitle = '总助'
  443. } else if (response.data.data[i].desc == '杜大光审核') {
  444. response.data.data[i].operatorTitle = '大光'
  445. } else {
  446. response.data.data[i].operatorTitle = response.data
  447. .data[i].desc.substring(0, 2)
  448. }
  449. response.data.data[i].operatorName = response.data
  450. .data[i].desc
  451. var time1 = new Date(response.data.data[i].updateDate)
  452. .getTime()
  453. response.data.data[i].updateDate = this.$u.timeFormat(
  454. time1, 'mm.dd hh:MM')
  455. response.data.data[i].auditMind = ''
  456. }
  457. }
  458. }
  459. console.log(response.data.data)
  460. for (let i = 0; i < response.data.data.length; i++) {
  461. if (response.data.data[i].status == "error") {
  462. this.auditCheck = "error"
  463. break;
  464. } else if (response.data.data[i].status == "question") {
  465. this.auditCheck = "question"
  466. break;
  467. } else {
  468. this.auditCheck = "success"
  469. }
  470. }
  471. this.auditList = response.data.data
  472. var time2 = new Date(this.dataobj.createDate).getTime()
  473. var time3 = this.$u.timeFormat(time2, 'mm.dd hh:MM')
  474. this.auditList.unshift({
  475. operatorTitle: this.dataobj.creater.substring(0, 2),
  476. operatorName: this.dataobj.creater,
  477. updateDate: time3,
  478. auditMind: '',
  479. desc: '发起申请',
  480. showflow: false,
  481. commonStaffs1: null,
  482. commonStaffs: null,
  483. workflowHistoricTasks: [],
  484. status: 'success'
  485. })
  486. })
  487. })
  488. }
  489. })
  490. // this.$api.doRequest('get', '/tranSettlementReport/getInfo', {
  491. // id: this.id
  492. // }).then(res => {
  493. // this.contractNo = res.data.data.contractNo
  494. // this.carId = res.data.data.carId
  495. // this.customerName = res.data.data.customer
  496. // this.shippingAddress = res.data.data.send
  497. // this.receivingAddress = res.data.data.receive
  498. // if (res.data.code == 200) {
  499. // this.$api.doRequest('get', '/tranSettlementReport/getTranSettlementReport', {
  500. // compId: "2710b21efc1e4393930c5dc800010dc4",
  501. // currentPage: this.currentPage,
  502. // pageSize: this.pageSize,
  503. // contractNo: this.contractNo,
  504. // carId: this.carId,
  505. // }).then(res => {
  506. // if (res.data.code == 200) {
  507. // this.list = res.data.data.records[0]
  508. // console.log(this.list, 124)
  509. // }
  510. // })
  511. // }
  512. // })
  513. },
  514. fanHui() {
  515. uni.navigateBack()
  516. }
  517. }
  518. }
  519. </script>
  520. <style scoped lang="scss">
  521. .container {
  522. margin: 10rpx;
  523. padding: 20rpx 20rpx 230rpx 20rpx;
  524. }
  525. .content {
  526. .top {
  527. display: flex;
  528. justify-content: space-between;
  529. border-radius: 20rpx;
  530. background: white;
  531. padding: 30rpx 20rpx;
  532. font-size: 36rpx;
  533. margin-top: 30rpx;
  534. }
  535. .top1 {
  536. // display: flex;
  537. justify-content: space-between;
  538. border-radius: 20rpx;
  539. background: white;
  540. padding: 10rpx 20rpx;
  541. font-size: 30rpx;
  542. margin-top: 20rpx;
  543. }
  544. .title {
  545. font-size: 28rpx;
  546. font-weight: 600;
  547. color: #333333;
  548. text-align: left;
  549. margin-bottom: 30rpx;
  550. }
  551. .car-container {
  552. padding: 10rpx 20rpx;
  553. border-radius: 20rpx;
  554. background: white;
  555. margin: 30rpx 0;
  556. // border-bottom: 2rpx solid #EEEEEE;
  557. }
  558. .car-type-item {
  559. display: inline-flex;
  560. // justify-content: center;
  561. width: 33.33%;
  562. margin-bottom: 40rpx;
  563. }
  564. .title {
  565. font-size: 36rpx;
  566. }
  567. }
  568. .person-info {
  569. background: white;
  570. padding: 20rpx 0;
  571. border-radius: 20rpx;
  572. // margin-bottom: 50rpx;
  573. margin: 20rpx 0;
  574. .tit {
  575. font-size: 36rpx;
  576. }
  577. }
  578. .bottom-btn {
  579. width: 100%;
  580. position: fixed;
  581. bottom: 0;
  582. display: flex;
  583. z-index: 2;
  584. left: 0;
  585. background-color: #f8f8f8;
  586. flex-direction: column;
  587. .btn1,
  588. .btn2 {
  589. width: 100%;
  590. margin-bottom: 26rpx;
  591. border-radius: 90rpx;
  592. }
  593. .btn1 {
  594. background: white;
  595. color: #00C265;
  596. }
  597. }
  598. .submit {
  599. width: 40%;
  600. background: #22C572;
  601. border-radius: 10rpx;
  602. }
  603. .left {
  604. background: #FEECE6;
  605. color: #FE6430;
  606. }
  607. .center {
  608. background: #EBEEFA;
  609. color: #5C76DF;
  610. }
  611. .right {
  612. background: #E9F8F0;
  613. color: #22C572;
  614. }
  615. .left,
  616. .center,
  617. .right {
  618. width: 50rpx;
  619. height: 50rpx;
  620. text-align: center;
  621. line-height: 50rpx;
  622. border-radius: 10rpx;
  623. }
  624. .textInfo {
  625. margin: 6rpx 0 0 10rpx;
  626. }
  627. .topInfo {
  628. height: 210rpx;
  629. background: linear-gradient(270deg, #22C572 0%, #34DE8A 100%);
  630. padding: 30rpx;
  631. .topInfo-item {
  632. height: 150rpx;
  633. background-color: #FFFFFF;
  634. border-radius: 20rpx;
  635. padding: 40rpx;
  636. .logo {
  637. width: 40rpx;
  638. height: 40rpx;
  639. margin-top: 8rpx;
  640. }
  641. .infoText {
  642. font-size: 36rpx;
  643. font-weight: 600;
  644. margin-left: 20rpx;
  645. }
  646. .infoData {
  647. color: #878C9C;
  648. font-size: 26rpx;
  649. margin-top: 10rpx;
  650. }
  651. }
  652. }
  653. .rejectInfoCss {
  654. border: 1px solid #ccc;
  655. border-radius: 10rpx;
  656. background-color: #F9F9FA;
  657. // height: 100px;
  658. overflow-y: auto;
  659. margin: 30rpx;
  660. }
  661. .rejectText {
  662. text-align: center;
  663. }
  664. /deep/.u-input__textarea {
  665. height: 300rpx !important;
  666. }
  667. .content2 {
  668. background: white;
  669. margin: 20rpx 0;
  670. border-radius: 20rpx;
  671. padding: 20rpx;
  672. .row {
  673. display: flex;
  674. .row-left {
  675. display: flex;
  676. align-items: center;
  677. .item1 {
  678. position: relative;
  679. .item-content {
  680. background: #617AE0;
  681. width: 44px;
  682. height: 44px;
  683. border-radius: 22px;
  684. line-height: 44px;
  685. text-align: center;
  686. font-size: 15px;
  687. color: #fff;
  688. }
  689. .status {
  690. position: absolute;
  691. border-radius: 50%;
  692. padding: 0px 2px;
  693. right: -3px;
  694. bottom: -3px;
  695. background: #fff;
  696. }
  697. .status.success {
  698. border: 1px solid rgb(60, 156, 255);
  699. }
  700. .status.error {
  701. border: 1px solid rgb(245, 108, 108);
  702. }
  703. .status.question {
  704. border: 1px solid #f9ae3d;
  705. }
  706. }
  707. }
  708. .row-right {
  709. width: 80%;
  710. // color: #B0B1B5;
  711. margin-top: 10px;
  712. .right-content {
  713. background: #F2F3F7;
  714. margin-left: 10px;
  715. margin-top: 10px;
  716. padding: 10px;
  717. border-radius: 5px;
  718. color: #B0B1B5;
  719. }
  720. .right-item {
  721. display: flex;
  722. justify-content: space-between;
  723. .time {
  724. color: #999;
  725. }
  726. .item2 {
  727. margin-left: 20rpx;
  728. margin-top: -7px;
  729. .name {
  730. font-size: 28rpx;
  731. font-weight: 800;
  732. margin-bottom: 4px;
  733. }
  734. .status.success {
  735. color: #6CC48C;
  736. }
  737. .status.error {
  738. color: rgb(245, 108, 108);
  739. }
  740. .status.question {
  741. color: #f9ae3d;
  742. }
  743. }
  744. }
  745. }
  746. }
  747. .row2 {
  748. display: flex;
  749. .item-content {
  750. background: #22C572;
  751. width: 30px;
  752. height: 30px;
  753. border-radius: 50%;
  754. line-height: 30px;
  755. text-align: center;
  756. font-size: 12px;
  757. color: #fff;
  758. padding: 0 2px;
  759. margin: 0 auto;
  760. }
  761. .status {
  762. position: absolute;
  763. top: 0;
  764. right: 0;
  765. }
  766. }
  767. .row-line {
  768. width: 1px;
  769. height: 30px;
  770. background: #F2F2F2;
  771. margin: 10rpx 50rpx;
  772. }
  773. .audit {
  774. margin-top: 20rpx;
  775. }
  776. }
  777. .top_info {
  778. margin: 10rpx 0;
  779. width: 70%;
  780. text-align: right;
  781. }
  782. .img_dowload {
  783. width: 14%;
  784. color: #22C572;
  785. text-align: right;
  786. }
  787. </style>