1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <template>
- <view>
- <ujp-navbar title="充值详情">
- </ujp-navbar>
- <view class="chargeDetails">
- <view class="chargeDetails-item">
- <span>金额</span>
- <p class="price">{{detail.orderInfo.totalFee}}元</p>
- </view>
- <view class="chargeDetails-item">
- <span>类型</span>
- <p>{{detail.orderInfo.payNameStr}}</p>
- </view>
- <view class="chargeDetails-item">
- <span>时间</span>
- <p>{{detail.orderInfo.createTime}}</p>
- </view>
- <view class="chargeDetails-item">
- <span>订单号</span>
- <p>{{detail.orderInfo.outOrderNo}}</p>
- </view>
- <view class="chargeDetails-item">
- <span>交易号</span>
- <p>{{detail.orderInfo.transactionId}}</p>
- </view>
- </view>
- </view>
- </template>
- <script>
- import * as API from '@/apis/index.js'
-
- export default {
- data() {
- return {
- id:'',
- detail:{
- accountRecord:{},
- orderInfo:{},
- }
- }
- },
- onLoad(op){
- this.id=op.id;
- this.getInfo()
- },
- methods: {
- getInfo(){
- uni.showLoading({
- title:"加载中",mask:true,
- })
- API.accountDetail(this.id).then((res) => {
- this.detail=res.data
-
- uni.hideLoading()
-
- }).catch(error => {
- uni.showToast({
-
- title:error
- })
- })
- }
- }
- }
- </script>
- <style>
- page{
- background-color: #f7f7f7;
- }
- </style>
- <style lang="scss" scoped>
- .chargeDetails{
- background-color: #FFFFFF;
- .chargeDetails-item{
- margin:0 10px;
- border-bottom: 1px solid #F7F7F7;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 15px;
- span{
- color:#999;
- }
- }
- .price{
- font-size: 20px;
- color:#FF3D00;
- font-weight: bold;
- }
- }
- </style>
|