warehouse_warrant.vue 25 KB

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