acquisitioncontract.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850
  1. <template>
  2. <view class="container">
  3. <u-form ref="uForm">
  4. <u-form-item label-width='260' label="合同编号">
  5. <u-input v-model="list.contractNo" input-align="right" placeholder="" disabled />
  6. </u-form-item>
  7. <u-form-item label-width='260' label="交易主体">
  8. <u-input v-model="list.transactionSubject" input-align="right" placeholder="" disabled />
  9. </u-form-item>
  10. <u-form-item label-width='260' label="收购方">
  11. <u-input v-model="list.buyer" input-align="right" placeholder="" disabled />
  12. </u-form-item>
  13. <u-form-item label-width='260' label="收购方电话">
  14. <u-input v-model="list.buyerPhone" input-align="right" placeholder="" disabled />
  15. </u-form-item>
  16. <u-form-item label-width='260' label="合营方">
  17. <u-input v-model="list.seller" input-align="right" placeholder="" disabled />
  18. </u-form-item>
  19. <u-form-item label-width='260' label="合营方电话">
  20. <u-input v-model="list.sellerPhone" input-align="right" placeholder="" disabled />
  21. </u-form-item>
  22. <u-form-item label-width='260' label="交货方式">
  23. <u-input v-model="list.deliverType1" input-align="right" placeholder="" disabled />
  24. </u-form-item>
  25. <u-form-item label-width='260' label="重量(吨)">
  26. <u-input v-model="list.weight" input-align="right" placeholder="" disabled />
  27. </u-form-item>
  28. <u-form-item label-width='260' label="交货日期(起)">
  29. <u-input v-model="list.deliveryDateStart" input-align="right" placeholder="" disabled />
  30. </u-form-item>
  31. <u-form-item label-width='260' label="溢短装(%)">
  32. <u-input v-model="list.overShort" input-align="right" placeholder="" disabled />
  33. </u-form-item>
  34. <u-form-item label-width='260' label="交货日期(止)">
  35. <u-input v-model="list.deliveryDateEnd" input-align="right" placeholder="" disabled />
  36. </u-form-item>
  37. <u-form-item label-width='260' label="合同单价(元/吨)">
  38. <u-input v-model="list.unitContractPrice" input-align="right" placeholder="" disabled />
  39. </u-form-item>
  40. <u-form-item label-width='260' label="合同总价(元)">
  41. <u-input v-model="list.totalContractPrice" input-align="right" placeholder="" disabled />
  42. </u-form-item>
  43. <u-form-item label-width='260' label="签订日期">
  44. <u-input v-model="list.signingDate" input-align="right" placeholder="" disabled />
  45. </u-form-item>
  46. <u-form-item label-width='300' label="最终实际交易量(吨)">
  47. <u-input v-model="list.finalTradingVolume" input-align="right" placeholder="" disabled />
  48. </u-form-item>
  49. <u-form-item label-width='300' label="结算单价(元/吨)">
  50. <u-input v-model="list.settlementPrice" input-align="right" placeholder="" disabled />
  51. </u-form-item>
  52. <u-form-item label-width='260' label="货名">
  53. <u-input v-model="list.contractGoodsInfo.goodsName" input-align="right" placeholder="" disabled />
  54. </u-form-item>
  55. <u-form-item label-width='260' label="水分(%)<=">
  56. <u-input v-model="list.contractGoodsInfo.waterContent" input-align="right" placeholder="" disabled />
  57. </u-form-item>
  58. <u-form-item label-width='260' label="品级">
  59. <u-input v-model="list.contractGoodsInfo.grade" input-align="right" placeholder="" disabled />
  60. </u-form-item>
  61. <u-form-item label-width='260' label="杂质(%)<=">
  62. <u-input v-model="list.contractGoodsInfo.impurity" input-align="right" placeholder="" disabled />
  63. </u-form-item>
  64. <u-form-item label-width='260' label="容重(克/升)>=">
  65. <u-input v-model="list.contractGoodsInfo.bulkDensity" input-align="right" placeholder="" disabled />
  66. </u-form-item>
  67. <u-form-item label-width='260' label="霉变粒(%)<=">
  68. <u-input v-model="list.contractGoodsInfo.mildewGrain" input-align="right" placeholder="" disabled />
  69. </u-form-item>
  70. <u-form-item label-width='260' label="热损伤(%)<=">
  71. <u-input v-model="list.contractGoodsInfo.jiaorenli" input-align="right" placeholder="" disabled />
  72. </u-form-item>
  73. <u-form-item label-width='260' label="不完善粒(%)<=">
  74. <u-input v-model="list.contractGoodsInfo.imperfectGrain" input-align="right" placeholder="" disabled />
  75. </u-form-item>
  76. <u-form-item label-width='260' label="合同收入(元)">
  77. <u-input v-model="list.contractProcessInfo.goodsNameKey" input-align="right" placeholder="" disabled />
  78. </u-form-item>
  79. <u-form-item label-width='260' label="已开发票(元)">
  80. <u-input v-model="list.contractProcessInfo.goodsName" input-align="right" placeholder="" disabled />
  81. </u-form-item>
  82. <u-form-item label-width='260' label="费用支出(元)">
  83. <u-input v-model="list.contractProcessInfo.waterContent" input-align="right" placeholder="" disabled />
  84. </u-form-item>
  85. <u-form-item label-width='260' label="未开发票(元)">
  86. <u-input v-model="list.contractProcessInfo.impurity" input-align="right" placeholder="" disabled />
  87. </u-form-item>
  88. <u-form-item label-width='260' label="未回款(元)">
  89. <u-input v-model="list.contractProcessInfo.mildewGrain" input-align="right" placeholder="" disabled />
  90. </u-form-item>
  91. <u-form-item label-width='260' label="双章原件回收情况">
  92. <u-input v-model="list.contractProcessInfo.grade" input-align="right" placeholder="" disabled />
  93. </u-form-item>
  94. <u-form-item label-width='260' label="备注信息">
  95. </u-form-item>
  96. <u-form-item>
  97. <textarea class='textarea' v-model="list.remarks" input-align="right" placeholder="" disabled />
  98. </u-form-item>
  99. <u-form-item label-width='260' label="附件">
  100. <!-- <view class="textCss">
  101. <upload class="upload" ref="upload" :action="action" :max-size="maxSize" :max-count="1"
  102. :file-list="imglist" :size-type="['compressed']" @on-success="getImgUrl" @on-error="onError"
  103. @on-remove="onRemove" @on-uploaded="isAdd = true" :before-upload="filterFileType"
  104. @on-progress="onProgress" :deletable="false" :showProgress = "false"></upload>
  105. </view> -->
  106. <view v-if='imglist.length>0'>
  107. <view style="justify-content: space-between;" class='flex' v-for='item in imglist'>
  108. <view style="max-width:60%;word-break: break-word">
  109. {{item.appendixName}}
  110. </view>
  111. <view class="" style="color: #19be6b;text-decoration:underline;" @click="openDocument(item)">
  112. 点击下载
  113. </view>
  114. <!-- <u-icon name="attach" ></u-icon> -->
  115. <!-- <image style='width: 200rpx;height: 200rpx;' :src="item" mode=""></image> -->
  116. </view>
  117. </view>
  118. </u-form-item>
  119. <view class="content2">
  120. <view class="title row">
  121. 流程
  122. </view>
  123. <view v-for="(item,index) in auditList" :key='index' class="audit">
  124. <view class="row">
  125. <view class="left">
  126. <view class="item1">
  127. <view class="item-content">{{item.operatorTitle}}</view>
  128. <view v-if="item.status=='success'" class='status success'>
  129. <u-icon name="checkmark" color="#2979ff" size="24"></u-icon>
  130. </view>
  131. <view v-if="item.status=='error'" class='status error'>
  132. <u-icon name="close" color="rgb(245, 108, 108)" size="24"></u-icon>
  133. </view>
  134. <view v-if="item.status=='question'" class='status question'>
  135. <u-icon name="question" color="#f9ae3d" size="24"></u-icon>
  136. </view>
  137. </view>
  138. </view>
  139. <view class="right">
  140. <view class="right-item">
  141. <view class="item2">
  142. <view class="name">{{item.desc}}
  143. </view>
  144. <!-- <view class='time'>{{item.updateDate}}</view> -->
  145. <view v-if="item.status=='success'" class="status success">{{item.commonStaffs1?item.staffscontent:item.operatorName}}<text v-if='!item.commonStaffs1&&index!=0'>已审核</text></view>
  146. <view v-if="item.status=='error'" class="status error">{{item.commonStaffs1?item.staffscontent:item.operatorName}}<text v-if='!item.commonStaffs1'>{{item.workflowHistoricTasks ? "已驳回":''}}</text></view>
  147. <view v-if="item.status=='question'" class="status question">{{item.commonStaffs1?item.staffscontent:''}}<text v-if='!item.commonStaffs1'>未审核</text></view>
  148. <!-- <view class="status success">吕波(已审核)</view> -->
  149. </view>
  150. <view v-if='index==0||item.workflowHistoricTasks&&item.workflowHistoricTasks.length>0' class='time'>
  151. {{item.updateDate}}
  152. </view>
  153. </view>
  154. <view v-if='item.auditMind' class="right-content">
  155. {{item.auditMind}}
  156. </view>
  157. </view>
  158. <view v-if='item.commonStaffs1' class="right">
  159. <u-icon @click='showcontent(item)' :name="item.showflow?'arrow-up':'arrow-down'" size="28"></u-icon>
  160. </view>
  161. </view>
  162. <view v-if='item.showflow' style='padding:10px 0 0 50px;'>
  163. <view class='row2'>
  164. <view v-for='item1 in item.commonStaffs1' style='margin:5px;text-align:center;'>
  165. <view class="item-content">
  166. <u-icon v-if='item1.status' name="checkmark" color="#fff" size="14"></u-icon>
  167. <u-icon v-if='!item1.status' name="question" color="#f9ae3d" size="14"></u-icon>
  168. </view>
  169. <view class="name">{{item1.staffName}}</view>
  170. </view>
  171. </view>
  172. </view>
  173. <view class="row-line" v-if="index!= auditList.length - 1"></view>
  174. </view>
  175. </view>
  176. </u-form>
  177. <view v-if='list.taskId' style='padding:10px;' class='flex bottom-btn'>
  178. <u-button v-if='list.approveStatus||isSHowBtn' @click='reject' type="error" class="btn1" hover-class='none'>
  179. 驳回
  180. </u-button>
  181. <u-button v-if='list.approveStatus||isSHowBtn' @click='pass' type="success" class="btn2">通过</u-button>
  182. </view>
  183. <view v-if='show' class="shade">
  184. <view class="wrap">
  185. <view class="alert-top">
  186. <view class="title">
  187. {{title}}
  188. </view>
  189. <u-icon name="close" class="close" color="#8890B1" @click="close()"></u-icon>
  190. </view>
  191. <view class="u-textarea-style">
  192. <view class="right-bottom">
  193. {{auditMind.length}}/100个字
  194. </view>
  195. <u-input class="" v-model='auditMind' placeholder="请在此输入审核意见" type="textarea" height="414"
  196. maxlength="100" />
  197. </view>
  198. <view @click='close()' class="cancel">取消</view>
  199. <view @click='passSubmit()' class="confirm">确定</view>
  200. </view>
  201. </view>
  202. <view @click='imgShow=false' v-if="imgShow" class="shade">
  203. <image style='position:absolute;top:0;left:0;right:0;bottom:0;margin:auto;' :src="url" mode=""></image>
  204. </view>
  205. </view>
  206. </template>
  207. <script>
  208. import upload from '@/components/upload.vue';
  209. import helper from '@/common/helper.js';
  210. export default {
  211. components: {
  212. upload
  213. },
  214. data() {
  215. return {
  216. isSHowBtn: true,
  217. id: "",
  218. currentPage: 1,
  219. pageSize: 10,
  220. auditList:[],
  221. showflow:false,
  222. list: {
  223. status: "",
  224. contractGoodsInfo: {},
  225. contractProcessInfo: {}
  226. },
  227. imglist: [],
  228. auditMind: '',
  229. src: '../../../static/img/myimg/LiangShang@2x.png',
  230. show: false,
  231. title: '',
  232. contractNo: "",
  233. action: this.$uploadUrl,
  234. maxSize: 50 * 1024 * 1024, //限制文件大小 50M
  235. isAdd: true,
  236. imgShow: false,
  237. url: "",
  238. everyCheck: ''
  239. }
  240. },
  241. onBackPress(e) {
  242. if(this.everyCheck){
  243. uni.navigateTo({
  244. url: "/pages/task/my_task"
  245. })
  246. return true;
  247. }
  248. },
  249. onLoad(options) {
  250. this.id = options.id
  251. this.everyCheck = uni.getStorageSync("everyTask")
  252. this.isSHowBtn = options.isShowbtn
  253. },
  254. onShow(){
  255. this.getList()
  256. },
  257. methods: {
  258. openDocument(src){
  259. uni.downloadFile({
  260. url: src.appendixPath,
  261. success: function (res) {
  262. var filePath = res.tempFilePath;
  263. uni.openDocument({
  264. filePath: filePath,
  265. showMenu: true,
  266. success: function (res) {
  267. console.log('打开文档成功');
  268. }
  269. });
  270. }
  271. });
  272. },
  273. shadeshow(url) {
  274. this.imgShow = true
  275. this.url = url
  276. },
  277. showcontent(item){
  278. item.showflow=!item.showflow
  279. },
  280. getList(id) {
  281. uni.showLoading({
  282. title:'加载中',
  283. mask:true
  284. })
  285. var that = this
  286. this.$api.doRequest('get', '/contractManagementInfo/getInfo', {
  287. id: this.id
  288. }).then(res => {
  289. if (res.data.code == 200) {
  290. this.list = res.data.data
  291. if (this.list.deliverType == 1) {
  292. this.list.deliverType1 = '我方自提'
  293. } else if (this.list.deliverType == 2) {
  294. this.list.deliverType1 = '对方送货'
  295. }else if (this.list.deliverType == 3) {
  296. this.list.deliverType1 = '对方送货(临时库)'
  297. }
  298. // 查合同附件
  299. this.$api.doRequest('get', '/appendix/query/getFileList', {
  300. appendixIds: that.list.addressUrl
  301. }).then(res1 => {
  302. that.imglist=res1.data.data
  303. })
  304. // 查流程
  305. this.$api.doRequest('get', '/workflow/query/workflowDefinitions', {
  306. businessCode: 'SHOU-CONTRACT-APPROVE',
  307. tmpCompId: uni.getStorageSync('pcUserInfo').compId
  308. }).then(res1 => {
  309. this.$api.doRequest('get', '/commonUser/getHis', {
  310. workflowId: res1.data.data[0].id,
  311. businessKey: this.id
  312. }).then(response => {
  313. uni.hideLoading()
  314. for (let i = 0; i < response.data.data.length; i++) {
  315. this.$set(response.data.data[i],'status','question')
  316. console.log(response.data.data[i].workflowHistoricTasks,i)
  317. if(response.data.data[i].commonStaffs){
  318. response.data.data[i].showflow=false
  319. response.data.data[i].operatorTitle=response.data.data[i].desc.substring(0,2)
  320. response.data.data[i].operatorName=response.data.data[i].desc
  321. response.data.data[i].staffscontent='共'+response.data.data[i].commonStaffs.length+'人,当前审核'+response.data.data[i].workflowHistoricTasks.length+'人'
  322. if(response.data.data[i].workflowHistoricTasks&&response.data.data[i].workflowHistoricTasks.length>0){
  323. if(response.data.data[i].workflowHistoricTasks.length!=response.data.data[i].commonStaffs.length){
  324. // response.data.data[i].status='question'
  325. this.$set(response.data.data[i],'status','question')
  326. }else{
  327. this.$set(response.data.data[i],'status','success')
  328. // response.data.data[i].status='success'
  329. }
  330. response.data.data[i].workflowlen=response.data.data[i].workflowHistoricTasks.length
  331. var workflowdata=response.data.data[i].workflowHistoricTasks
  332. var staffsdata=response.data.data[i].commonStaffs
  333. for (let q = 0; q < staffsdata.length; q++) {
  334. staffsdata[q].status=false
  335. staffsdata[q].staffTitle=staffsdata[q].staffName
  336. for (let k = 0; k < workflowdata.length; k++) {
  337. if(staffsdata[q].staffId==workflowdata[k].operatorId){
  338. staffsdata[q].status=true
  339. }
  340. }
  341. }
  342. }
  343. response.data.data[i].commonStaffs1=response.data.data[i].commonStaffs
  344. }else{
  345. if(response.data.data[i].workflowHistoricTasks&&response.data.data[i].workflowHistoricTasks.length>0){
  346. var len =response.data.data[i].workflowHistoricTasks.length-1
  347. if(response.data.data[i].workflowHistoricTasks[len].approved){
  348. this.$set(response.data.data[i],'status','success')
  349. }else{
  350. this.$set(response.data.data[i],'status','error')
  351. }
  352. response.data.data[i].operatorTitle=response.data.data[i].workflowHistoricTasks[len].operatorName.substring(response.data.data[i].workflowHistoricTasks[0].operatorName.length - 2)
  353. response.data.data[i].operatorName=response.data.data[i].workflowHistoricTasks[len].operatorName
  354. var time=new Date(response.data.data[i].workflowHistoricTasks[len].claimTime).getTime()
  355. response.data.data[i].updateDate=this.$u.timeFormat(time, 'mm.dd hh:MM')
  356. response.data.data[i].auditMind=response.data.data[i].workflowHistoricTasks[len].auditMind
  357. }else{
  358. this.$set(response.data.data[i],'status','question')
  359. // response.data.data[i].status='question'
  360. if(response.data.data[i].desc=='总经理助理审核'){
  361. response.data.data[i].operatorTitle='总助'
  362. }else if(response.data.data[i].desc=='杜大光审核'){
  363. response.data.data[i].operatorTitle='大光'
  364. }else{
  365. response.data.data[i].operatorTitle=response.data.data[i].desc.substring(0,2)
  366. }
  367. response.data.data[i].operatorName=response.data.data[i].desc
  368. var time1=new Date(response.data.data[i].updateDate).getTime()
  369. response.data.data[i].updateDate=this.$u.timeFormat(time1, 'mm.dd hh:MM')
  370. response.data.data[i].auditMind=''
  371. }
  372. }
  373. }
  374. console.log(response.data.data)
  375. this.auditList = response.data.data
  376. var time2=new Date(this.list.createDate).getTime()
  377. var time3=this.$u.timeFormat(time2, 'mm.dd hh:MM')
  378. this.auditList.unshift({
  379. operatorTitle:this.list.creater.substring(0,2),
  380. operatorName:this.list.creater,
  381. updateDate:time3,
  382. auditMind:'',
  383. desc:'发起申请',
  384. showflow:false,
  385. commonStaffs1:null,
  386. commonStaffs:null,
  387. workflowHistoricTasks:[],
  388. status:'success'
  389. })
  390. })
  391. })
  392. }
  393. })
  394. },
  395. filterFileType(index, lists) {
  396. if (lists[index].fileType != 'jpg' && lists[index].fileType != 'png' && lists[index].fileType != 'gif') {
  397. lists.splice(index, 1);
  398. // 当前文件不支持
  399. uni.showModal({
  400. title: '暂不支持当前图片类型',
  401. showCancel: false
  402. });
  403. } else {
  404. this.isAdd = false;
  405. }
  406. },
  407. //驳回
  408. rejectSubmit() {
  409. uni.showLoading({
  410. title: '加载中',
  411. mask: true
  412. });
  413. var that = this
  414. that.$api.doRequest('post', '/workflow/api/handle', {
  415. taskId: that.list.taskId,
  416. approved: false,
  417. auditMind: this.auditMind,
  418. needReapply: true,
  419. }).then(res => {
  420. that.$api.msg('驳回成功')
  421. that.show = false
  422. setTimeout(function() {
  423. if (that.everyCheck) {
  424. helper.setAudit(that.list)
  425. } else {
  426. uni.navigateBack()
  427. }
  428. uni.hideLoading()
  429. }, 1000);
  430. })
  431. },
  432. close() {
  433. this.show = false
  434. },
  435. pass() {
  436. this.show = true
  437. this.title = '审核意见(通过)'
  438. },
  439. reject() {
  440. this.show = true
  441. this.title = '驳回原因(驳回)'
  442. },
  443. //通过
  444. passSubmit() {
  445. var that = this
  446. if (this.title == '驳回原因(驳回)') {
  447. this.rejectSubmit()
  448. } else {
  449. uni.showLoading({
  450. title: '加载中',
  451. mask: true
  452. });
  453. that.$api.doRequest('post', '/workflow/api/handle', {
  454. taskId: that.list.taskId,
  455. approved: true,
  456. auditMind: this.auditMind,
  457. needReapply: true,
  458. }).then(res => {
  459. that.$api.msg('通过成功')
  460. that.show = false
  461. setTimeout(function() {
  462. if (that.everyCheck) {
  463. helper.setAudit(that.list)
  464. } else {
  465. uni.navigateBack()
  466. }
  467. uni.hideLoading()
  468. }, 1000);
  469. })
  470. }
  471. },
  472. //审核方法
  473. audit(item, index, status, status2, reason) {
  474. if (index < this.list.length) {
  475. this.$api.doRequest('post', '/workflow/api/handle', {
  476. taskId: item.taskId,
  477. approved: status,
  478. auditMind: reason != undefined ? '已驳回' : '34',
  479. needReapply: status2 != undefined ? true : false,
  480. }).then(res => {
  481. this.audit(this.list[index + 1], index + 1, status)
  482. })
  483. } else {
  484. if (status == true) {
  485. that.$api.msg('通过成功')
  486. this.getList()
  487. } else if (status == false) {
  488. that.$api.msg('驳回成功')
  489. this.getList()
  490. }
  491. }
  492. },
  493. }
  494. }
  495. </script>
  496. <style scoped lang="scss">
  497. .container {
  498. padding: 20rpx 20rpx 250rpx 20rpx;
  499. }
  500. .u-form {
  501. background: #fff;
  502. border-radius: 10px;
  503. padding: 0 10px;
  504. .u-form-item {
  505. line-height: 30px;
  506. padding: 5px 0;
  507. }
  508. }
  509. .content {
  510. margin-top: 30rpx;
  511. .top {
  512. display: flex;
  513. justify-content: space-between;
  514. }
  515. .content-item {
  516. border-radius: 20rpx;
  517. background: white;
  518. padding: 40rpx 20rpx;
  519. margin-bottom: 30rpx;
  520. }
  521. .title {
  522. font-size: 32rpx;
  523. font-weight: 600;
  524. color: #333333;
  525. text-align: left;
  526. margin: 20rpx 0;
  527. }
  528. .car-container {
  529. border-bottom: 2rpx solid #EEEEEE;
  530. }
  531. .car-type-item {
  532. font-size: 28rpx;
  533. margin: 20rpx 0;
  534. color: #878C9C;
  535. }
  536. .weightInfoCss {
  537. font-size: 28rpx;
  538. color: #333333;
  539. font-weight: 500;
  540. }
  541. .row {
  542. display: flex;
  543. justify-content: space-between;
  544. // .right,
  545. // input {
  546. // font-size: 28rpx;
  547. // // color: #333333;
  548. // }
  549. }
  550. .money {
  551. font-size: 32rpx;
  552. font-weight: 500;
  553. margin-bottom: 30rpx;
  554. }
  555. .moneyInfo {
  556. color: #22C572;
  557. font-size: 32rpx;
  558. }
  559. }
  560. .bottom-btn {
  561. width: 100%;
  562. position: fixed;
  563. bottom: 0;
  564. display: flex;
  565. z-index: 2;
  566. left: 0;
  567. background-color: #f8f8f8;
  568. flex-direction: column;
  569. .btn1,
  570. .btn2 {
  571. width: 100%;
  572. margin-bottom: 26rpx;
  573. border-radius: 90rpx;
  574. }
  575. .btn1 {
  576. background: white;
  577. color: #00C265;
  578. }
  579. }
  580. .topInfo {
  581. height: 210rpx;
  582. background: linear-gradient(270deg, #22C572 0%, #34DE8A 100%);
  583. padding: 30rpx;
  584. .topInfo-item {
  585. height: 150rpx;
  586. background-color: #FFFFFF;
  587. border-radius: 20rpx;
  588. padding: 40rpx;
  589. .logo {
  590. width: 40rpx;
  591. height: 40rpx;
  592. margin-top: 8rpx;
  593. }
  594. .infoText {
  595. font-size: 36rpx;
  596. font-weight: 600;
  597. margin-left: 20rpx;
  598. }
  599. .infoData {
  600. color: #878C9C;
  601. font-size: 26rpx;
  602. margin-top: 10rpx;
  603. }
  604. }
  605. }
  606. .shade {
  607. position: fixed;
  608. top: 0;
  609. left: 0;
  610. height: 100%;
  611. width: 100%;
  612. background: rgba(0, 0, 0, 0.4);
  613. z-index: 3;
  614. .wrap {
  615. position: absolute;
  616. left: 0;
  617. top: 0;
  618. right: 0;
  619. bottom: 0;
  620. margin: auto;
  621. background: #fff;
  622. width: calc(100% - 198rpx);
  623. height: 700rpx;
  624. border-radius: 20rpx;
  625. .alert-top {
  626. padding: 33rpx;
  627. display: flex;
  628. justify-content: center;
  629. align-items: center;
  630. position: relative;
  631. }
  632. .title {
  633. font-size: 32rpx;
  634. font-weight: 600;
  635. color: #333333;
  636. }
  637. .close {
  638. position: absolute;
  639. right: 33rpx;
  640. }
  641. }
  642. }
  643. .cancel,
  644. .confirm {
  645. position: absolute;
  646. display: inline-block;
  647. width: 50%;
  648. text-align: center;
  649. bottom: 0;
  650. padding: 10px;
  651. border-top: 1px solid #eee;
  652. font-size: 34rpx;
  653. }
  654. .cancel {
  655. left: 0;
  656. border-right: 1px solid #eee;
  657. color: #AFB3BF;
  658. }
  659. .confirm {
  660. right: 0;
  661. color: #22C572;
  662. }
  663. .textCss {
  664. display: flex;
  665. justify-content: flex-end;
  666. width: 100%;
  667. text-align: right;
  668. }
  669. .textarea {
  670. margin: 20px auto;
  671. width: 100%;
  672. background: #F9F9FA;
  673. border-radius: 10px;
  674. border: 1px solid #EEEEEE;
  675. font-size: 28rpx;
  676. padding: 10px;
  677. }
  678. .u-textarea-style {
  679. margin: 20rpx;
  680. background: #F9F9FA;
  681. border-radius: 10px;
  682. border: 1px solid #EEEEEE;
  683. padding: 10rpx 20rpx;
  684. position: relative;
  685. .right-bottom {
  686. position: absolute;
  687. right: 20rpx;
  688. bottom: 20rpx;
  689. color: #AFB3BF;
  690. }
  691. }
  692. .content2 {
  693. background: white;
  694. margin: 20rpx 0;
  695. border-radius: 20rpx;
  696. padding: 20rpx;
  697. .row {
  698. display: flex;
  699. .left {
  700. display: flex;
  701. align-items: center;
  702. .item1{
  703. position:relative;
  704. .item-content{
  705. background:#22C572;
  706. width: 50px;
  707. height: 50px;
  708. border-radius: 10px;
  709. line-height: 50px;
  710. text-align: center;
  711. font-size: 18px;
  712. color: #fff;
  713. }
  714. .status{
  715. position:absolute;
  716. border-radius: 50%;
  717. padding: 0px 2px;
  718. right: -3px;
  719. bottom: -3px;
  720. background:#fff;
  721. }
  722. .status.success{
  723. border:1px solid rgb(60, 156, 255);
  724. }
  725. .status.error{
  726. border:1px solid rgb(245, 108, 108);
  727. }
  728. .status.question{
  729. border:1px solid #f9ae3d;
  730. }
  731. }
  732. }
  733. .right {
  734. width:80%;
  735. // color: #B0B1B5;
  736. margin-top: 10px;
  737. .right-content{
  738. background:#F2F3F7;
  739. margin-left:10px;
  740. margin-top:10px;
  741. padding:10px;
  742. border-radius:5px;
  743. color: #B0B1B5;
  744. }
  745. .right-item{
  746. display: flex;
  747. justify-content: space-between;
  748. .time{
  749. color:#999;
  750. }
  751. .item2 {
  752. margin-left: 20rpx;
  753. .name {
  754. font-size: 28rpx;
  755. font-weight: 800;
  756. }
  757. .status.success {
  758. color: #6CC48C;
  759. }
  760. .status.error {
  761. color: rgb(245, 108, 108);
  762. }
  763. .status.question {
  764. color: #f9ae3d;
  765. }
  766. }
  767. }
  768. }
  769. }
  770. .row2{
  771. display:flex;
  772. .item-content{
  773. background:#22C572;
  774. width: 30px;
  775. height: 30px;
  776. border-radius: 50%;
  777. line-height: 30px;
  778. text-align: center;
  779. font-size: 12px;
  780. color: #fff;
  781. padding:0 2px;
  782. margin:0 auto;
  783. }
  784. .status{
  785. position:absolute;
  786. top:0;right:0;
  787. }
  788. }
  789. .row-line {
  790. width: 1px;
  791. height: 30px;
  792. background: #F2F2F2;
  793. margin: 10rpx 50rpx;
  794. }
  795. .audit {
  796. margin-top: 20rpx;
  797. }
  798. }
  799. </style>