<template> <view class="content"> <view class="container"> <view class="my-header"> <view class="my-icons" @click="goback"> <uni-icons type="left" size="16"></uni-icons> </view> <view class="my-text">储值余额</view> <view class="my-icons"></view> </view> <!-- 顶部区域 --> <view class="top-box"> <view class="kuangbox">使用规则 </view> <view class="box-title">储值余额</view> <view class="box-nmb">0.00元</view> <view class="dis-bt"> <view class="">累计获得0.00</view> <view class="">已经抵用0.00</view> </view> </view> <view class="box-gang"> <view class="">明细</view> <view class="hui-anniu">全部 <u-icon name="arrow-down-fill" size="18"></u-icon> </view> </view> <view class="fuji"> <view class="mx-box" @click="godetails()"> <view class="m-b-box"> <view class="box-name">加油站名称</view> <view class="moneyname">充值成功</view> </view> <view class="y-bt"> <view class="sizehui">订单金额</view> <view class="sizehei">¥0.01</view> </view> <view class="y-bt"> <view class="sizehui">优惠合计</view> <view class="sizehong">¥0.01</view> </view> <view class="y-bt"> <view class="sizehui">订单时间</view> <view class="sizehei">2023.01.23</view> </view> <view class="dibu"> <view class="xiaanniu">评价有礼</view> </view> </view> </view> </view> </view> </template> <script> export default { data() { return { title: '', } }, components: { }, methods: { godetails() { uni.navigateTo({ url: '/pagesMy/details/details' }) }, goback() { uni.navigateBack() } } } </script> <style scoped lang="scss"> .moni { width: 100%; } .content { background: #f4f5f6; } .container { width: 100%; height: 100vh; box-sizing: border-box; padding-top: 88px; } .my-header { width: 100%; height: 88px; background: #ffffff; display: flex; align-items: center; justify-content: space-between; color: #000; box-sizing: border-box; padding: 0px 15px; padding-top: 40px; .my-icons { width: 20px; } position: fixed; top: 0px; } .top-box { width: 90%; // height: 105px; border-radius: 8px; background-color: #056cf2; margin: 10px auto; box-sizing: border-box; padding: 10px; color: white; position: relative; } .kuangbox { position: absolute; top: 15px; right: 15px; box-sizing: border-box; padding: 5px 10px; background: #024192; display: flex; border-radius: 50px; color: white; font-size: 12px; } .dis-bt { width: 100%; display: flex; align-items: center; justify-content: space-between; } .box-title {} .box-nmb { font-size: 22px; font-weight: bold; margin-bottom: 15px; } .box-gang { width: 90%; margin: 10px auto; display: flex; align-items: center; justify-content: space-between; } .hui-anniu { box-sizing: border-box; padding: 5px 10px; background: #ebecef; display: flex; border-radius: 50px; } .fuji { width: 100%; box-sizing: border-box; padding: 20px; } .mx-box { width: 100%; border-radius: 8px; background-color: #ffffff; box-sizing: border-box; padding: 10px; } .m-b-box { width: 100%; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #dedede; padding-bottom: 10px; } .y-bt { display: flex; align-items: center; justify-content: space-between; margin: 5px auto; } .box-name { font-size: 16px; font-weight: bold; } .moneyname { font-size: 16px; color: #056cf2; } .sizehui { font-size: 14px; color: #999999; } .sizehei { font-size: 14px; } .sizehong { font-size: 14px; color: crimson; } .dibu { display: flex; align-items: center; justify-content: flex-end; } .xiaanniu { width: 90px; background-color: #1678ff; color: white; border-radius: 50px; height: 25px; display: flex; align-items: center; justify-content: center; font-size: 14px; margin-top: 10px; } </style>