index.vue
4.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<template>
<view class="index-page">
<view class="page-content">
<view class="hero-card">
<text class="hero-eyebrow">觉林寺小程序</text>
<text class="hero-title">首页</text>
<text class="hero-desc">
当前先完成首页、消息、我的三栏结构,测试能力统一收口到测试中心,避免首页继续堆放调试按钮。
</text>
</view>
<view class="status-card">
<view>
<text class="section-label">当前授权状态</text>
<text class="status-text">应用启动时会优先尝试静默授权</text>
</view>
<text class="status-tag" :class="{ authed: isAuthed }">
{{ isAuthed ? '已授权' : '未授权' }}
</text>
</view>
<view class="overview-grid">
<view class="overview-card">
<text class="card-title">首页</text>
<text class="card-desc">展示当前项目概览与测试入口。</text>
</view>
<view class="overview-card">
<text class="card-title">消息</text>
<text class="card-desc">后续承接通知、订单提醒与系统消息。</text>
</view>
<view class="overview-card">
<text class="card-title">我的</text>
<text class="card-desc">后续承接个人信息、授权状态与常用功能。</text>
</view>
</view>
<view class="test-entry-card">
<text class="section-label">测试入口</text>
<text class="test-entry-desc">
支付测试与 WebView 预览已移入测试中心,首页只保留统一入口。
</text>
<button class="primary-btn" @tap="goToTestCenter">进入测试中心</button>
</view>
</view>
<AppTabbar current="home" />
</view>
</template>
<script setup>
import { ref } from 'vue'
import Taro, { useDidShow } from '@tarojs/taro'
import AppTabbar from '@/components/AppTabbar.vue'
import { hasAuth } from '@/utils/authRedirect'
const isAuthed = ref(false)
const refreshAuthStatus = () => {
isAuthed.value = hasAuth()
}
const goToTestCenter = () => {
Taro.navigateTo({
url: '/pages/pay-test/index',
})
}
useDidShow(() => {
refreshAuthStatus()
})
</script>
<style lang="less">
.index-page {
min-height: 100vh;
background:
radial-gradient(circle at top right, rgba(166, 121, 57, 0.18), transparent 32%),
linear-gradient(180deg, #fffaf3 0%, #f6f7fb 100%);
.page-content {
padding: 32rpx 24rpx 0;
box-sizing: border-box;
}
.hero-card,
.status-card,
.overview-card,
.test-entry-card {
background: rgba(255, 255, 255, 0.94);
border: 2rpx solid rgba(166, 121, 57, 0.08);
border-radius: 28rpx;
box-shadow: 0 20rpx 60rpx rgba(15, 23, 42, 0.06);
box-sizing: border-box;
}
.hero-card {
display: flex;
flex-direction: column;
padding: 36rpx 32rpx;
}
.hero-eyebrow {
font-size: 24rpx;
font-weight: 600;
letter-spacing: 4rpx;
color: #a67939;
}
.hero-title {
margin-top: 12rpx;
font-size: 52rpx;
font-weight: 700;
color: #1f2937;
}
.hero-desc {
margin-top: 18rpx;
font-size: 26rpx;
line-height: 1.8;
color: #6b7280;
}
.status-card {
margin-top: 24rpx;
padding: 28rpx 32rpx;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24rpx;
}
.section-label {
display: block;
font-size: 30rpx;
font-weight: 600;
color: #111827;
}
.status-text,
.card-desc,
.test-entry-desc {
display: block;
margin-top: 12rpx;
font-size: 24rpx;
line-height: 1.7;
color: #6b7280;
}
.status-tag {
flex-shrink: 0;
padding: 12rpx 22rpx;
border-radius: 999rpx;
font-size: 24rpx;
font-weight: 600;
color: #b45309;
background: #fef3c7;
}
.status-tag.authed {
color: #166534;
background: #dcfce7;
}
.overview-grid {
margin-top: 24rpx;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 20rpx;
}
.overview-card {
padding: 28rpx;
}
.overview-card:last-child {
grid-column: 1 / span 2;
}
.card-title {
display: block;
font-size: 30rpx;
font-weight: 600;
color: #111827;
}
.test-entry-card {
margin-top: 24rpx;
padding: 32rpx;
}
.primary-btn {
margin-top: 24rpx;
border-radius: 999rpx;
font-size: 30rpx;
line-height: 88rpx;
color: #fff;
background: linear-gradient(135deg, #a67939, #8f5e20);
}
}
</style>