BillPending.vue 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060
  1. <template>
  2. <view class="">
  3. <h3 class="userInfotenantName">{{userInfotenantName}}</h3>
  4. <view class="subsection">
  5. <u-subsection :list="list" fontSize="30rpx" :current="current" @change="sectionChange"></u-subsection>
  6. </view>
  7. <!-- 账单明细 -->
  8. <view class="" v-show="cdshow==0">
  9. <view class="topbilledit">
  10. <view class="changetime1">
  11. <picker mode="date" :value="myday" fields="month" @change="dateChange">
  12. <view class="selestDate">{{myday}}</view>
  13. </picker>
  14. </view>
  15. <view class="changetime2">
  16. <u-icon name="arrow-down-fill" color="#666666" size="20"></u-icon>
  17. </view>
  18. </view>
  19. <view style="padding:20rpx 0 0 30rpx">
  20. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  21. </view>
  22. <view class="u-listdata">
  23. <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
  24. <u-list-item v-for="(item, index) in indexList1" :key="index">
  25. <view class="paisong">
  26. <view class="outstanding1" v-if='item.status==1'>
  27. 已支付
  28. </view>
  29. <view class="outstanding2" v-if='item.status==2'>
  30. 待支付
  31. </view>
  32. <view class="outstanding3" v-if='item.status==3'>
  33. 支付失败
  34. </view>
  35. <view class="Currentamount" @click="paybills(item)">
  36. <checkbox :checked="item.check"/>
  37. 物业费: <span>¥{{item.amount}}</span>
  38. </view>
  39. <view class="Currentamount1">
  40. 管理费:{{item.billLists[0].amount}}
  41. </view>
  42. <view class="Currentamount1">
  43. 中央空调使用费:{{item.billLists[1].amount}}
  44. </view>
  45. <view class="Currentamount1">
  46. 电梯费:{{item.billLists[2].amount}}
  47. </view>
  48. </view>
  49. </u-list-item>
  50. </u-list>
  51. </view>
  52. <view class="zhifu" v-show="zhifumk">
  53. <view class="zhifuleft">
  54. <checkbox :checked="quanxuan"/>
  55. 全选
  56. </view>
  57. <view class="zhifuright" @click="Immediatepayment">
  58. <view class="heji">
  59. 合计:<span>¥ {{heji}}</span>
  60. </view>
  61. <view class="likezhifu">
  62. <u-button type="primary" size='mini' shape='circle' text="立即支付"></u-button>
  63. </view>
  64. </view>
  65. </view>
  66. </view>
  67. <!--缴费记录 -->
  68. <view class="" v-show="cdshow==1">
  69. <!-- 列表 -->
  70. <view class="u-listdata">
  71. <view class="topbilledit" @click="typechange">
  72. <view class="changetime1">
  73. {{mytype}}
  74. </view>
  75. <view class="changetime2">
  76. <u-icon name="arrow-down-fill" color="#666666" size="20"></u-icon>
  77. </view>
  78. </view>
  79. <view style="padding:20rpx 0 0 30rpx">
  80. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  81. </view>
  82. <u-list @scrolltolower="scrolltolower2" :pagingEnabled='true'>
  83. <u-list-item v-for="(item, index) in indexList2" :key="index">
  84. <view class="paisong2">
  85. <view class="settled1" v-if="item.type=='Subsidy'">
  86. 补助
  87. </view>
  88. <view class="settled2" v-if="item.type=='PreStorage'">
  89. 预存
  90. </view>
  91. <!-- <view class="settled3" v-if="item.type==3">
  92. 普通
  93. </view> -->
  94. <h3>{{item.tenantInfo.name}}</h3>
  95. <view class="Currentamount1">
  96. 扣缴金额:{{item.amount}}
  97. </view>
  98. <view class="Currentamount1">
  99. 账户金额:{{item.surplus}}
  100. </view>
  101. <view class="Currentamount1">
  102. 租户电话:{{item.tenantInfo.tel}}
  103. </view>
  104. <view class="Currentamount1">
  105. 操作人:{{item.createName}}
  106. </view>
  107. <view class="Currentamount1">
  108. 扣缴时间:{{item.createDate}}
  109. </view>
  110. </view>
  111. </u-list-item>
  112. </u-list>
  113. <view class="Predeposit" v-show="Predepositshow">
  114. <u-button type="primary" text="预存充值" @click="Predeposit"></u-button>
  115. </view>
  116. </view>
  117. </view>
  118. <u-picker :show="showtype" :columns="columnstype" keyName="dictLabel" @confirm="confirmtype"
  119. @cancel='canceltype'></u-picker>
  120. <u-popup :show="showpay" @close="closepay" @open="openpay" mode="bottom" :round="10" :closeable=true
  121. :closeOnClickOverlay=true>
  122. <view class="paytall">
  123. <!-- <text>请选择支付方式</text> -->
  124. <view class="hejitop">
  125. ¥ {{heji}}
  126. </view>
  127. <view class="zhifufs">
  128. <u-radio-group @change="groupChange" v-model="radiovalue1" placement="column" iconPlacement="right">
  129. <u-radio :customStyle="{marginBottom: '8px'}" v-for="(item, index) in radiolist1" :key="index"
  130. :label="item.name" :name="item.id">
  131. </u-radio>
  132. </u-radio-group>
  133. </view>
  134. <view style="margin: 0 30rpx;">
  135. <u-button type="primary" text="确认支付" @click="Confirmationpayment"></u-button>
  136. </view>
  137. </view>
  138. </u-popup>
  139. <u-modal :show="showjiaofei" title="提示" content='当前账户余额不足,请问是否充值?' @confirm="jiaofeiconfirm"
  140. @cancel='jiaofeicancel' :showCancelButton=true></u-modal>
  141. <view class="canys" v-if="zhifucanvas">
  142. <h4>请用微信扫码二维码</h4>
  143. <canvas class="zhifucanvas" canvas-id='canvas'></canvas>
  144. <view class="guanbi">
  145. <u-button type="primary" :plain="true" text="关闭" @click="guanbi"></u-button>
  146. </view>
  147. </view>
  148. <u-popup :show="showpayjine" @close="closepay1" @open="openpay1" mode="bottom" :round="10" :closeable=true
  149. :closeOnClickOverlay=true>
  150. <view class="paytall1">
  151. <!-- <text>请选择支付方式</text> -->
  152. <view class="hejitop">
  153. 预存
  154. </view>
  155. <view class="zhifufs">
  156. <u--form
  157. labelWidth="100"
  158. labelPosition="left"
  159. :model="model1"
  160. :rules="rules"
  161. ref="uForm"
  162. >
  163. <u-form-item
  164. label="金额"
  165. prop="userInfo.amount"
  166. borderBottom
  167. ref="item1"
  168. >
  169. <u--input
  170. v-model="model1.userInfo.amount"
  171. border="none"
  172. ></u--input>
  173. </u-form-item>
  174. </u--form>
  175. </view>
  176. <view style="margin: 0 30rpx;">
  177. <u-button type="primary" text="确认支付" @click="Confirmationpaymentjine"></u-button>
  178. </view>
  179. </view>
  180. </u-popup>
  181. <u-notify ref="uNotify" message=""></u-notify>
  182. </view>
  183. </template>
  184. <script>
  185. var QRCode = require('@/utils/qrcode.js');
  186. const BaseApi = require("@/http/baseApi.js");
  187. // import {isEmpty,getDictDataList} from "@/utils/index";
  188. export default {
  189. name: 'Workordertodone',
  190. data() {
  191. const currentDate = this.getDate({
  192. format: 'yyyy-mm'
  193. })
  194. return {
  195. model1: {
  196. userInfo: {
  197. amount: '',
  198. },
  199. },
  200. rules: {
  201. 'userInfo.amount': {
  202. type: 'string',
  203. required: true,
  204. message: '请填写预存金额',
  205. trigger: ['blur', 'change']
  206. },
  207. },
  208. Predepositshow:true,
  209. showpayjine: false,
  210. showcw: false,
  211. zhifucanvas: false,
  212. radiolist1: [],
  213. radiovalue1: '微信',
  214. showjiaofei: false,
  215. showpay: false,
  216. quanxuan: true,
  217. zhifumk: false,
  218. mytype: '全部',
  219. myday: currentDate,
  220. totalnumber: 0,
  221. jfnodata: false,
  222. showtype: false,
  223. cdshow: 0,
  224. fatherparameter: {},
  225. expensedata: '全部',
  226. list: ['账单明细', '缴费记录',],
  227. current: 0,
  228. dataForm: {
  229. tenantId: '',
  230. costCycle: currentDate,
  231. type: '',
  232. page: 1,
  233. limit: 10,
  234. },
  235. zhanghuyue: 0,
  236. heji: 0,
  237. indexList1: [],
  238. indexList2: [],
  239. payStatusList: [],
  240. nodata: true,
  241. pd: true,
  242. zhifufangshi: '',
  243. columnstype: [],
  244. repairTypeList: [],
  245. UrgencyTypelist: [],
  246. PayStatus: [],
  247. PropertyType: [],
  248. userInfotenantName: '',
  249. }
  250. },
  251. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  252. onLoad: function (options) { //option为object类型,会序列化上个页面传递的参数
  253. let userInfo = JSON.parse(decodeURIComponent(options.info));
  254. // console.log('userInfo', userInfo);
  255. this.userInfotenantName = userInfo.tenantName;
  256. this.dataForm.tenantId = userInfo.tenantId;
  257. let getDictDataList = uni.getStorageSync('getDictDataList');
  258. // console.log('111111111111111111', userInfo)
  259. for (let i = 0; i < getDictDataList.length; i++) {
  260. if (getDictDataList[i].dictType == 'PayType') {
  261. this.columnstype = [getDictDataList[i].dataList]
  262. }
  263. if (getDictDataList[i].dictType == 'PayStatus') {
  264. this.PayStatus = [getDictDataList[i].dataList]
  265. }
  266. if (getDictDataList[i].dictType == 'PropertyType') {
  267. this.PropertyType = [getDictDataList[i].dataList]
  268. }
  269. }
  270. // console.log('111111111111111111', this.PayStatus)
  271. this.getpaisongdata();
  272. },
  273. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  274. onReady() {
  275. },
  276. //监听页面隐藏
  277. onHide() {
  278. },
  279. //监听窗口尺寸变化
  280. onResize() {
  281. },
  282. //监听页面卸载
  283. onUnload() {
  284. },
  285. //监听用户下拉动作,一般用于下拉刷新
  286. onPullDownRefresh() {
  287. },
  288. methods: {
  289. guanbi(){
  290. this.zhifucanvas=false;
  291. this.Predepositshow=true;
  292. this.queryOrder1();
  293. this.queryOrder2();
  294. },
  295. Confirmationpaymentjine() {
  296. this.zhifucanvas=true;
  297. this.$refs.uForm.validate().then(res => {
  298. uni.$u.toast('校验通过')
  299. // console.log('111111111111111111', this.model1.userInfo.amount)
  300. this.showpayjine=false;
  301. this.Predepositshow=false;
  302. // this.Immediatepayment();
  303. let postdata = {
  304. totalFee: this.model1.userInfo.amount,
  305. tenantId: this.dataForm.tenantId,
  306. tradeType: 'NATIVE',
  307. billIds: ''
  308. }
  309. uni.request({
  310. url: BaseApi.BaseApi + '/pay/createOrder',
  311. method: "POST",
  312. data: postdata,
  313. header: {
  314. 'content-type': 'application/x-www-form-urlencoded',
  315. "token": uni.getStorageSync('tokendata'),
  316. },
  317. success: (res) => {
  318. // window.open(res.codeUrl, '_blank);
  319. let qrcode = new QRCode('canvas', {
  320. text: res.data.codeUrl, // weixin://wxpay/bizpayurl?pr=sZz****
  321. width: 213,
  322. height: 213,
  323. colorDark: "black",
  324. colorLight: "white",
  325. correctLevel: QRCode.CorrectLevel.H,
  326. });
  327. // 10秒之后调取查询订单
  328. let that = this;
  329. setTimeout(function () {
  330. that.queryOrder2();
  331. }, 15000);
  332. }
  333. });
  334. }).catch(errors => {
  335. uni.$u.toast('校验失败')
  336. })
  337. },
  338. groupChange(n) {
  339. console.log('groupChange', n);
  340. this.zhifufangshi = n;
  341. },
  342. Predeposit() {
  343. this.showpayjine = true;
  344. },
  345. queryOrder1() {
  346. this.Predepositshow=true;
  347. this.zhifucanvas = false;
  348. //this.cdshow = 0;
  349. this.indexList1 = [];
  350. this.dataForm.page = 1;
  351. this.getpaisongdata();
  352. },
  353. queryOrder2() {
  354. this.Predepositshow=true;
  355. this.zhifucanvas = false;
  356. this.indexList2 = [];
  357. this.dataForm.page = 1;
  358. this.getpayrecord();
  359. },
  360. Confirmationpayment() {
  361. if (this.zhifufangshi == 'zhanghu') {
  362. if (this.zhanghuyue >= this.heji) {
  363. console.log('账户余额支付',)
  364. //this.showpay=false;
  365. let billIdslist = [this.indexList1[0].billLists[0].id, this.indexList1[0].billLists[1].id,
  366. this.indexList1[0].billLists[2].id];
  367. let postdata = {
  368. amount: String(this.zhanghuyue - this.heji),
  369. tenantId: this.dataForm.tenantId,
  370. payType: 'Account',
  371. billIds: billIdslist
  372. }
  373. this.$api.post('/billinfo/billPay', postdata)
  374. .then(res => {
  375. // console.log('111111111111111111', res)
  376. if (res.data.code == 0) {
  377. this.zhifucanvas = true;
  378. this.$refs.uNotify.success(res.data.msg)
  379. this.showpay = false;
  380. this.indexList1 = [];
  381. this.dataForm.page = 1;
  382. this.getpaisongdata();
  383. } else {
  384. this.$refs.uNotify.error(res.data.msg)
  385. this.showpay = false;
  386. this.indexList1 = [];
  387. this.dataForm.page = 1;
  388. this.getpaisongdata();
  389. }
  390. })
  391. } else if (this.zhanghuyue < this.heji) {
  392. this.showjiaofei = true;
  393. }
  394. } else if (this.zhifufangshi == 'weixin') {
  395. this.zhifucanvas = true;
  396. this.showpay = false;
  397. let billIdslist = this.indexList1[0].billLists[0].id + ',' +
  398. this.indexList1[0].billLists[1].id + ',' + this.indexList1[0].billLists[2].id;
  399. // let postdata = {
  400. // totalFee: String(this.heji),
  401. // tenantId:Math.floor(this.dataForm.tenantId),
  402. // tradeType: 'NATIVE',
  403. // billIds: billIdslist
  404. // }
  405. let postdata = {
  406. totalFee: '0.01',
  407. tenantId:this.dataForm.tenantId,
  408. tradeType: 'NATIVE',
  409. billIds: billIdslist
  410. }
  411. uni.request({
  412. url: BaseApi.BaseApi + '/pay/createOrder',
  413. method: "POST",
  414. data: postdata,
  415. header: {
  416. 'content-type': 'application/x-www-form-urlencoded',
  417. "token": uni.getStorageSync('tokendata'),
  418. },
  419. success: (res) => {
  420. // window.open(res.codeUrl, '_blank);
  421. let qrcode = new QRCode('canvas', {
  422. text: res.data.codeUrl, // weixin://wxpay/bizpayurl?pr=sZz****
  423. width: 213,
  424. height: 213,
  425. colorDark: "black",
  426. colorLight: "white",
  427. correctLevel: QRCode.CorrectLevel.H,
  428. });
  429. //10秒之后调取查询订单
  430. let that = this;
  431. setTimeout(function () {
  432. that.queryOrder1();
  433. }, 15000);
  434. }
  435. });
  436. }
  437. },
  438. jiaofeiconfirm() {
  439. this.showpay = false;
  440. console.log('111111111111111111', this.heji - this.zhanghuyue)
  441. let billIdslist = this.indexList1[0].billLists[0].id + ',' +
  442. this.indexList1[0].billLists[1].id + ',' + this.indexList1[0].billLists[2].id;
  443. let postdata = {
  444. totalFee: String(this.heji - this.zhanghuyue),
  445. tenantId:this.dataForm.tenantId,
  446. tradeType: 'NATIVE',
  447. billIds: billIdslist
  448. }
  449. uni.request({
  450. url: BaseApi.BaseApi + '/pay/createOrder',
  451. method: "POST",
  452. data: postdata,
  453. header: {
  454. 'content-type': 'application/x-www-form-urlencoded',
  455. "token": uni.getStorageSync('tokendata'),
  456. },
  457. success: (res) => {
  458. // window.open(res.codeUrl, '_blank);
  459. let qrcode = new QRCode('canvas', {
  460. text: res.data.codeUrl, // weixin://wxpay/bizpayurl?pr=sZz****
  461. width: 213,
  462. height: 213,
  463. colorDark: "black",
  464. colorLight: "white",
  465. correctLevel: QRCode.CorrectLevel.H,
  466. });
  467. //10秒之后调取查询订单
  468. let that = this;
  469. setTimeout(function () {
  470. that.queryOrder1();
  471. }, 15000);
  472. }
  473. });
  474. },
  475. jiaofeicancel() {
  476. this.showjiaofei = false;
  477. },
  478. Immediatepayment() {
  479. this.$api.get('/accountinfo/detail/' + this.dataForm.tenantId, {})
  480. .then(res => {
  481. this.zhanghuyue = res.data.data.amount;
  482. this.showpay = true;
  483. this.radiolist1 = [{
  484. name: '微信',
  485. disabled: false,
  486. id: 'weixin',
  487. },
  488. {
  489. name: '账户余额' + '(可用¥' + this.zhanghuyue + ')',
  490. disabled: false,
  491. id: 'zhanghu'
  492. },
  493. ]
  494. })
  495. },
  496. openpay() {
  497. console.log('open');
  498. },
  499. closepay() {
  500. this.showpay = false
  501. // console.log('close');
  502. },
  503. openpay1() {
  504. console.log('open');
  505. },
  506. closepay1() {
  507. this.showpayjine = false
  508. // console.log('close');
  509. },
  510. paybills(e) {
  511. e.check = !e.check;
  512. if (e.check) {
  513. this.zhifumk = e.check
  514. } else {
  515. console.log('222222',e.check)
  516. this.zhifumk = e.check
  517. }
  518. },
  519. dateChange(e) {
  520. this.myday = e.target.value;
  521. this.dataForm.costCycle = e.target.value;
  522. this.dataForm.page = 1;
  523. this.indexList1 = [];
  524. this.getpaisongdata();
  525. },
  526. sectionChange(index) {
  527. this.current = index;
  528. if (index == 0) {
  529. this.cdshow = 0;
  530. this.indexList1 = [];
  531. this.dataForm.page = 1;
  532. this.getpaisongdata();
  533. } else if (index == 1) {
  534. this.cdshow = 1;
  535. this.indexList2 = [];
  536. this.dataForm.page = 1;
  537. this.getpayrecord();
  538. }
  539. },
  540. scrolltolower() {
  541. if (this.pd) {
  542. this.getpaisongdata();
  543. } else {
  544. return
  545. }
  546. },
  547. scrolltolower2() {
  548. if (this.pd) {
  549. this.getpayrecord();
  550. } else {
  551. return
  552. }
  553. },
  554. getpayrecord() {
  555. this.$api.get('/payrecord/page', this.dataForm)
  556. .then(res => {
  557. this.totalnumber = res.data.data.total;
  558. console.log('111111111111111111', res.data.data)
  559. if (res.data.data.list.length != 0) {
  560. this.indexList2.push(...res.data.data.list);
  561. this.dataForm.page = this.dataForm.page + 1;
  562. this.pd = true;
  563. this.jfnodata = false;
  564. } else {
  565. uni.showToast({
  566. title: '暂无更多数据了',
  567. icon: 'none',
  568. duration: 1500
  569. })
  570. this.pd = false;
  571. //this.jfnodata=true
  572. }
  573. })
  574. },
  575. getpaisongdata() {
  576. this.$api.post('/billinfo/billDetail', this.dataForm)
  577. .then(res => {
  578. this.totalnumber = res.data.data.length;
  579. //console.log('111111111111111111', res.data.data)
  580. if (res.data.data.length != 0) {
  581. //check
  582. for (let i = 0; i < res.data.data.length; i++) {
  583. res.data.data[i].check = false;
  584. }
  585. this.heji = res.data.data[0].amount;
  586. this.indexList1.push(...res.data.data);
  587. this.dataForm.page = this.dataForm.page + 1;
  588. this.pd = true;
  589. this.jfnodata = false;
  590. } else {
  591. uni.showToast({
  592. title: '暂无更多数据了',
  593. icon: 'none',
  594. duration: 1500
  595. })
  596. this.pd = false;
  597. //this.jfnodata=true
  598. }
  599. })
  600. },
  601. getDate(type) {
  602. const date = new Date();
  603. let year = date.getFullYear();
  604. let month = date.getMonth() + 1;
  605. if (type === 'start') {
  606. year = year - 60;
  607. } else if (type === 'end') {
  608. year = year + 2;
  609. }
  610. month = month > 9 ? month : '0' + month;
  611. // day = day > 9 ? day : '0' + day;
  612. return `${year}-${month}`;
  613. },
  614. typechange() {
  615. this.showtype = true;
  616. },
  617. confirmtype(e) {
  618. this.indexList2 = [];
  619. //console.log('111111111111111111', e.value[0])
  620. this.showtype = false;
  621. if (e.value[0].dictValue == 'all') {
  622. this.mytype = e.value[0].dictLabel;
  623. this.dataForm.type = '';
  624. this.dataForm.page = 1;
  625. this.getpayrecord();
  626. } else {
  627. this.mytype = e.value[0].dictLabel;
  628. this.dataForm.type = e.value[0].dictValue;
  629. this.dataForm.page = 1;
  630. this.getpayrecord();
  631. }
  632. },
  633. canceltype() {
  634. this.showtype = false;
  635. },
  636. }
  637. }
  638. </script>
  639. <style lang="scss">
  640. .Predeposit {
  641. position: fixed;
  642. bottom: 0;
  643. left: 0;
  644. right: 0;
  645. width: 750rpx;
  646. }
  647. .nodata {
  648. text-align: center;
  649. padding-top: 400rpx;
  650. }
  651. .zhifucanvas {
  652. width: 400rpx;
  653. height: 400rpx;
  654. margin: 0 auto;
  655. }
  656. .canys{
  657. width: 500rpx;
  658. height: 600rpx;
  659. position: fixed;
  660. top: 30%;
  661. left: 140rpx;
  662. background: #e6e6e6;
  663. h4{
  664. width: 500rpx;
  665. text-align: center;
  666. height: 80rpx;
  667. line-height: 80rpx;
  668. }
  669. }
  670. .guanbi{
  671. margin-top: 50rpx;
  672. }
  673. .zhifufs {
  674. padding: 30rpx;
  675. ::v-deep .u-radio-label--right {
  676. margin-top: 30rpx;
  677. }
  678. ::v-deep .u-radio__icon-wrap {
  679. width: 40rpx !important;
  680. height: 40rpx !important;
  681. }
  682. ::v-deep .u-radio__text {
  683. font-size: 32rpx !important;
  684. }
  685. }
  686. .hejitop {
  687. width: 750rpx;
  688. text-align: center;
  689. font-weight: bold;
  690. font-size: 40rpx;
  691. margin-bottom: 30rpx;
  692. }
  693. .paytall {
  694. width: 750rpx;
  695. height: 400rpx;
  696. background-color: #fff;
  697. }
  698. .paytall1 {
  699. width: 750rpx;
  700. height: 330rpx;
  701. background-color: #fff;
  702. }
  703. .heji span {
  704. color: #ED3A25;
  705. }
  706. .likezhifu {
  707. margin-left: 20rpx;
  708. margin-right: 30rpx;
  709. }
  710. .zhifu {
  711. position: fixed;
  712. right: 0 ;
  713. bottom: 0 ;
  714. left: 0 ;
  715. height: 140rpx;
  716. background-color: #fff;
  717. display: flex;
  718. align-items: center;
  719. justify-content: space-between;
  720. }
  721. .zhifuleft {
  722. margin-left: 30rpx;
  723. }
  724. .zhifuright {
  725. display: flex;
  726. align-items: center;
  727. justify-content: flex-end;
  728. }
  729. .outstanding1 {
  730. background-color: #09C700;
  731. width: 100rpx;
  732. height: 40rpx;
  733. text-align: center;
  734. line-height: 40rpx;
  735. color: #fff;
  736. font-size: 14 rpx;
  737. position: absolute;
  738. top: 0px;
  739. right: 0px;
  740. border-top-right-radius: 10rpx;
  741. border-bottom-left-radius: 10rpx;
  742. }
  743. .outstanding2 {
  744. background-color: #ED3A25;
  745. width: 100rpx;
  746. height: 40rpx;
  747. text-align: center;
  748. line-height: 40rpx;
  749. color: #fff;
  750. font-size: 14rpx;
  751. position: absolute;
  752. top: 0px;
  753. right: 0px;
  754. border-top-right-radius: 10rpx;
  755. border-bottom-left-radius: 10rpx;
  756. }
  757. .outstanding3 {
  758. background-color: #e6e6e6;
  759. width: 100rpx;
  760. height: 40rpx;
  761. text-align: center;
  762. line-height: 40rpx;
  763. color: #fff;
  764. font-size: 14 rpx;
  765. position: absolute;
  766. top: 0px;
  767. right: 0px;
  768. border-top-right-radius: 10rpx;
  769. border-bottom-left-radius: 10rpx;
  770. }
  771. .userInfotenantName {
  772. text-align: center;
  773. margin-bottom: 10rpx;
  774. font-size: 34rpx;
  775. }
  776. .topbilledit {
  777. display: flex;
  778. justify-content: space-around;
  779. align-items: center;
  780. }
  781. .changetime1 {
  782. padding-right: 10rpx;
  783. }
  784. .paisong {
  785. display: flex;
  786. flex-direction: column;
  787. justify-content: center;
  788. height: 220rpx;
  789. background-color: #fff;
  790. margin: 30rpx;
  791. border-radius: 9rpx;
  792. position: relative;
  793. h3 {
  794. height: 70rpx;
  795. line-height: 70rpx;
  796. padding-left: 30rpx;
  797. }
  798. }
  799. .paisong2 {
  800. display: flex;
  801. flex-direction: column;
  802. justify-content: center;
  803. height: 330rpx;
  804. background-color: #fff;
  805. margin: 30rpx;
  806. border-radius: 9rpx;
  807. position: relative;
  808. h3 {
  809. height: 70rpx;
  810. line-height: 70rpx;
  811. padding-left: 30rpx;
  812. }
  813. }
  814. .companylist {
  815. margin: 20rpx 30rpx;
  816. background: #fff;
  817. height: 280rpx;
  818. border-radius: 10px;
  819. position: relative;
  820. h3 {
  821. height: 70rpx;
  822. line-height: 70rpx;
  823. padding-left: 30rpx;
  824. }
  825. }
  826. .settled1 {
  827. background-color: #09C700;
  828. width: 100rpx;
  829. height: 40rpx;
  830. text-align: center;
  831. line-height: 40rpx;
  832. color: #fff;
  833. font-size: 14rpx;
  834. position: absolute;
  835. top: 0px;
  836. right: 0px;
  837. border-top-right-radius: 10rpx;
  838. border-bottom-left-radius: 10rpx;
  839. }
  840. .settled2 {
  841. background-color: #30D3A2;
  842. width: 100rpx;
  843. height: 40rpx;
  844. text-align: center;
  845. line-height: 40rpx;
  846. color: #fff;
  847. font-size: 14 rpx;
  848. position: absolute;
  849. top: 0px;
  850. right: 0px;
  851. border-top-right-radius: 10rpx;
  852. border-bottom-left-radius: 10rpx;
  853. }
  854. .settled3 {
  855. background-color: #30D3A2;
  856. width: 100rpx;
  857. height: 40rpx;
  858. text-align: center;
  859. line-height: 40rpx;
  860. color: #fff;
  861. font-size: 14rpx;
  862. position: absolute;
  863. top: 0px;
  864. right: 0px;
  865. border-top-right-radius: 10rpx;
  866. border-bottom-left-radius: 10rpx;
  867. }
  868. .Currentamount {
  869. padding-left: 30rpx;
  870. height: 50rpx;
  871. line-height: 50rpx;
  872. color: #BCB3A7;
  873. span {
  874. color: #FA5555;
  875. padding-left: 9rpx;
  876. }
  877. }
  878. .Currentamount1 {
  879. padding-left: 30rpx;
  880. height: 45rpx;
  881. line-height: 45rpx;
  882. color: #BCB3A7;
  883. span {
  884. color: #FA5555;
  885. padding-left: 9rpx;
  886. }
  887. }
  888. .records1 {
  889. background-color: #FA5555;
  890. width: 100rpx;
  891. height: 40rpx;
  892. text-align: center;
  893. line-height: 40rpx;
  894. color: #fff;
  895. font-size: 14rpx;
  896. position: absolute;
  897. top: 0px;
  898. right: 0px;
  899. border-top-right-radius: 10rpx;
  900. border-bottom-left-radius: 10rpx;
  901. }
  902. .records {
  903. display: flex;
  904. flex-direction: column;
  905. // justify-content: center;
  906. position: relative;
  907. width: 690rpx;
  908. height: 210rpx;
  909. background: #fff;
  910. margin: 0 auto;
  911. border-radius: 9rpx;
  912. }
  913. .onerecord {
  914. width: 750rpx;
  915. height: 90rpx;
  916. line-height: 90rpx;
  917. padding-left: 30rpx;
  918. color: #999;
  919. span {
  920. color: red;
  921. }
  922. }
  923. .topbilledit {
  924. display: flex;
  925. justify-content: center;
  926. align-items: center;
  927. background: #fff;
  928. height: 60rpx;
  929. }
  930. .changetime2 {
  931. padding-left: 10rpx;
  932. }
  933. .subsection {
  934. padding: 30rpx;
  935. background: #fff;
  936. }
  937. .topname {
  938. height: 44px;
  939. width: 750rpx;
  940. display: flex;
  941. align-items: center;
  942. }
  943. .topname1 {
  944. width: 50rpx;
  945. padding-left: 10rpx;
  946. }
  947. .topname2 {
  948. width: 700rpx;
  949. text-align: center;
  950. font-weight: bold;
  951. }
  952. </style>