| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772 |
- <template>
- <view class="page-container">
- <scroll-view class="scroll-view" scroll-y>
- <view class="content-wrapper">
- <!-- 超短精选池标题 -->
- <view class="pool-header-section">
- <view class="pool-header">
- <text class="pool-icon">⚡</text>
- <text class="pool-title">超短精选池</text>
- </view>
- <text class="pool-desc">今日更新,高频捕捉短期爆发机会</text>
- </view>
- <!-- 性能指标卡片 -->
- <view class="card performance-card">
- <view class="performance-item">
- <text class="performance-label">历史成功率</text>
- <text class="performance-value success">75%</text>
- </view>
- <view class="performance-item">
- <text class="performance-label">平均收益率</text>
- <text class="performance-value profit">+3.2%</text>
- </view>
- <view class="performance-item">
- <text class="performance-label">总交易次数</text>
- <text class="performance-value">120</text>
- </view>
- </view>
- <!-- 超短精选池区域 -->
- <view class="card pool-card">
- <!-- 未购买时显示锁定状态 -->
- <view v-if="!isPurchased" class="locked-content">
- <view class="lock-icon-wrapper">
- <text class="lock-icon">🔒</text>
- </view>
- <text class="lock-text">权限锁定: 查看 超短精选池 </text>
- <text class="lock-desc">超短池为每日实时更新,捕捉短期爆发机会。</text>
- <view class="unlock-button" @click="showPurchaseModal">
- <text class="unlock-button-text">立即打赏</text>
- </view>
- </view>
- <!-- 已购买时显示内容 -->
- <view v-else class="unlocked-content">
- <text class="unlocked-tip">您已解锁,可以查看超短精选池内容</text>
- <!-- 这里可以显示实际的股票池内容 -->
- <view class="stock-list-placeholder">
- <text class="placeholder-text">股票池内容将在此显示</text>
- </view>
- </view>
- </view>
- <!-- 历史股票池回顾 -->
- <view class="card history-card">
- <view class="history-header">
- <text class="history-icon">📅</text>
- <text class="history-title">历史股票池回顾</text>
- </view>
-
- <!-- 月份区间选择 -->
- <view class="date-range-row">
- <picker
- mode="date"
- fields="month"
- :value="startMonth"
- @change="onStartMonthChange"
- class="date-picker-half"
- >
- <view class="date-input">
- <text class="date-text">{{ formatMonth(startMonth) }}</text>
- <text class="date-icon">📅</text>
- </view>
- </picker>
-
- <text class="date-separator">至</text>
-
- <picker
- mode="date"
- fields="month"
- :value="endMonth"
- @change="onEndMonthChange"
- class="date-picker-half"
- >
- <view class="date-input">
- <text class="date-text">{{ formatMonth(endMonth) }}</text>
- <text class="date-icon">📅</text>
- </view>
- </picker>
- </view>
-
- <!-- 查询按钮 -->
- <view class="history-search-button-full" @click="onHistorySearch">
- <text class="search-button-text">🔍 查询历史数据</text>
- </view>
-
- <text class="history-tip">选择时间区间,查询该期间的入池股票及表现。</text>
- </view>
- <!-- 预留底部空间 -->
- <view class="bottom-safe-area"></view>
- </view>
- </scroll-view>
- <!-- 手机号授权弹窗 -->
- <view v-if="showPhoneAuth" class="phone-auth-mask" @click="closePhoneAuth">
- <view class="phone-auth-prompt" @click.stop>
- <text class="auth-title">授权手机号</text>
- <text class="auth-desc">为了完成登录,需要获取您的手机号</text>
-
- <button
- class="auth-button"
- open-type="getPhoneNumber"
- @getphonenumber="onGetPhoneNumber"
- >
- 授权手机号
- </button>
- </view>
- </view>
- <!-- 购买弹窗 -->
- <view v-if="showModal" class="modal-overlay" @click="closePurchaseModal">
- <view class="modal-content" @click.stop>
- <view class="modal-close-btn" @click="closePurchaseModal">
- <text class="close-icon">✕</text>
- </view>
-
- <view class="reward-header">
- <text class="reward-icon">💰</text>
- <text class="reward-title">打赏解锁</text>
- </view>
-
- <view class="reward-info">
- <text class="reward-desc">支持作者,解锁今日超短池内容</text>
- <view class="reward-amount-simple">
- <text class="amount-label">打赏金额:</text>
- <text class="amount-value">¥1</text>
- </view>
- </view>
- <view class="modal-footer">
- <view class="pay-button" @click="handlePurchase">
- <text class="pay-button-text">确认支付</text>
- </view>
- <text class="agreement-text">点击即表示同意《用户订阅协议》</text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { onLoad, onShow } from '@dcloudio/uni-app'
- import { isLoggedIn as checkLoginStatus } from '../../utils/auth.js'
- const isPurchased = ref(false)
- const showModal = ref(false)
- const showPhoneAuth = ref(false) // 是否显示手机号授权按钮
- const selectedPlan = ref('reward') // 固定为打赏
- const startMonth = ref('2025-01') // 开始月份
- const endMonth = ref('2025-11') // 结束月份
- const isLoggedIn = ref(false)
- // 格式化月份显示
- const formatMonth = (monthStr) => {
- if (!monthStr) return '请选择'
- const [year, month] = monthStr.split('-')
- return `${year}年${month}月`
- }
- // 检查登录状态
- const checkLogin = () => {
- isLoggedIn.value = checkLoginStatus()
- return isLoggedIn.value
- }
- // 检查购买状态
- const checkPurchaseStatus = () => {
- // 先检查登录状态
- if (!checkLogin()) {
- isPurchased.value = false
- return
- }
-
- try {
- const purchaseInfo = uni.getStorageSync('pool_purchase')
- if (purchaseInfo) {
- const now = Date.now()
- const expireTime = purchaseInfo.expireTime
- if (now < expireTime) {
- isPurchased.value = true
- } else {
- // 已过期,清除购买信息
- uni.removeStorageSync('pool_purchase')
- isPurchased.value = false
- }
- } else {
- isPurchased.value = false
- }
- } catch (e) {
- console.error('检查购买状态失败:', e)
- isPurchased.value = false
- }
- }
- // 显示购买弹窗(需要登录)
- const showPurchaseModal = () => {
- // 检查登录状态
- if (!checkLogin()) {
- uni.showModal({
- title: '登录提示',
- content: '此功能需要登录后使用,是否前往登录?',
- confirmText: '去登录',
- cancelText: '取消',
- success: (res) => {
- if (res.confirm) {
- uni.navigateTo({
- url: '/pages/login/login'
- })
- }
- }
- })
- return
- }
-
- showModal.value = true
- }
- // 关闭购买弹窗
- const closePurchaseModal = () => {
- showModal.value = false
- }
- // 处理购买
- const handlePurchase = () => {
- // 计算过期时间 - 当天23:59:59过期
- const now = Date.now()
- const today = new Date()
- today.setHours(23, 59, 59, 999)
- const expireTime = today.getTime()
- // 保存购买信息
- const purchaseInfo = {
- plan: 'reward',
- purchaseTime: now,
- expireTime: expireTime
- }
- uni.setStorageSync('pool_purchase', purchaseInfo)
- // 更新购买状态
- isPurchased.value = true
- // 关闭弹窗
- closePurchaseModal()
- // 显示成功提示
- uni.showToast({
- title: '解锁成功',
- icon: 'success'
- })
- }
- // 开始月份选择变化
- const onStartMonthChange = (e) => {
- startMonth.value = e.detail.value
- }
- // 结束月份选择变化
- const onEndMonthChange = (e) => {
- endMonth.value = e.detail.value
- }
- // 历史查询
- const onHistorySearch = () => {
- if (!startMonth.value || !endMonth.value) {
- uni.showToast({
- title: '请选择开始和结束月份',
- icon: 'none'
- })
- return
- }
-
- // 验证时间区间
- if (startMonth.value > endMonth.value) {
- uni.showToast({
- title: '开始月份不能晚于结束月份',
- icon: 'none'
- })
- return
- }
-
- uni.showToast({
- title: `查询${formatMonth(startMonth.value)}至${formatMonth(endMonth.value)}`,
- icon: 'none',
- duration: 2000
- })
- // TODO: 调用后端API查询历史数据
- // const response = await getHistoryPoolData(startMonth.value, endMonth.value)
- }
- // 使用uni-app生命周期钩子
- onLoad(() => {
- const loginStatus = checkLogin()
- console.log('[超短池] 登录状态:', loginStatus)
- checkPurchaseStatus()
- })
- onShow(() => {
- // 每次页面显示时都检查登录状态和购买状态
- const loginStatus = checkLogin()
- console.log('[超短池] 登录状态:', loginStatus)
- checkPurchaseStatus()
- // 设置导航栏标题
- uni.setNavigationBarTitle({ title: '量化交易大师' })
- })
- </script>
- <style>
- .page-container {
- height: 100vh;
- display: flex;
- flex-direction: column;
- background: #f5f6fb;
- }
- .scroll-view {
- flex: 1;
- height: 0;
- }
- .content-wrapper {
- padding: 32rpx;
- background: #f5f6fb;
- min-height: 100%;
- }
- .card {
- background: #ffffff;
- border-radius: 24rpx;
- padding: 32rpx;
- box-shadow: 0 16rpx 40rpx rgba(37, 52, 94, 0.08);
- margin-bottom: 32rpx;
- }
- /* 超短精选池标题区域 */
- .pool-header-section {
- margin-bottom: 24rpx;
- }
- .pool-header {
- display: flex;
- align-items: center;
- margin-bottom: 12rpx;
- }
- .pool-icon {
- font-size: 32rpx;
- margin-right: 12rpx;
- }
- .pool-title {
- font-size: 32rpx;
- font-weight: 600;
- color: #222222;
- }
- .pool-desc {
- font-size: 26rpx;
- color: #666a7f;
- }
- /* 性能指标卡片 */
- .performance-card {
- display: flex;
- justify-content: space-around;
- align-items: center;
- background: #f7f8fc;
- padding: 32rpx 24rpx;
- }
- .performance-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .performance-label {
- font-size: 24rpx;
- color: #666a7f;
- margin-bottom: 12rpx;
- }
- .performance-value {
- font-size: 32rpx;
- font-weight: 700;
- color: #222222;
- }
- .performance-value.success {
- color: #3abf81;
- }
- .performance-value.profit {
- color: #f16565;
- }
- /* 超短精选池卡片 */
- .pool-card {
- padding: 32rpx;
- }
- /* 锁定内容 */
- .locked-content {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 60rpx 0 40rpx;
- }
- .lock-icon-wrapper {
- margin-bottom: 32rpx;
- }
- .lock-icon {
- font-size: 80rpx;
- }
- .lock-text {
- font-size: 28rpx;
- color: #222222;
- margin-bottom: 16rpx;
- text-align: center;
- }
- .lock-desc {
- font-size: 24rpx;
- color: #9ca2b5;
- margin-bottom: 48rpx;
- text-align: center;
- line-height: 1.6;
- }
- .unlock-button {
- width: 100%;
- background: linear-gradient(135deg, #5d55e8, #7568ff);
- border-radius: 16rpx;
- padding: 28rpx 0;
- text-align: center;
- box-shadow: 0 12rpx 24rpx rgba(93, 85, 232, 0.4);
- }
- .unlock-button-text {
- font-size: 30rpx;
- font-weight: 600;
- color: #ffffff;
- }
- /* 已解锁内容 */
- .unlocked-content {
- margin-top: 32rpx;
- }
- .unlocked-tip {
- font-size: 26rpx;
- color: #3abf81;
- margin-bottom: 24rpx;
- display: block;
- }
- .stock-list-placeholder {
- padding: 60rpx 0;
- text-align: center;
- background: #f7f8fc;
- border-radius: 16rpx;
- }
- .placeholder-text {
- font-size: 26rpx;
- color: #9ca2b5;
- }
- /* 历史股票池回顾 */
- .history-card {
- padding: 32rpx;
- }
- .history-header {
- display: flex;
- align-items: center;
- margin-bottom: 24rpx;
- }
- .history-icon {
- font-size: 28rpx;
- margin-right: 12rpx;
- }
- .history-title {
- font-size: 30rpx;
- font-weight: 600;
- color: #222222;
- }
- .history-search-row {
- display: flex;
- align-items: center;
- }
- .date-range-row {
- display: flex;
- align-items: center;
- gap: 16rpx;
- margin-bottom: 24rpx;
- }
- .date-picker-half {
- flex: 1;
- }
- .date-separator {
- font-size: 26rpx;
- color: #666a7f;
- padding: 0 8rpx;
- }
- .date-input {
- background: #f7f8fc;
- border-radius: 12rpx;
- padding: 24rpx;
- font-size: 26rpx;
- color: #222222;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .date-text {
- flex: 1;
- }
- .date-icon {
- font-size: 28rpx;
- margin-left: 12rpx;
- }
- .history-search-button-full {
- width: 100%;
- background: linear-gradient(135deg, #5d55e8, #7568ff);
- border-radius: 16rpx;
- padding: 28rpx 0;
- text-align: center;
- margin-top: 12rpx;
- margin-bottom: 24rpx;
- box-shadow: 0 8rpx 20rpx rgba(93, 85, 232, 0.3);
- }
- .search-button-text {
- font-size: 28rpx;
- font-weight: 600;
- color: #ffffff;
- }
- .history-search-button {
- width: 80rpx;
- height: 80rpx;
- background: #5d55e8;
- border-radius: 12rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-left: 16rpx;
- }
- .search-icon {
- font-size: 32rpx;
- color: #ffffff;
- }
- .history-tip {
- font-size: 24rpx;
- color: #9ca2b5;
- line-height: 1.6;
- }
- /* 购买弹窗 */
- .modal-overlay {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.5);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 1000;
- }
- .modal-content {
- width: 640rpx;
- background: #ffffff;
- border-radius: 24rpx;
- padding: 48rpx 40rpx 40rpx;
- box-sizing: border-box;
- position: relative;
- }
- .modal-close-btn {
- position: absolute;
- top: 24rpx;
- right: 24rpx;
- width: 48rpx;
- height: 48rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 10;
- }
- .close-icon {
- font-size: 36rpx;
- color: #9ca2b5;
- font-weight: 300;
- line-height: 1;
- }
- .reward-header {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-bottom: 40rpx;
- }
- .reward-icon {
- font-size: 64rpx;
- margin-bottom: 16rpx;
- }
- .reward-title {
- font-size: 32rpx;
- font-weight: 600;
- color: #222222;
- }
- .reward-info {
- margin-bottom: 40rpx;
- }
- .reward-desc {
- display: block;
- font-size: 26rpx;
- color: #666a7f;
- text-align: center;
- margin-bottom: 24rpx;
- line-height: 1.6;
- }
- .reward-amount-simple {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 8rpx;
- }
- .amount-label {
- font-size: 28rpx;
- color: #666a7f;
- }
- .amount-value {
- font-size: 36rpx;
- font-weight: 700;
- color: #f16565;
- }
- .modal-footer {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .pay-button {
- width: 100%;
- background: linear-gradient(135deg, #5d55e8, #7568ff);
- border-radius: 16rpx;
- padding: 28rpx 0;
- text-align: center;
- margin-bottom: 24rpx;
- box-shadow: 0 8rpx 20rpx rgba(93, 85, 232, 0.3);
- }
- .pay-button-text {
- font-size: 30rpx;
- font-weight: 600;
- color: #ffffff;
- }
- .agreement-text {
- font-size: 22rpx;
- color: #9ca2b5;
- }
- .bottom-safe-area {
- height: 80rpx;
- }
- /* 手机号授权弹窗 */
- .phone-auth-mask {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.6);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 9999;
- }
- .phone-auth-prompt {
- width: 560rpx;
- background: #ffffff;
- border-radius: 24rpx;
- padding: 50rpx 40rpx;
- text-align: center;
- box-shadow: 0 20rpx 60rpx rgba(0, 0, 0, 0.3);
- }
- .auth-icon {
- font-size: 72rpx;
- margin-bottom: 20rpx;
- }
- .auth-title {
- display: block;
- font-size: 32rpx;
- font-weight: 600;
- color: #222222;
- margin-bottom: 12rpx;
- }
- .auth-desc {
- display: block;
- font-size: 24rpx;
- color: #999999;
- line-height: 1.5;
- margin-bottom: 32rpx;
- }
- .auth-button {
- width: 100%;
- height: 80rpx;
- background: linear-gradient(135deg, #FF9800, #FFA726);
- color: #ffffff;
- border-radius: 40rpx;
- font-size: 30rpx;
- font-weight: 600;
- box-shadow: 0 8rpx 24rpx rgba(255, 152, 0, 0.4);
- display: flex;
- align-items: center;
- justify-content: center;
- border: none;
- padding: 0;
- line-height: 80rpx;
- }
- .auth-button::after {
- border: none;
- }
- </style>
|