warehouse_warrant_detail.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940
  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="" v-if="status == '已驳回'"
  8. style="height: 40rpx;"></image><!-- 驳回 -->
  9. <image src="../../../static/img/tongguo.png" mode="" v-if="status == '已通过'"
  10. style="height: 40rpx;"></image><!-- 通过 -->
  11. <!-- v-if="status == '审核中' || status == '待决策人审核'" -->
  12. <image src="../../../static/img/daishenhe.png" mode="" style="height: 40rpx;"></image>
  13. <!-- 待审核 -->
  14. </view>
  15. <!-- {{auditList.length > 0 ?auditList[auditList.length - 1].operatorMajorRoleName:""}} -->
  16. <view class="infoText">{{auditInfo.approveStatus?auditInfo.approveStatus:'已完成'}}</view>
  17. </view>
  18. <view class="infoData">{{updateDate}}</view>
  19. </view>
  20. </view>
  21. <view class="content1">
  22. <view class="title ">
  23. 基本信息
  24. </view>
  25. <view class="row">
  26. <view class="left">请款日期</view>
  27. <view class="right">{{auditInfo.requestDate}}</view>
  28. </view>
  29. <view class="row">
  30. <view class="left">请款人</view>
  31. <view class="right">{{auditInfo.requestPerson}}</view>
  32. </view>
  33. <view class="row">
  34. <view class="left">所属仓库 </view>
  35. <view class="right">{{auditInfo.warehouseName}}</view>
  36. </view>
  37. <view class="row">
  38. <view class="left">合计重量(吨)</view>
  39. <view class="right">{{auditInfo.inWarehouseWeightTotal}}</view>
  40. </view>
  41. <view class="row">
  42. <view class="left">合计金额(元)</view>
  43. <view class="right">{{auditInfo.requestFundsTotal}}</view>
  44. </view>
  45. <!-- <view class="row">
  46. <view class="left">仓库名称</view>
  47. <view class="right">{{auditInfo.warehouseName}}</view>
  48. </view>
  49. <view class="row">
  50. <view class="left">入库日期</view>
  51. <view class="right">{{auditInfo.issuingTime}}</view>
  52. </view>
  53. <view class="row" style="border-bottom:0">
  54. <view class="left">车数</view>
  55. <view class="right">{{auditInfo.count}}</view>
  56. </view> -->
  57. </view>
  58. <view class="content1">
  59. <view class="title ">
  60. 支付明细
  61. </view>
  62. <view class="mx-content" v-for="item in auditInfo.warehousingOrderList" @click="detailed">
  63. <view class='flex align-center justify-between'>
  64. <view class="name">
  65. {{item.customer}}
  66. </view>
  67. <view class="mx-item">
  68. {{item.goodsName}}
  69. </view>
  70. </view>
  71. <view class="mx-bottom">
  72. <view class="mx-row1">
  73. <!-- <view class="mx-item">
  74. 平均容重
  75. </view>
  76. <view class="mx-item">
  77. 平均水分
  78. </view> -->
  79. </view>
  80. <view class="mx-row2">
  81. <view class="mx-item">
  82. {{item.inWarehouseWeight}}吨
  83. </view>
  84. <view class="mx-item">
  85. <!-- 2000元/吨 -->
  86. {{item.avgCost}}元/吨
  87. </view>
  88. <view class="mx-item">
  89. {{item.requestFunds}}元
  90. </view>
  91. </view>
  92. </view>
  93. </view>
  94. </view>
  95. <view class="content1" v-if="url && url != 'ng'">
  96. <view class="title ">
  97. 附件
  98. </view>
  99. <view class="file" @click="openXls">
  100. <image src="../../../static/img/excle.png" mode="" class="img_css"></image>
  101. <text class="text_css">付款明细.xls</text>
  102. </view>
  103. <view class="file" @click="openXls2">
  104. <image src="../../../static/img/excle.png" mode="" class="img_css"></image>
  105. <text class="text_css">粮食指标.xls</text>
  106. </view>
  107. </view>
  108. <view class="content2">
  109. <view class="title row">
  110. 流程
  111. </view>
  112. <view v-for="(item,index) in auditList" :key='index' class="audit">
  113. <view class="row">
  114. <view class="left">
  115. <view class="item1">
  116. <view class="item-content">{{item.operatorTitle}}</view>
  117. <view v-if="item.status=='success'" class='status success'>
  118. <u-icon name="checkmark" color="#2979ff" size="24"></u-icon>
  119. </view>
  120. <view v-if="item.status=='error'" class='status error'>
  121. <u-icon name="close" color="rgb(245, 108, 108)" size="24"></u-icon>
  122. </view>
  123. <view v-if="item.status=='question'" class='status question'>
  124. <u-icon name="question" color="#f9ae3d" size="24"></u-icon>
  125. </view>
  126. </view>
  127. </view>
  128. <view class="right">
  129. <view class="right-item">
  130. <view class="item2">
  131. <view class="name">{{item.desc}}
  132. </view>
  133. <!-- <view class='time'>{{item.updateDate}}</view> -->
  134. <view v-if="item.status=='success'" class="status success">{{item.commonStaffs1?item.staffscontent:item.operatorName}}<text v-if='!item.commonStaffs1&&index!=0'>已审核</text></view>
  135. <view v-if="item.status=='error'" class="status error">{{item.commonStaffs1?item.staffscontent:item.operatorName}}<text v-if='!item.commonStaffs1'>{{item.workflowHistoricTasks ? "已驳回":''}}</text></view>
  136. <view v-if="item.status=='question'" class="status question">{{item.commonStaffs1?item.staffscontent:''}}<text v-if='!item.commonStaffs1'>未审核</text></view>
  137. <!-- <view class="status success">吕波(已审核)</view> -->
  138. </view>
  139. <view v-if='index==0||item.workflowHistoricTasks&&item.workflowHistoricTasks.length>0' class='time'>
  140. {{item.updateDate}}
  141. </view>
  142. </view>
  143. <view v-if='item.auditMind' class="right-content">
  144. {{item.auditMind}}
  145. </view>
  146. </view>
  147. <view v-if='item.commonStaffs1' class="right">
  148. <u-icon @click='showcontent(item)' :name="item.showflow?'arrow-up':'arrow-down'" size="28"></u-icon>
  149. </view>
  150. </view>
  151. <view v-if='item.showflow' style='padding:10px 0 0 50px;'>
  152. <view class='row2'>
  153. <view v-for='item1 in item.commonStaffs1' style='margin:5px;text-align:center;'>
  154. <view class="item-content">
  155. <u-icon v-if='item1.status' name="checkmark" color="#fff" size="14"></u-icon>
  156. <u-icon v-if='!item1.status' name="question" color="#f9ae3d" size="14"></u-icon>
  157. </view>
  158. <view class="name">{{item1.staffName}}</view>
  159. </view>
  160. </view>
  161. </view>
  162. <view class="row-line" v-if="index!= auditList.length - 1"></view>
  163. </view>
  164. </view>
  165. <view v-if='show' class="shade">
  166. <view class="wrap">
  167. <view class="alert-top">
  168. <view class="title">
  169. {{title}}
  170. </view>
  171. <u-icon name="close" class="close" color="#8890B1" @click="close()"></u-icon>
  172. </view>
  173. <view class="u-textarea-style">
  174. <view class="right-bottom">
  175. {{auditMind.length}}/100个字
  176. </view>
  177. <u-input class="" v-model='auditMind' placeholder="请在此输入审核意见" type="textarea" height="414"
  178. maxlength="100" />
  179. </view>
  180. <view @click='close()' class="cancel">取消</view>
  181. <view @click='passSubmit()' class="confirm">确定</view>
  182. </view>
  183. </view>
  184. <u-toast ref="uToast" />
  185. <view style='padding:10px;' class='flex bottom-btn'>
  186. <u-button @click='fanhui' type="success" class="btn2">返回</u-button>
  187. </view>
  188. </view>
  189. </template>
  190. <script>
  191. import helper from '@/common/helper.js';
  192. import {
  193. mapState
  194. } from 'vuex';
  195. export default {
  196. data() {
  197. return {
  198. src: '../../../static/img/myimg/LiangShang@2x.png',
  199. isSHowBtn: true,
  200. height: 200,
  201. autoHeight: true,
  202. border: false,
  203. title: '',
  204. show: false,
  205. auditMind: '',
  206. id: "",
  207. currentPage: 1,
  208. pageSize: 100,
  209. List: [],
  210. status: "",
  211. updateDate: "",
  212. warehouseName: "",
  213. everyCheck: '',
  214. auditInfo: {},
  215. id: "",
  216. auditList: [],
  217. url: "11",
  218. url2: "11",
  219. }
  220. },
  221. onBackPress(e) {
  222. if (this.everyCheck) {
  223. uni.navigateTo({
  224. url: "/pages/task/my_task"
  225. })
  226. return true;
  227. }
  228. },
  229. onLoad(options) {
  230. this.id = options.id
  231. this.vesselId = options.vesselId
  232. this.everyCheck = uni.getStorageSync("everyTask")
  233. this.isSHowBtn = options.isShowbtn
  234. },
  235. onShow(options) {
  236. this.getList()
  237. },
  238. computed: {
  239. ...mapState(['hasLogin', 'userInfo']),
  240. },
  241. methods: {
  242. detailed(){
  243. let obj = JSON.stringify(this.auditInfo.warehousingOrderList)
  244. uni.navigateTo({
  245. url: '/pages/task/audit/viewDetail?data='+obj
  246. });
  247. },
  248. showcontent(item){
  249. item.showflow=!item.showflow
  250. },
  251. openXls() {
  252. if (this.url && this.url != "ng") {
  253. uni.downloadFile({
  254. url: this.url,
  255. success: function(res) {
  256. var filePath = res.tempFilePath;
  257. uni.openDocument({
  258. filePath: filePath,
  259. showMenu: true,
  260. success: function(res) {
  261. console.log('打开文档成功');
  262. }
  263. });
  264. }
  265. });
  266. }
  267. },
  268. openXls2() {
  269. if (this.url2 && this.url2 != "ng") {
  270. uni.downloadFile({
  271. url: this.url2,
  272. success: function(res) {
  273. var filePath = res.tempFilePath;
  274. uni.openDocument({
  275. filePath: filePath,
  276. showMenu: true,
  277. success: function(res) {
  278. console.log('打开文档成功');
  279. }
  280. });
  281. }
  282. });
  283. }
  284. },
  285. getList() {
  286. uni.showLoading({
  287. title: "加载中...",
  288. mask: true
  289. })
  290. // this.$api.doRequest('get', '/warehousingOrder/selectInfo', {
  291. // currentPage: 1,
  292. // pageSize: 100,
  293. // searchType: '2', //searchType:1待审核
  294. // // warehouseName: this.vesselId,
  295. // managementType: 1
  296. // }).then(res1 => {
  297. // uni.hideLoading()
  298. // if (res1.data.code == 200) {
  299. // this.List = res1.data.data.records
  300. // }
  301. // })
  302. // this.$api.doRequest('get', '/paymentManagement/getInfo', {
  303. // id: this.id
  304. // }).then(res => {
  305. // if (res.data.code == 200) {
  306. // uni.showLoading({
  307. // title: "加载中...",
  308. // mask: true
  309. // })
  310. // }
  311. // })
  312. this.$api.doRequest('post', '/warehousingOrder/exportPhone', {
  313. batchId: this.id,
  314. // searchType: 1,
  315. }).then(res1 => {
  316. if (res1.data.code == 200) {
  317. this.url = res1.data.data
  318. }
  319. })
  320. this.$api.doRequest('post', '/paymentManagement/exportPhoneOrder', {
  321. orderId: this.id,
  322. // searchType: 1,
  323. }).then(res1 => {
  324. if (res1.data.code == 200) {
  325. this.url2 = res1.data.data
  326. }
  327. })
  328. this.$api.doRequest('post', '/warehousingOrder/exportPhoneDataHis', {
  329. // searchType: 1,
  330. batchId: this.id
  331. }).then(res1 => {
  332. if (res1.data.code == 200) {
  333. this.auditInfo = res1.data.data
  334. if(this.auditInfo.inWarehouseWeightTotal){
  335. this.auditInfo.inWarehouseWeightTotal = this.auditInfo.inWarehouseWeightTotal.toFixed(2)
  336. }
  337. if(this.auditInfo.requestFundsTotal){
  338. this.auditInfo.requestFundsTotal = this.auditInfo.requestFundsTotal.toFixed(2)
  339. }
  340. this.auditInfo.amountIngPayableTotal1 = helper.convertCurrency(this.auditInfo
  341. .amountIngPayableTotal)
  342. this.$api.doRequest('get', '/workflow/query/workflowDefinitions', {
  343. businessCode: 'WAREHOUSING-ORDER-APPROVE',
  344. tmpCompId: uni.getStorageSync('pcUserInfo').compId
  345. }).then(res1 => {
  346. this.$api.doRequest('get', '/commonUser/getHis', {
  347. workflowId: res1.data.data[0].id,
  348. businessKey: this.id
  349. }).then(response => {
  350. uni.hideLoading()
  351. for (let i = 0; i < response.data.data.length; i++) {
  352. this.$set(response.data.data[i],'status','question')
  353. console.log(response.data.data[i].workflowHistoricTasks,i)
  354. if(response.data.data[i].commonStaffs){
  355. response.data.data[i].showflow=false
  356. response.data.data[i].operatorTitle=response.data.data[i].desc.substring(0,2)
  357. response.data.data[i].operatorName=response.data.data[i].desc
  358. response.data.data[i].staffscontent='共'+response.data.data[i].commonStaffs.length+'人,当前审核'+response.data.data[i].workflowHistoricTasks.length+'人'
  359. if(response.data.data[i].workflowHistoricTasks&&response.data.data[i].workflowHistoricTasks.length>0){
  360. if(response.data.data[i].workflowHistoricTasks.length!=response.data.data[i].commonStaffs.length){
  361. // response.data.data[i].status='question'
  362. this.$set(response.data.data[i],'status','question')
  363. }else{
  364. this.$set(response.data.data[i],'status','success')
  365. // response.data.data[i].status='success'
  366. }
  367. response.data.data[i].workflowlen=response.data.data[i].workflowHistoricTasks.length
  368. var workflowdata=response.data.data[i].workflowHistoricTasks
  369. var staffsdata=response.data.data[i].commonStaffs
  370. for (let q = 0; q < staffsdata.length; q++) {
  371. staffsdata[q].status=false
  372. staffsdata[q].staffTitle=staffsdata[q].staffName
  373. for (let k = 0; k < workflowdata.length; k++) {
  374. if(staffsdata[q].staffId==workflowdata[k].operatorId){
  375. staffsdata[q].status=true
  376. }
  377. }
  378. }
  379. }
  380. response.data.data[i].commonStaffs1=response.data.data[i].commonStaffs
  381. }else{
  382. if(response.data.data[i].workflowHistoricTasks&&response.data.data[i].workflowHistoricTasks.length>0){
  383. var len =response.data.data[i].workflowHistoricTasks.length-1
  384. if(response.data.data[i].workflowHistoricTasks[len].approved){
  385. this.$set(response.data.data[i],'status','success')
  386. }else{
  387. this.$set(response.data.data[i],'status','error')
  388. }
  389. response.data.data[i].operatorTitle=response.data.data[i].workflowHistoricTasks[len].operatorName.substring(response.data.data[i].workflowHistoricTasks[0].operatorName.length - 2)
  390. response.data.data[i].operatorName=response.data.data[i].workflowHistoricTasks[len].operatorName
  391. var time=new Date(response.data.data[i].workflowHistoricTasks[len].claimTime).getTime()
  392. response.data.data[i].updateDate=this.$u.timeFormat(time, 'mm.dd hh:MM')
  393. response.data.data[i].auditMind=response.data.data[i].workflowHistoricTasks[len].auditMind
  394. }else{
  395. this.$set(response.data.data[i],'status','question')
  396. // response.data.data[i].status='question'
  397. if(response.data.data[i].desc=='总经理助理审核'){
  398. response.data.data[i].operatorTitle='总助'
  399. }else if(response.data.data[i].desc=='杜大光审核'){
  400. response.data.data[i].operatorTitle='大光'
  401. }else{
  402. response.data.data[i].operatorTitle=response.data.data[i].desc.substring(0,2)
  403. }
  404. response.data.data[i].operatorName=response.data.data[i].desc
  405. var time1=new Date(response.data.data[i].updateDate).getTime()
  406. response.data.data[i].updateDate=this.$u.timeFormat(time1, 'mm.dd hh:MM')
  407. response.data.data[i].auditMind=''
  408. }
  409. }
  410. }
  411. console.log(response.data.data)
  412. this.auditList = response.data.data
  413. var time2=new Date(this.auditInfo.createDate).getTime()
  414. var time3=this.$u.timeFormat(time2, 'mm.dd hh:MM')
  415. this.auditList.unshift({
  416. operatorTitle:this.auditInfo.creater.substring(0,2),
  417. operatorName:this.auditInfo.creater,
  418. updateDate:time3,
  419. auditMind:'',
  420. desc:'发起申请',
  421. showflow:false,
  422. commonStaffs1:null,
  423. commonStaffs:null,
  424. workflowHistoricTasks:[],
  425. status:'success'
  426. })
  427. })
  428. })
  429. }
  430. })
  431. this.$api.doRequest('get', '/workflow/query/workflowDefinitions', {
  432. businessCode: 'WAREHOUSING-ORDER-APPROVE',
  433. tmpCompId: uni.getStorageSync('pcUserInfo').compId
  434. }).then(res1 => {
  435. this.updateDate = res1.data.data[0].updateDate
  436. this.$api.doRequest('get', '/commonUser/getHis', {
  437. workflowId: res1.data.data[0].id,
  438. businessKey: this.id
  439. }).then(response => {
  440. // uni.hideLoading()
  441. this.auditList = response.data.data
  442. })
  443. })
  444. },
  445. close() {
  446. this.show = false
  447. },
  448. fanHui(){
  449. uni.navigateBack()
  450. },
  451. pass() {
  452. this.show = true
  453. this.title = '审核意见(通过)'
  454. },
  455. reject() {
  456. this.show = true
  457. this.title = '驳回原因(驳回)'
  458. },
  459. //驳回
  460. // rejectSubmit() {
  461. // if (!this.auditMind) {
  462. // this.$api.msg('驳回原因不能为空!')
  463. // } else {
  464. // var that = this
  465. // that.show = false
  466. // if (this.List.length > 0) {
  467. // uni.showModal({
  468. // content: "确定驳回付款申请?",
  469. // showCancel: true,
  470. // confirmText: '确定',
  471. // success: function(res) {
  472. // if (res.confirm) {
  473. // that.audit(that.List[0], 0, false, '', '')
  474. // }
  475. // }
  476. // })
  477. // }
  478. // }
  479. // },
  480. // audit(list, index, status, status2, reason) {
  481. // uni.showLoading({
  482. // title: "审核中"
  483. // })
  484. // if (this.List.length > 0) {
  485. // if (status == true && list.status == "已驳回") {
  486. // this.$api.doRequest('get', '/paymentManagement/api/openAuditFlow', {
  487. // compId: "2710b21efc1e4393930c5dc800010dc4",
  488. // id: list.id
  489. // }).then(res => {
  490. // if (res.data.code == 200) {
  491. // this.audit(this.List[index + 1], index + 1, status, status2, reason)
  492. // }
  493. // })
  494. // } else {
  495. // for (var i = 0; i < this.List.length; i++) {
  496. // this.$api.doRequest('post', '/newWorkflow/api/handle', {
  497. // taskId: this.List[i].taskId,
  498. // approved: status,
  499. // auditMind: this.auditMind ? this.auditMind : "",
  500. // needReapply: status2 ? true : false
  501. // }).then(res => {
  502. // if (res.data.code == 200) {
  503. // uni.hideLoading()
  504. // // this.audit(this.List[index + 1], index + 1, status, status2, reason)
  505. // this.$api.msg('通过成功')
  506. // }else{
  507. // uni.hideLoading()
  508. // this.$api.msg('审核失败')
  509. // }
  510. // })
  511. // }
  512. // }
  513. // } else {
  514. // if (status == true) {
  515. // this.$api.msg('通过成功')
  516. // } else if (status == false) {
  517. // this.$api.msg('驳回成功')
  518. // }
  519. // let that = this
  520. // setTimeout(function() {
  521. // if (that.everyCheck) {
  522. // helper.setAudit(that.list)
  523. // } else {
  524. // uni.navigateBack()
  525. // }
  526. // uni.hideLoading()
  527. // }, 1000);
  528. // }
  529. // },
  530. }
  531. }
  532. </script>
  533. <style scoped lang="scss">
  534. .warp {
  535. margin: 10rpx;
  536. padding: 20rpx 20rpx 240rpx 20rpx;
  537. }
  538. .content1 {
  539. font-size: 28rpx;
  540. color: #333333;
  541. margin-top: 30rpx;
  542. padding: 20rpx;
  543. // .content-item {
  544. border-radius: 20rpx;
  545. background: white;
  546. // padding: 40rpx 20rpx;
  547. // margin-bottom: 30rpx;
  548. // }
  549. // .title {
  550. // font-size: 32rpx;
  551. // font-weight: 600;
  552. // color: #333333;
  553. // margin: 30rpx 0;
  554. // }
  555. // .goodsInfoCss {
  556. // font-size: 28rpx;
  557. // font-weight: 600;
  558. // color: #878C9C;
  559. // margin: 26rpx 10rpx;
  560. // }
  561. // .priceCss {
  562. // font-size: 40rpx;
  563. // margin: 26rpx 10rpx;
  564. // color: #22C572;
  565. // font-weight: 600;
  566. // }
  567. .row {
  568. display: flex;
  569. justify-content: space-between;
  570. border-bottom: 1px solid #EEEEEE;
  571. padding: 20rpx 0;
  572. .right,
  573. input {
  574. font-size: 28rpx;
  575. // color: #333333;
  576. }
  577. }
  578. .img_css {
  579. width: 50rpx;
  580. height: 50rpx;
  581. }
  582. .file {
  583. display: flex;
  584. align-items: center;
  585. margin: 30rpx 0 0 20rpx;
  586. .text_css {
  587. font-size: 30rpx;
  588. margin-left: 20rpx;
  589. }
  590. }
  591. }
  592. .title {
  593. font-size: 34rpx;
  594. font-weight: 700;
  595. // margin-bottom: 20rpx;
  596. height: 70rpx;
  597. border-bottom: 2rpx solid #EEEEEE;
  598. }
  599. .titlerow {
  600. font-size: 34rpx;
  601. font-weight: 700;
  602. // margin-bottom: 20rpx;
  603. // height: 70rpx;
  604. // border-bottom: 2rpx solid #EEEEEE;
  605. }
  606. .content2 {
  607. background: white;
  608. margin: 20rpx 0;
  609. border-radius: 20rpx;
  610. padding: 20rpx;
  611. .row {
  612. display: flex;
  613. .left {
  614. display: flex;
  615. align-items: center;
  616. .item1 {
  617. position: relative;
  618. .item-content {
  619. background: #617AE0;
  620. width: 44px;
  621. height: 44px;
  622. border-radius: 22px;
  623. line-height: 44px;
  624. text-align: center;
  625. font-size: 15px;
  626. color: #fff;
  627. }
  628. .status {
  629. position: absolute;
  630. border-radius: 50%;
  631. padding: 0px 2px;
  632. right: -3px;
  633. bottom: -3px;
  634. background: #fff;
  635. }
  636. .status.success {
  637. border: 1px solid rgb(60, 156, 255);
  638. }
  639. .status.error {
  640. border: 1px solid rgb(245, 108, 108);
  641. }
  642. .status.question {
  643. border: 1px solid #f9ae3d;
  644. }
  645. }
  646. }
  647. .right {
  648. width: 80%;
  649. // color: #B0B1B5;
  650. margin-top: 10px;
  651. .right-content {
  652. background: #F2F3F7;
  653. margin-left: 10px;
  654. margin-top: 10px;
  655. padding: 10px;
  656. border-radius: 5px;
  657. color: #B0B1B5;
  658. }
  659. .right-item {
  660. display: flex;
  661. justify-content: space-between;
  662. .time {
  663. color: #999;
  664. }
  665. .item2 {
  666. margin-left: 20rpx;
  667. margin-top: -7px;
  668. .name {
  669. font-size: 28rpx;
  670. font-weight: 800;
  671. margin-bottom: 4px;
  672. }
  673. .status.success {
  674. color: #6CC48C;
  675. }
  676. .status.error {
  677. color: rgb(245, 108, 108);
  678. }
  679. .status.question {
  680. color: #f9ae3d;
  681. }
  682. }
  683. }
  684. }
  685. }
  686. .row2 {
  687. display: flex;
  688. .item-content {
  689. background: #22C572;
  690. width: 30px;
  691. height: 30px;
  692. border-radius: 50%;
  693. line-height: 30px;
  694. text-align: center;
  695. font-size: 12px;
  696. color: #fff;
  697. padding: 0 2px;
  698. margin: 0 auto;
  699. }
  700. .status {
  701. position: absolute;
  702. top: 0;
  703. right: 0;
  704. }
  705. }
  706. .row-line {
  707. width: 1px;
  708. height: 30px;
  709. background: #F2F2F2;
  710. margin: 10rpx 50rpx;
  711. }
  712. .audit {
  713. margin-top: 20rpx;
  714. }
  715. }
  716. .bottom-btn {
  717. width: 100%;
  718. position: fixed;
  719. bottom: 0;
  720. display: flex;
  721. z-index: 2;
  722. left: 0;
  723. background-color: #f8f8f8;
  724. flex-direction: column;
  725. .btn1,
  726. .btn2 {
  727. width: 100%;
  728. margin-bottom: 26rpx;
  729. border-radius: 90rpx;
  730. }
  731. .btn1 {
  732. background: white;
  733. color: #00C265;
  734. }
  735. }
  736. .row1 {
  737. border-bottom: 0 !important;
  738. }
  739. .topInfo {
  740. height: 210rpx;
  741. background: linear-gradient(270deg, #22C572 0%, #34DE8A 100%);
  742. padding: 30rpx;
  743. .topInfo-item {
  744. height: 150rpx;
  745. background-color: #FFFFFF;
  746. border-radius: 20rpx;
  747. padding: 40rpx;
  748. .logo {
  749. width: 40rpx;
  750. height: 40rpx;
  751. margin-top: 8rpx;
  752. }
  753. .infoText {
  754. font-size: 36rpx;
  755. font-weight: 600;
  756. margin-left: 20rpx;
  757. }
  758. .infoData {
  759. color: #878C9C;
  760. font-size: 26rpx;
  761. margin-top: 10rpx;
  762. }
  763. }
  764. }
  765. .shade {
  766. position: fixed;
  767. top: 0;
  768. left: 0;
  769. height: 100%;
  770. width: 100%;
  771. background: rgba(0, 0, 0, 0.4);
  772. z-index: 3;
  773. .wrap {
  774. position: absolute;
  775. left: 0;
  776. top: 0;
  777. right: 0;
  778. bottom: 0;
  779. margin: auto;
  780. background: #fff;
  781. width: calc(100% - 198rpx);
  782. height: 700rpx;
  783. border-radius: 20rpx;
  784. .alert-top {
  785. padding: 33rpx;
  786. display: flex;
  787. justify-content: center;
  788. align-items: center;
  789. position: relative;
  790. }
  791. .title {
  792. font-size: 32rpx;
  793. font-weight: 600;
  794. color: #333333;
  795. }
  796. .close {
  797. position: absolute;
  798. right: 33rpx;
  799. }
  800. }
  801. }
  802. .cancel,
  803. .confirm {
  804. position: absolute;
  805. display: inline-block;
  806. width: 50%;
  807. text-align: center;
  808. bottom: 0;
  809. padding: 10px;
  810. border-top: 1px solid #eee;
  811. font-size: 34rpx;
  812. }
  813. .cancel {
  814. left: 0;
  815. border-right: 1px solid #eee;
  816. color: #AFB3BF;
  817. }
  818. .confirm {
  819. right: 0;
  820. color: #22C572;
  821. }
  822. .u-textarea-style {
  823. margin: 20rpx;
  824. background: #F9F9FA;
  825. border-radius: 10px;
  826. border: 1px solid #EEEEEE;
  827. padding: 10rpx 20rpx;
  828. position: relative;
  829. .right-bottom {
  830. position: absolute;
  831. right: 20rpx;
  832. bottom: 20rpx;
  833. color: #AFB3BF;
  834. }
  835. }
  836. /deep/.u-input__textarea {
  837. height: 300rpx !important;
  838. }
  839. .mx-content {
  840. background: #F9F9FA;
  841. padding: 30rpx;
  842. box-sizing: border-box;
  843. margin-top: 20rpx;
  844. border-radius: 20rpx;
  845. .name {
  846. font-size: 32rpx;
  847. font-weight: 700;
  848. border-bottom: 1px solid #EEEEEE;
  849. padding-bottom: 8rpx;
  850. }
  851. .mx-row1,
  852. .mx-row2 {
  853. display: flex;
  854. justify-content: space-between;
  855. margin-top: 20rpx;
  856. }
  857. .mx-item {
  858. text-align: left;
  859. // width: 33%;
  860. // text-align: center;
  861. }
  862. }
  863. </style>