You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.1 KiB
65 lines
1.1 KiB
<template>
|
|
<!-- 20221216 -->
|
|
<view class="mine-order-canter-page">
|
|
|
|
<!-- 页面内容 -->
|
|
<view class="page-content">
|
|
|
|
<view class="group">
|
|
<view class="line" @click="go('/pages/mall/my/orderList')">
|
|
<view class="text-30 text-1a">商城订单</view>
|
|
<text class="tyIcon-fanhui text-26 text-98"></text>
|
|
</view>
|
|
|
|
<view class="line" @click="go('/pages/integral/my/orderList')">
|
|
<view class="text-30 text-1a">积分商城订单</view>
|
|
<text class="tyIcon-fanhui text-26 text-98"></text>
|
|
</view>
|
|
|
|
<view class="line" @click="go('/pages/money/myOrderList')">
|
|
<view class="text-30 text-1a">充值订单</view>
|
|
<text class="tyIcon-fanhui text-26 text-98"></text>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 页面浮层 -->
|
|
<view class="page-layer">
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onReady() {
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.group {
|
|
padding: 0 30rpx;
|
|
background: #fff;
|
|
}
|
|
|
|
.line {
|
|
height: 100rpx;
|
|
line-height: 100rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
</style>
|