123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <!-- 参考模板 -->
- <template>
- <s-layout class="homepage-wrap ss-w-100 box-sizing" title="订单" navbar="custom"
- tabbar="/pages/XDHome/orderInfoList/orderInfoList">
- <view class="body" :style="'padding-top:' + bottomHeight">
- <!-- 导航 -->
- <view class="ss-flex-2 ss-col-center ss-margin-width2" style="position: relative">
- <view class="ss-flex-2 ss-col-center">
- <text class="textIcon icon-fanhui icon-navigation" @click="backPage"></text>
- <view style="margin-left: 15rpx; color: #3D444E; font-size: 28rpx">订单列表</view>
- </view>
- <view class="ss-flex-1"></view>
- <text class="textIcon icon-kefu icon-navigation"></text>
- <text class="textIcon icon-tongzhiguanli icon-navigation" style="margin-left: 30rpx"></text>
- </view>
- <!-- 中部 -->
- <view class="list-wrap">
- <scroll-view scroll-y="true" class="list">
- <view class="list-scroll-view">
- <view style="width:100%;height:200rpx;background-color:#fff;margin-top:20rpx;" v-for="i in 10"
- :key="i"></view>
- </view>
- </scroll-view>
- </view>
- </view>
- </s-layout>
- </template>
- <script setup>
- import {
- reactive,
- ref
- } from 'vue';
- import {
- computed
- } from 'vue';
- import {
- onLoad,
- onPageScroll,
- onPullDownRefresh,
- onReady,
- onReachBottom,
- onShow,
- } from '@dcloudio/uni-app';
- import sheep from '@/sheep';
- import $share from '@/sheep/platform/share';
- // 隐藏原生tabBar
- // uni.hideTabBar();
- // 返回首页
- const backPage = async () => {
- uni.reLaunch({
- url: '/pages/XDHome/homePage/homePage',
- });
- };
- const bottomHeight = ref('0rpx');
- // #ifdef APP-PlUS
- //获取顶部安全距离
- const app = uni.getSystemInfoSync();
- const bottomHeightOne = app.statusBarHeight + 'rpx';
- bottomHeight.value = bottomHeightOne
- // #endif
- </script>
- <style scoped lang="scss">
- .icon-navigation {
- font-size: 32rpx;
- color: #3D444E;
- font-weight: 700;
- }
- // 上中下布局样式
- .body {
- display: flex;
- flex-direction: column;
- background-color: #EEEEF0;
- height: calc(100vh - 50px);
- box-sizing: border-box;
- }
- .head {
- text-align: center;
- }
- // 中部滚动
- .list-wrap {
- flex-grow: 1;
- position: relative;
- width: 95%;
- margin-left: 2.5%;
- box-sizing: border-box;
- }
- .list {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 50rpx;
- padding: 10rpx;
- border-radius: 15rpx;
- box-sizing: border-box;
- }
- .list-scroll-view {
- width: 100%;
- margin-bottom: 20rpx;
- box-sizing: border-box;
- }
- .course-card {
- width: 47vw;
- margin-top: 10px;
- margin-bottom: 10px;
- }
- // 底部
- .tools {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .tools-item {
- width: 45px;
- text-align: center;
- font-size: 14px;
- padding: 20px;
- }
- </style>
|