| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <template>
- <view>
- <view class="top">
- <image src="@/static/icon/zhongguo.png" mode=""></image>
- <text class="title">中国银行</text>
- <view class="data">
- <image src="@/static/icon/points-value.png" mode=""></image>
- <view>
- <text>-100</text>
- <text>(价值 ¥ 10.00)</text>
- </view>
- </view>
- </view>
- <view class="card">
- <view class="item">
- <text>交易状态</text>
- <text>交易成功</text>
- </view>
- <view class="item">
- <text>用途</text>
- <text>消费</text>
- </view>
- <view class="item">
- <text>商家名称</text>
- <text>星巴克</text>
- </view>
- <view class="item">
- <text>交易时间</text>
- <text>2021-06-30 10:08</text>
- </view>
- <view class="item">
- <text>支付方式</text>
- <text>积分</text>
- </view>
- <view class="item">
- <text>交易单号</text>
- <text>40024956416134941151001</text>
- </view>
- <view class="item">
- <text>商户单号</text>
- <text>40024956416134941151001</text>
- </view>
- </view>
-
- <view class="question">
- <text>对订单有疑问</text>
- <text class="cuIcon-right" style="margin-top: 5rpx;"></text>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .top {
- padding: 50rpx 0 0;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- image {
- width: 140rpx;
- height: 140rpx;
- }
- .title {
- color: #000;
- padding-top: 15rpx;
- font-size: 32rpx;
- }
- .data {
- padding-top: 30rpx;
- display: flex;
- image {
- width: 40rpx;
- height: 40rpx;
- }
- view {
- padding-left: 20rpx;
- text:first-child {
- color: #000;
- font-size: 38rpx;
- }
- text:last-child {
- font-size: 32rpx;
- padding-left: 20rpx;
- }
- }
- }
- }
- .card {
- margin-top: 50rpx;
- padding: 20rpx 30rpx;
- background-color: #FFFFFF;
-
- .item{
- padding: 20rpx 0;
- font-size: 28rpx;
- color: #888888;
- margin: 0 20rpx;
- display: flex;
- justify-content: space-between;
- }
- }
-
- .question{
- color: #888888;
- background-color: #FFFFFF;
- margin-top: 20rpx;
- padding: 20rpx 50rpx;
- display: flex;
- justify-content: space-between;
- }
- </style>
|