63 lines
1.2 KiB
Plaintext
63 lines
1.2 KiB
Plaintext
<template>
|
|
<view class="refund-review">
|
|
<view class="page-header">
|
|
<text class="page-title">退款审核</text>
|
|
<text class="page-subtitle">审核用户退款申请</text>
|
|
</view>
|
|
|
|
<view class="review-content">
|
|
<text class="coming-soon">退款审核功能正在开发中...</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="uts">
|
|
// 统一的导航方法
|
|
const go = (url: string) => {
|
|
// 1) 目标页面必须是非 tabBar 页面
|
|
// 2) 必须在 pages.json / subPackages 注册
|
|
uni.navigateTo({ url })
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.refund-review {
|
|
padding: 30rpx;
|
|
background-color: #f5f5f5;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.page-header {
|
|
background-color: #fff;
|
|
padding: 40rpx;
|
|
border-radius: 16rpx;
|
|
margin-bottom: 30rpx;
|
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
|
|
|
|
.page-title {
|
|
font-size: 36rpx;
|
|
font-weight: bold;
|
|
color: #212529;
|
|
display: block;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.page-subtitle {
|
|
font-size: 26rpx;
|
|
color: #6c757d;
|
|
}
|
|
}
|
|
|
|
.review-content {
|
|
background-color: #fff;
|
|
padding: 60rpx 40rpx;
|
|
border-radius: 16rpx;
|
|
text-align: center;
|
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
|
|
|
|
.coming-soon {
|
|
font-size: 28rpx;
|
|
color: #6c757d;
|
|
}
|
|
}
|
|
</style> |