warehouse_warrant_detail.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942
  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. var that =this
  291. // this.$api.doRequest('get', '/warehousingOrder/selectInfo', {
  292. // currentPage: 1,
  293. // pageSize: 100,
  294. // searchType: '2', //searchType:1待审核
  295. // // warehouseName: this.vesselId,
  296. // managementType: 1
  297. // }).then(res1 => {
  298. // uni.hideLoading()
  299. // if (res1.data.code == 200) {
  300. // this.List = res1.data.data.records
  301. // }
  302. // })
  303. // this.$api.doRequest('get', '/paymentManagement/getInfo', {
  304. // id: this.id
  305. // }).then(res => {
  306. // if (res.data.code == 200) {
  307. // uni.showLoading({
  308. // title: "加载中...",
  309. // mask: true
  310. // })
  311. // }
  312. // })
  313. this.$api.doRequest('post', '/warehousingOrder/exportPhone', {
  314. batchId: this.id,
  315. // searchType: 1,
  316. }).then(res1 => {
  317. if (res1.data.code == 200) {
  318. this.url = res1.data.data
  319. }
  320. })
  321. this.$api.doRequest('post', '/paymentManagement/exportPhoneOrder', {
  322. orderId: this.id,
  323. // searchType: 1,
  324. }).then(res1 => {
  325. if (res1.data.code == 200) {
  326. this.url2 = res1.data.data
  327. }
  328. })
  329. this.$api.doRequest('post', '/warehousingOrder/exportPhoneDataHis', {
  330. // searchType: 1,
  331. batchId: this.id
  332. }).then(res1 => {
  333. if (res1.data.code == 200) {
  334. this.auditInfo = res1.data.data
  335. if(this.auditInfo.inWarehouseWeightTotal){
  336. this.auditInfo.inWarehouseWeightTotal = this.auditInfo.inWarehouseWeightTotal.toFixed(2)
  337. }
  338. if(this.auditInfo.requestFundsTotal){
  339. this.auditInfo.requestFundsTotal = this.auditInfo.requestFundsTotal.toFixed(2)
  340. }
  341. this.auditInfo.amountIngPayableTotal1 = helper.convertCurrency(this.auditInfo
  342. .amountIngPayableTotal)
  343. this.$api.doRequest('get', '/workflow/query/workflowDefinitions', {
  344. businessCode: 'WAREHOUSING-ORDER-APPROVE',
  345. tmpCompId: uni.getStorageSync('pcUserInfo').compId
  346. }).then(res1 => {
  347. this.$api.doRequest('get', '/commonUser/getHis', {
  348. workflowId: res1.data.data[0].id,
  349. businessKey: this.id,
  350. branch:that.auditInfo.jointVentureParties?that.auditInfo.jointVentureParties:'zt'
  351. }).then(response => {
  352. uni.hideLoading()
  353. for (let i = 0; i < response.data.data.length; i++) {
  354. this.$set(response.data.data[i],'status','question')
  355. console.log(response.data.data[i].workflowHistoricTasks,i)
  356. if(response.data.data[i].commonStaffs){
  357. response.data.data[i].showflow=false
  358. response.data.data[i].operatorTitle=response.data.data[i].desc.substring(0,2)
  359. response.data.data[i].operatorName=response.data.data[i].desc
  360. response.data.data[i].staffscontent='共'+response.data.data[i].commonStaffs.length+'人,当前审核'+response.data.data[i].workflowHistoricTasks.length+'人'
  361. if(response.data.data[i].workflowHistoricTasks&&response.data.data[i].workflowHistoricTasks.length>0){
  362. if(response.data.data[i].workflowHistoricTasks.length!=response.data.data[i].commonStaffs.length){
  363. // response.data.data[i].status='question'
  364. this.$set(response.data.data[i],'status','question')
  365. }else{
  366. this.$set(response.data.data[i],'status','success')
  367. // response.data.data[i].status='success'
  368. }
  369. response.data.data[i].workflowlen=response.data.data[i].workflowHistoricTasks.length
  370. var workflowdata=response.data.data[i].workflowHistoricTasks
  371. var staffsdata=response.data.data[i].commonStaffs
  372. for (let q = 0; q < staffsdata.length; q++) {
  373. staffsdata[q].status=false
  374. staffsdata[q].staffTitle=staffsdata[q].staffName
  375. for (let k = 0; k < workflowdata.length; k++) {
  376. if(staffsdata[q].staffId==workflowdata[k].operatorId){
  377. staffsdata[q].status=true
  378. }
  379. }
  380. }
  381. }
  382. response.data.data[i].commonStaffs1=response.data.data[i].commonStaffs
  383. }else{
  384. if(response.data.data[i].workflowHistoricTasks&&response.data.data[i].workflowHistoricTasks.length>0){
  385. var len =response.data.data[i].workflowHistoricTasks.length-1
  386. if(response.data.data[i].workflowHistoricTasks[len].approved){
  387. this.$set(response.data.data[i],'status','success')
  388. }else{
  389. this.$set(response.data.data[i],'status','error')
  390. }
  391. response.data.data[i].operatorTitle=response.data.data[i].workflowHistoricTasks[len].operatorName.substring(response.data.data[i].workflowHistoricTasks[0].operatorName.length - 2)
  392. response.data.data[i].operatorName=response.data.data[i].workflowHistoricTasks[len].operatorName
  393. var time=new Date(response.data.data[i].workflowHistoricTasks[len].claimTime).getTime()
  394. response.data.data[i].updateDate=this.$u.timeFormat(time, 'mm.dd hh:MM')
  395. response.data.data[i].auditMind=response.data.data[i].workflowHistoricTasks[len].auditMind
  396. }else{
  397. this.$set(response.data.data[i],'status','question')
  398. // response.data.data[i].status='question'
  399. if(response.data.data[i].desc=='总经理助理审核'){
  400. response.data.data[i].operatorTitle='总助'
  401. }else if(response.data.data[i].desc=='杜大光审核'){
  402. response.data.data[i].operatorTitle='大光'
  403. }else{
  404. response.data.data[i].operatorTitle=response.data.data[i].desc.substring(0,2)
  405. }
  406. response.data.data[i].operatorName=response.data.data[i].desc
  407. var time1=new Date(response.data.data[i].updateDate).getTime()
  408. response.data.data[i].updateDate=this.$u.timeFormat(time1, 'mm.dd hh:MM')
  409. response.data.data[i].auditMind=''
  410. }
  411. }
  412. }
  413. console.log(response.data.data)
  414. this.auditList = response.data.data
  415. var time2=new Date(this.auditInfo.createDate).getTime()
  416. var time3=this.$u.timeFormat(time2, 'mm.dd hh:MM')
  417. this.auditList.unshift({
  418. operatorTitle:this.auditInfo.creater.substring(0,2),
  419. operatorName:this.auditInfo.creater,
  420. updateDate:time3,
  421. auditMind:'',
  422. desc:'发起申请',
  423. showflow:false,
  424. commonStaffs1:null,
  425. commonStaffs:null,
  426. workflowHistoricTasks:[],
  427. status:'success'
  428. })
  429. })
  430. })
  431. }
  432. })
  433. this.$api.doRequest('get', '/workflow/query/workflowDefinitions', {
  434. businessCode: 'WAREHOUSING-ORDER-APPROVE',
  435. tmpCompId: uni.getStorageSync('pcUserInfo').compId
  436. }).then(res1 => {
  437. this.updateDate = res1.data.data[0].updateDate
  438. this.$api.doRequest('get', '/commonUser/getHis', {
  439. workflowId: res1.data.data[0].id,
  440. businessKey: this.id
  441. }).then(response => {
  442. // uni.hideLoading()
  443. this.auditList = response.data.data
  444. })
  445. })
  446. },
  447. close() {
  448. this.show = false
  449. },
  450. fanHui(){
  451. uni.navigateBack()
  452. },
  453. pass() {
  454. this.show = true
  455. this.title = '审核意见(通过)'
  456. },
  457. reject() {
  458. this.show = true
  459. this.title = '驳回原因(驳回)'
  460. },
  461. //驳回
  462. // rejectSubmit() {
  463. // if (!this.auditMind) {
  464. // this.$api.msg('驳回原因不能为空!')
  465. // } else {
  466. // var that = this
  467. // that.show = false
  468. // if (this.List.length > 0) {
  469. // uni.showModal({
  470. // content: "确定驳回付款申请?",
  471. // showCancel: true,
  472. // confirmText: '确定',
  473. // success: function(res) {
  474. // if (res.confirm) {
  475. // that.audit(that.List[0], 0, false, '', '')
  476. // }
  477. // }
  478. // })
  479. // }
  480. // }
  481. // },
  482. // audit(list, index, status, status2, reason) {
  483. // uni.showLoading({
  484. // title: "审核中"
  485. // })
  486. // if (this.List.length > 0) {
  487. // if (status == true && list.status == "已驳回") {
  488. // this.$api.doRequest('get', '/paymentManagement/api/openAuditFlow', {
  489. // compId: "2710b21efc1e4393930c5dc800010dc4",
  490. // id: list.id
  491. // }).then(res => {
  492. // if (res.data.code == 200) {
  493. // this.audit(this.List[index + 1], index + 1, status, status2, reason)
  494. // }
  495. // })
  496. // } else {
  497. // for (var i = 0; i < this.List.length; i++) {
  498. // this.$api.doRequest('post', '/newWorkflow/api/handle', {
  499. // taskId: this.List[i].taskId,
  500. // approved: status,
  501. // auditMind: this.auditMind ? this.auditMind : "",
  502. // needReapply: status2 ? true : false
  503. // }).then(res => {
  504. // if (res.data.code == 200) {
  505. // uni.hideLoading()
  506. // // this.audit(this.List[index + 1], index + 1, status, status2, reason)
  507. // this.$api.msg('通过成功')
  508. // }else{
  509. // uni.hideLoading()
  510. // this.$api.msg('审核失败')
  511. // }
  512. // })
  513. // }
  514. // }
  515. // } else {
  516. // if (status == true) {
  517. // this.$api.msg('通过成功')
  518. // } else if (status == false) {
  519. // this.$api.msg('驳回成功')
  520. // }
  521. // let that = this
  522. // setTimeout(function() {
  523. // if (that.everyCheck) {
  524. // helper.setAudit(that.list)
  525. // } else {
  526. // uni.navigateBack()
  527. // }
  528. // uni.hideLoading()
  529. // }, 1000);
  530. // }
  531. // },
  532. }
  533. }
  534. </script>
  535. <style scoped lang="scss">
  536. .warp {
  537. margin: 10rpx;
  538. padding: 20rpx 20rpx 240rpx 20rpx;
  539. }
  540. .content1 {
  541. font-size: 28rpx;
  542. color: #333333;
  543. margin-top: 30rpx;
  544. padding: 20rpx;
  545. // .content-item {
  546. border-radius: 20rpx;
  547. background: white;
  548. // padding: 40rpx 20rpx;
  549. // margin-bottom: 30rpx;
  550. // }
  551. // .title {
  552. // font-size: 32rpx;
  553. // font-weight: 600;
  554. // color: #333333;
  555. // margin: 30rpx 0;
  556. // }
  557. // .goodsInfoCss {
  558. // font-size: 28rpx;
  559. // font-weight: 600;
  560. // color: #878C9C;
  561. // margin: 26rpx 10rpx;
  562. // }
  563. // .priceCss {
  564. // font-size: 40rpx;
  565. // margin: 26rpx 10rpx;
  566. // color: #22C572;
  567. // font-weight: 600;
  568. // }
  569. .row {
  570. display: flex;
  571. justify-content: space-between;
  572. border-bottom: 1px solid #EEEEEE;
  573. padding: 20rpx 0;
  574. .right,
  575. input {
  576. font-size: 28rpx;
  577. // color: #333333;
  578. }
  579. }
  580. .img_css {
  581. width: 50rpx;
  582. height: 50rpx;
  583. }
  584. .file {
  585. display: flex;
  586. align-items: center;
  587. margin: 30rpx 0 0 20rpx;
  588. .text_css {
  589. font-size: 30rpx;
  590. margin-left: 20rpx;
  591. }
  592. }
  593. }
  594. .title {
  595. font-size: 34rpx;
  596. font-weight: 700;
  597. // margin-bottom: 20rpx;
  598. height: 70rpx;
  599. border-bottom: 2rpx solid #EEEEEE;
  600. }
  601. .titlerow {
  602. font-size: 34rpx;
  603. font-weight: 700;
  604. // margin-bottom: 20rpx;
  605. // height: 70rpx;
  606. // border-bottom: 2rpx solid #EEEEEE;
  607. }
  608. .content2 {
  609. background: white;
  610. margin: 20rpx 0;
  611. border-radius: 20rpx;
  612. padding: 20rpx;
  613. .row {
  614. display: flex;
  615. .left {
  616. display: flex;
  617. align-items: center;
  618. .item1 {
  619. position: relative;
  620. .item-content {
  621. background: #617AE0;
  622. width: 44px;
  623. height: 44px;
  624. border-radius: 22px;
  625. line-height: 44px;
  626. text-align: center;
  627. font-size: 15px;
  628. color: #fff;
  629. }
  630. .status {
  631. position: absolute;
  632. border-radius: 50%;
  633. padding: 0px 2px;
  634. right: -3px;
  635. bottom: -3px;
  636. background: #fff;
  637. }
  638. .status.success {
  639. border: 1px solid rgb(60, 156, 255);
  640. }
  641. .status.error {
  642. border: 1px solid rgb(245, 108, 108);
  643. }
  644. .status.question {
  645. border: 1px solid #f9ae3d;
  646. }
  647. }
  648. }
  649. .right {
  650. width: 80%;
  651. // color: #B0B1B5;
  652. margin-top: 10px;
  653. .right-content {
  654. background: #F2F3F7;
  655. margin-left: 10px;
  656. margin-top: 10px;
  657. padding: 10px;
  658. border-radius: 5px;
  659. color: #B0B1B5;
  660. }
  661. .right-item {
  662. display: flex;
  663. justify-content: space-between;
  664. .time {
  665. color: #999;
  666. }
  667. .item2 {
  668. margin-left: 20rpx;
  669. margin-top: -7px;
  670. .name {
  671. font-size: 28rpx;
  672. font-weight: 800;
  673. margin-bottom: 4px;
  674. }
  675. .status.success {
  676. color: #6CC48C;
  677. }
  678. .status.error {
  679. color: rgb(245, 108, 108);
  680. }
  681. .status.question {
  682. color: #f9ae3d;
  683. }
  684. }
  685. }
  686. }
  687. }
  688. .row2 {
  689. display: flex;
  690. .item-content {
  691. background: #22C572;
  692. width: 30px;
  693. height: 30px;
  694. border-radius: 50%;
  695. line-height: 30px;
  696. text-align: center;
  697. font-size: 12px;
  698. color: #fff;
  699. padding: 0 2px;
  700. margin: 0 auto;
  701. }
  702. .status {
  703. position: absolute;
  704. top: 0;
  705. right: 0;
  706. }
  707. }
  708. .row-line {
  709. width: 1px;
  710. height: 30px;
  711. background: #F2F2F2;
  712. margin: 10rpx 50rpx;
  713. }
  714. .audit {
  715. margin-top: 20rpx;
  716. }
  717. }
  718. .bottom-btn {
  719. width: 100%;
  720. position: fixed;
  721. bottom: 0;
  722. display: flex;
  723. z-index: 2;
  724. left: 0;
  725. background-color: #f8f8f8;
  726. flex-direction: column;
  727. .btn1,
  728. .btn2 {
  729. width: 100%;
  730. margin-bottom: 26rpx;
  731. border-radius: 90rpx;
  732. }
  733. .btn1 {
  734. background: white;
  735. color: #00C265;
  736. }
  737. }
  738. .row1 {
  739. border-bottom: 0 !important;
  740. }
  741. .topInfo {
  742. height: 210rpx;
  743. background: linear-gradient(270deg, #22C572 0%, #34DE8A 100%);
  744. padding: 30rpx;
  745. .topInfo-item {
  746. height: 150rpx;
  747. background-color: #FFFFFF;
  748. border-radius: 20rpx;
  749. padding: 40rpx;
  750. .logo {
  751. width: 40rpx;
  752. height: 40rpx;
  753. margin-top: 8rpx;
  754. }
  755. .infoText {
  756. font-size: 36rpx;
  757. font-weight: 600;
  758. margin-left: 20rpx;
  759. }
  760. .infoData {
  761. color: #878C9C;
  762. font-size: 26rpx;
  763. margin-top: 10rpx;
  764. }
  765. }
  766. }
  767. .shade {
  768. position: fixed;
  769. top: 0;
  770. left: 0;
  771. height: 100%;
  772. width: 100%;
  773. background: rgba(0, 0, 0, 0.4);
  774. z-index: 3;
  775. .wrap {
  776. position: absolute;
  777. left: 0;
  778. top: 0;
  779. right: 0;
  780. bottom: 0;
  781. margin: auto;
  782. background: #fff;
  783. width: calc(100% - 198rpx);
  784. height: 700rpx;
  785. border-radius: 20rpx;
  786. .alert-top {
  787. padding: 33rpx;
  788. display: flex;
  789. justify-content: center;
  790. align-items: center;
  791. position: relative;
  792. }
  793. .title {
  794. font-size: 32rpx;
  795. font-weight: 600;
  796. color: #333333;
  797. }
  798. .close {
  799. position: absolute;
  800. right: 33rpx;
  801. }
  802. }
  803. }
  804. .cancel,
  805. .confirm {
  806. position: absolute;
  807. display: inline-block;
  808. width: 50%;
  809. text-align: center;
  810. bottom: 0;
  811. padding: 10px;
  812. border-top: 1px solid #eee;
  813. font-size: 34rpx;
  814. }
  815. .cancel {
  816. left: 0;
  817. border-right: 1px solid #eee;
  818. color: #AFB3BF;
  819. }
  820. .confirm {
  821. right: 0;
  822. color: #22C572;
  823. }
  824. .u-textarea-style {
  825. margin: 20rpx;
  826. background: #F9F9FA;
  827. border-radius: 10px;
  828. border: 1px solid #EEEEEE;
  829. padding: 10rpx 20rpx;
  830. position: relative;
  831. .right-bottom {
  832. position: absolute;
  833. right: 20rpx;
  834. bottom: 20rpx;
  835. color: #AFB3BF;
  836. }
  837. }
  838. /deep/.u-input__textarea {
  839. height: 300rpx !important;
  840. }
  841. .mx-content {
  842. background: #F9F9FA;
  843. padding: 30rpx;
  844. box-sizing: border-box;
  845. margin-top: 20rpx;
  846. border-radius: 20rpx;
  847. .name {
  848. font-size: 32rpx;
  849. font-weight: 700;
  850. border-bottom: 1px solid #EEEEEE;
  851. padding-bottom: 8rpx;
  852. }
  853. .mx-row1,
  854. .mx-row2 {
  855. display: flex;
  856. justify-content: space-between;
  857. margin-top: 20rpx;
  858. }
  859. .mx-item {
  860. text-align: left;
  861. // width: 33%;
  862. // text-align: center;
  863. }
  864. }
  865. </style>