| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191 |
- <template>
- <view class="container">
- <!-- 加载状态 -->
- <view v-if="loading" class="loading-wrap">
- <view class="loading-spinner"></view>
- <text class="loading-text">加载中...</text>
- </view>
- <!-- 错误状态 -->
- <view v-else-if="error" class="error-wrap">
- <text class="error-icon">📋</text>
- <text class="error-text">{{ errorMsg }}</text>
- <button class="retry-btn" @click="loadDetail(activityId)">重新加载</button>
- </view>
- <!-- 活动内容 -->
- <scroll-view v-else-if="activity.id" scroll-y class="content">
- <!-- 封面图 -->
- <image
- v-if="activity.coverImage"
- class="cover"
- :src="activity.coverImage"
- mode="widthFix"
- />
- <image v-else class="cover placeholder-cover" src="/static/default-activity.png" mode="aspectFill" />
- <view class="info-section">
- <text class="activity-title">{{ activity.title }}</text>
- <!-- 活动状态标签 -->
- <view class="status-row">
- <text class="status-tag" :class="'status-' + (activity.status || 'upcoming')">{{ statusText(activity.status) }}</text>
- </view>
- <!-- 活动元信息 -->
- <view class="meta-list">
- <view class="meta-item" v-if="activity.startTime">
- <text class="meta-icon">🕐</text>
- <text class="meta-text">{{ formatDate(activity.startTime) }}{{ activity.endTime ? ' ~ ' + formatDate(activity.endTime) : '' }}</text>
- </view>
- <view class="meta-item" v-if="activity.endTime && activity.requireRegistration === 1">
- <text class="meta-icon">⏰</text>
- <text class="meta-text">报名截止: {{ formatDate(activity.endTime) }}</text>
- </view>
- <view class="meta-item" v-if="activity.location">
- <text class="meta-icon">📍</text>
- <text class="meta-text">{{ activity.location }}</text>
- </view>
- <view class="meta-item" v-if="activity.maxParticipants">
- <text class="meta-icon">👥</text>
- <text class="meta-text">{{ activity.currentParticipants || 0 }} / {{ activity.maxParticipants }} 人</text>
- </view>
- <view class="meta-item">
- <text class="meta-icon">💰</text>
- <view class="meta-text" v-if="activity.memberPrice && activity.memberPrice > 0 && activity.memberPrice < activity.price">
- <text>会员价 ¥{{ activity.memberPrice }} 普通价 ¥{{ activity.price }}</text>
- </view>
- <text class="meta-text" v-else>{{ activity.priceLabel || (activity.price > 0 ? '¥' + activity.price : '免费') }}</text>
- </view>
- </view>
- <!-- 活动简介 -->
- <view class="desc-section" v-if="activity.description">
- <text class="section-title">活动介绍</text>
- <mp-html :content="activity.description" />
- </view>
- <!-- 付费不退费说明 -->
- <view class="refund-notice" v-if="activity.price > 0">
- <text class="refund-notice-icon">⚠️</text>
- <text class="refund-notice-text">本活动为付费活动,报名成功后不支持退费</text>
- </view>
- </view>
- <!-- 底部操作栏 -->
- <view class="bottom-bar">
- <view class="price-info">
- <text class="bottom-type">活动</text>
- <text class="bottom-vendor" v-if="activity.vendorName">{{ activity.vendorName }}</text>
- </view>
- <view class="action-btns">
- <button class="share-btn" open-type="share" @click="onShareTap">
- <text class="share-btn-icon">📤</text>
- </button>
- <!-- 报名按钮(仅 requireRegistration=1 时显示) -->
- <button
- v-if="activity.requireRegistration === 1 && !registrationStatus"
- class="btn-register"
- @click="onRegister"
- >
- <text v-if="activity.price > 0">¥{{ activity.price }} 立即报名</text>
- <text v-else>立即报名</text>
- </button>
- <!-- 已报名待审核 -->
- <button
- v-if="activity.requireRegistration === 1 && registrationStatus === 'pending'"
- class="btn-register-done"
- disabled
- >
- <text>报名待审核</text>
- </button>
-
- <!-- 已报名可取消 -->
- <button
- v-if="activity.requireRegistration === 1 && registrationStatus === 'approved'"
- class="btn-cancel"
- :disabled="registrationLoading"
- @click="onCancelRegistration"
- >
- <text>取消报名</text>
- </button>
-
- <!-- 签到按钮 -->
- <button
- class="btn-checkin"
- :class="{ 'btn-checkin-done': checkinDone, 'btn-checkin-loading': checkinLoading }"
- :disabled="checkinLoading || checkinDone"
- @click="onCheckin"
- >
- <text v-if="checkinLoading">签到中...</text>
- <text v-else-if="checkinDone && activity.requireCheckinReview === 1">已签到待审核</text>
- <text v-else-if="checkinDone">已签到 ✓</text>
- <text v-else>签到</text>
- </button>
- </view>
- </view>
-
- <!-- 能量扣减提示弹窗 -->
- <modal v-if="showPenaltyModal" class="penalty-modal" :show="showPenaltyModal" @close="showPenaltyModal = false">
- <view class="penalty-content">
- <text class="penalty-title">签到成功但已扣能量</text>
- <text class="penalty-desc">您未报名参加此活动,已被扣除 {{ penaltyAmount }} 点能量值</text>
- <button class="penalty-btn" @click="showPenaltyModal = false">我知道了</button>
- </view>
- </modal>
- <!-- 活动评价 -->
- <view class="feedback-section" v-if="activity.status === 'ended' && checkinDone">
- <view class="feedback-header">
- <text class="feedback-title">活动评价</text>
- </view>
- <!-- Already submitted feedback -->
- <view v-if="submittedFeedback" class="feedback-submitted">
- <view class="feedback-ratings-display">
- <view class="fr-row" v-for="(val, key) in parsedSubmittedRatings" :key="key">
- <text class="fr-label">{{ key }}</text>
- <text class="fr-stars">{{ getStarDisplay(val) }}</text>
- </view>
- </view>
- <text class="feedback-comment-text" v-if="submittedFeedback.comment">{{ submittedFeedback.comment }}</text>
- <text class="feedback-thanks">感谢您的评价!</text>
- </view>
- <!-- Submit feedback button -->
- <button v-else class="feedback-btn" @click="openFeedbackModal">
- <text>提交活动评价</text>
- </button>
- </view>
- <!-- 评价弹窗 -->
- <modal v-if="showFeedbackModal" class="feedback-modal-overlay" :show="showFeedbackModal" @close="showFeedbackModal = false">
- <view class="feedback-modal">
- <text class="feedback-modal-title">活动评价</text>
- <view class="rating-row" v-for="(dim, dimIdx) in feedbackDimensions" :key="dimIdx">
- <text class="rating-label">{{ dim }}</text>
- <view class="stars">
- <text v-for="star in 5" :key="star"
- class="star-icon"
- :class="{'star-active': star <= (feedbackRatings[dim] || 0)}"
- @click="feedbackRatings[dim] = star">★</text>
- </view>
- </view>
- <textarea class="feedback-textarea" v-model="feedbackComment" placeholder="说说您的体验..." maxlength="500" />
- <view class="feedback-modal-actions">
- <button class="feedback-cancel-btn" @click="showFeedbackModal = false">取消</button>
- <button class="feedback-submit-btn" :disabled="feedbackSubmitting" @click="submitFeedback">
- <text v-if="feedbackSubmitting">提交中...</text>
- <text v-else>提交评价</text>
- </button>
- </view>
- </view>
- </modal>
- <!-- 报名表单弹窗 -->
- <modal v-if="showRegModal" class="reg-modal-overlay" :show="showRegModal" @close="showRegModal = false">
- <view class="reg-modal">
- <text class="reg-modal-title">活动报名</text>
- <!-- 家庭成员选择 -->
- <view class="reg-family-section" v-if="familyMembers.length > 0">
- <text class="reg-section-label">从家庭成员中选择</text>
- <view class="reg-family-list">
- <view
- class="reg-family-item"
- v-for="member in familyMembers"
- :key="member.id"
- :class="{'reg-family-item-selected': isMemberSelected(member)}"
- @click="toggleFamilyMember(member)"
- >
- <view class="reg-family-info">
- <text class="reg-family-name">{{ member.name }}</text>
- <text class="reg-family-relation">{{ member.relation }}</text>
- </view>
- <text class="reg-checkmark" v-if="isMemberSelected(member)">✓</text>
- </view>
- </view>
- </view>
- <!-- 报名人列表 -->
- <view class="reg-list">
- <text class="reg-section-label">报名人</text>
- <view class="reg-entry" v-for="(entry, idx) in registrants" :key="idx">
- <input class="reg-input reg-input-name" v-model="entry.name" placeholder="姓名" />
- <input class="reg-input reg-input-phone" v-model="entry.phone" placeholder="手机号" type="number" maxlength="11" />
- <text class="reg-remove" @click="removeRegistrant(idx)">✕</text>
- </view>
- <button class="reg-add-btn" @click="addManualEntry">+ 添加报名人</button>
- </view>
- <!-- 合计 -->
- <view class="reg-total" v-if="activity.price > 0">
- <text>共 {{ registrants.length }} 人 · 合计 ¥{{ activity.price * registrants.length }}</text>
- </view>
- <!-- 操作按钮 -->
- <view class="reg-actions">
- <button class="reg-cancel" @click="closeRegModal">取消</button>
- <button class="reg-submit" :disabled="regSubmitting || registrants.length === 0" @click="submitRegistration">
- <text v-if="regSubmitting">提交中...</text>
- <text v-else>确认报名</text>
- </button>
- </view>
- </view>
- </modal>
- </scroll-view>
- <!-- 空状态 -->
- <view v-else class="empty-wrap">
- <text class="empty-text">活动不存在或已下架</text>
- </view>
- </view>
- </template>
- <script>
- import { getActivityDetail, activityCheckin, registerActivity, cancelActivityRegistration, getMyActivityRegistrations, submitActivityFeedback, getActivityFeedbackList, getMyActivityFeedback, getFamilyMembers } from '@/utils/api.js'
- import shareMixin from '../../../components/share-mixin.js'
- import MpHtml from '@/components/mp-html/mp-html.vue'
- export default {
- mixins: [shareMixin],
- components: { MpHtml },
- data() {
- return {
- activityId: null,
- activity: {},
- loading: false,
- error: false,
- errorMsg: '',
- checkinLoading: false,
- checkinDone: false,
- checkinPoints: 0,
- registrationStatus: null,
- registrationLoading: false,
- showPenaltyModal: false,
- penaltyAmount: 0,
- showFeedbackModal: false,
- feedbackDimensions: [],
- feedbackRatings: {},
- feedbackComment: '',
- submittedFeedback: null,
- feedbackSubmitting: false,
- feedbackList: [],
- // registration form modal
- showRegModal: false,
- familyMembers: [],
- registrants: [],
- regSubmitting: false
- }
- },
- onLoad: function(options) {
- if (options && options.id) {
- this.activityId = options.id
- this.loadDetail(options.id)
- } else {
- this.error = true
- this.errorMsg = '缺少活动ID'
- }
- // 检查是否已经签到(从路由参数获取)
- if (options && options.checkinDone === '1') {
- this.checkinDone = true
- }
- },
- methods: {
- // ===== 工具方法 =====
- formatDate: function(dateStr) {
- if (!dateStr) return ''
- var d = new Date(dateStr.replace(/-/g, '/'))
- if (isNaN(d.getTime())) return dateStr
- var year = d.getFullYear()
- var month = d.getMonth() + 1
- var day = d.getDate()
- var hour = d.getHours()
- var minute = d.getMinutes()
- var ampm = hour < 12 ? '上午' : '下午'
- var h12 = hour % 12
- if (h12 === 0) h12 = 12
- var minStr = minute < 10 ? '0' + minute : minute
- return year + '年' + month + '月' + day + '日 ' + ampm + h12 + ':' + minStr
- },
- loadDetail: function(id) {
- var self = this
- self.loading = true
- self.error = false
- getActivityDetail(id).then(function(res) {
- self.loading = false
- if (res && res.code === 200 && res.data) {
- self.activity = res.data
- self.setShareInfo('推荐活动: ' + (res.data.title || ''), '/pages/activity/activity-detail/activity-detail?id=' + id)
- self.parseFeedbackDimensions()
- self.loadFeedbackStatus()
- // Load registration status if logged in and activity requires registration
- if (self.activity.requireRegistration === 1) {
- var childId = uni.getStorageSync('currentChildId')
- if (childId) {
- getMyActivityRegistrations({ childId: childId, page: 1, size: 50 }).then(function(regRes) {
- if (regRes && regRes.data && regRes.data.records) {
- var records = regRes.data.records
- for (var i = 0; i < records.length; i++) {
- if (records[i].activityId === self.activity.id) {
- self.registrationStatus = records[i].status
- break
- }
- }
- }
- }).catch(function() {})
- }
- }
- } else {
- self.error = true
- self.errorMsg = (res && res.message) || '加载失败'
- }
- }).catch(function(err) {
- self.loading = false
- self.error = true
- self.errorMsg = '网络异常,请稍后重试'
- })
- },
- statusText: function(status) {
- var map = { draft: '草稿', published: '进行中', ended: '已结束' }
- return map[status] || '未知'
- },
- onCheckin: function() {
- var self = this
- if (self.checkinLoading || self.checkinDone) return
- var childId = uni.getStorageSync('currentChildId')
- if (!childId) {
- uni.showToast({ title: '请选择孩子身份', icon: 'none' })
- return
- }
- self.checkinLoading = true
- activityCheckin({ id: self.activity.id, childId: childId }).then(function(res) {
- self.checkinLoading = false
- if (res && res.code === 200 && res.data) {
- self.loadFeedbackStatus()
- // 检查是否有能量扣减
- if (res.data.energyPenalty) {
- self.penaltyAmount = res.data.energyPenalty
- self.showPenaltyModal = true
- self.checkinDone = true
- return
- }
- if (res.data.alreadyCompleted) {
- self.checkinDone = true
- uni.showToast({ title: '已签到', icon: 'success' })
- } else if (res.data.pointsEarned && res.data.pointsEarned > 0) {
- self.checkinDone = true
- self.checkinPoints = res.data.pointsEarned
- uni.showToast({ title: '签到成功 +' + res.data.pointsEarned + '积分', icon: 'success' })
- } else {
- self.checkinDone = true
- uni.showToast({ title: '签到成功', icon: 'success' })
- }
- } else {
- var msg = (res && res.message) || '签到失败'
- // 如果是报名待审核,提示用户
- if (msg.indexOf('报名') !== -1 || msg.indexOf('审核') !== -1) {
- uni.showModal({ title: '提示', content: msg, showCancel: false })
- } else {
- uni.showToast({ title: msg, icon: 'none' })
- }
- }
- }).catch(function(err) {
- self.checkinLoading = false
- uni.showToast({ title: '网络异常', icon: 'none' })
- })
- },
- onRegister: function() {
- var self = this
- // Open registration form modal
- self.showRegModal = true
- self.registrants = []
- self.loadFamilyMembers()
- },
- onCancelRegistration: function() {
- var self = this
- uni.showModal({
- title: '提示',
- content: '确定要取消报名吗?',
- success: function(res) {
- if (res.confirm) {
- var childId = uni.getStorageSync('currentChildId')
- self.registrationLoading = true
- cancelActivityRegistration({ id: self.activity.id, childId: childId }).then(function(res) {
- self.registrationLoading = false
- if (res && res.code === 200) {
- self.registrationStatus = null
- uni.showToast({ title: '已取消报名', icon: 'success' })
- } else {
- uni.showToast({ title: (res && res.message) || '取消失败', icon: 'none' })
- }
- }).catch(function() {
- self.registrationLoading = false
- uni.showToast({ title: '网络异常', icon: 'none' })
- })
- }
- }
- })
- },
- // ===== 活动评价 =====
- parseFeedbackDimensions: function() {
- var dims = ['组织形式', '会场气氛', '主持人', '专家']
- if (this.activity.feedbackDimensions) {
- try {
- var parsed = JSON.parse(this.activity.feedbackDimensions)
- if (parsed && parsed.length > 0) {
- dims = parsed
- }
- } catch(e) {}
- }
- this.feedbackDimensions = dims
- this.initRatings()
- },
- initRatings: function() {
- var r = {}
- for (var i = 0; i < this.feedbackDimensions.length; i++) {
- r[this.feedbackDimensions[i]] = 0
- }
- this.feedbackRatings = r
- },
- loadFeedbackStatus: function() {
- var self = this
- var childId = uni.getStorageSync('currentChildId')
- if (!childId || !self.activity || !self.activity.id) return
- getMyActivityFeedback({ activityId: self.activity.id, childId: childId }).then(function(res) {
- if (res && res.code === 200 && res.data) {
- self.submittedFeedback = res.data
- }
- }).catch(function() {})
- },
- openFeedbackModal: function() {
- this.showFeedbackModal = true
- },
- submitFeedback: function() {
- var self = this
- // Validate at least one rating
- var hasRating = false
- for (var key in self.feedbackRatings) {
- if (self.feedbackRatings[key] > 0) { hasRating = true; break }
- }
- if (!hasRating) {
- uni.showToast({ title: '请至少评价一项', icon: 'none' })
- return
- }
- self.feedbackSubmitting = true
- var childId = uni.getStorageSync('currentChildId')
- submitActivityFeedback({
- activityId: self.activity.id,
- childId: childId,
- ratings: JSON.stringify(self.feedbackRatings),
- comment: self.feedbackComment
- }).then(function(res) {
- self.feedbackSubmitting = false
- if (res && res.code === 200) {
- self.showFeedbackModal = false
- self.loadFeedbackStatus()
- uni.showToast({ title: '评价成功', icon: 'success' })
- } else {
- uni.showToast({ title: (res && res.message) || '提交失败', icon: 'none' })
- }
- }).catch(function() {
- self.feedbackSubmitting = false
- uni.showToast({ title: '网络异常', icon: 'none' })
- })
- },
- getStarDisplay: function(val) {
- var full = parseInt(val) || 0
- var empty = 5 - full
- return '★'.repeat(full) + '☆'.repeat(empty)
- },
- // ===== 报名表单 =====
- loadFamilyMembers: function() {
- var self = this
- getFamilyMembers().then(function(res) {
- if (res && res.code === 200 && res.data) {
- var list = []
- // parents
- var parents = res.data.parents || []
- for (var i = 0; i < parents.length; i++) {
- list.push({
- id: 'p_' + parents[i].id,
- name: parents[i].nickname || parents[i].name || '',
- phone: parents[i].phone || '',
- relation: '家长',
- childId: parents[i].id,
- source: 'parent'
- })
- }
- // children
- var children = res.data.children || []
- for (var j = 0; j < children.length; j++) {
- list.push({
- id: 'c_' + children[j].id,
- name: children[j].nickname || children[j].name || '',
- phone: children[j].phone || '',
- relation: '孩子',
- childId: children[j].userId || children[j].id,
- source: 'child'
- })
- }
- self.familyMembers = list
- }
- }).catch(function() {})
- },
- isMemberSelected: function(member) {
- for (var i = 0; i < this.registrants.length; i++) {
- if (this.registrants[i].memberId === member.id) return true
- }
- return false
- },
- toggleFamilyMember: function(member) {
- for (var i = 0; i < this.registrants.length; i++) {
- if (this.registrants[i].memberId === member.id) {
- this.registrants.splice(i, 1)
- return
- }
- }
- this.registrants.push({
- memberId: member.id,
- name: member.name,
- phone: member.phone,
- childId: member.childId
- })
- },
- addManualEntry: function() {
- this.registrants.push({
- memberId: null,
- name: '',
- phone: '',
- childId: null
- })
- },
- removeRegistrant: function(idx) {
- this.registrants.splice(idx, 1)
- },
- closeRegModal: function() {
- this.showRegModal = false
- this.registrants = []
- this.familyMembers = []
- },
- submitRegistration: function() {
- var self = this
- // Validate
- if (self.registrants.length === 0) {
- uni.showToast({ title: '请至少添加一个报名人', icon: 'none' })
- return
- }
- for (var i = 0; i < self.registrants.length; i++) {
- var entry = self.registrants[i]
- if (!entry.name || entry.name.trim() === '') {
- uni.showToast({ title: '请输入第 ' + (i + 1) + ' 个报名人的姓名', icon: 'none' })
- return
- }
- var phone = (entry.phone || '').trim()
- if (phone === '') {
- uni.showToast({ title: '请输入第 ' + (i + 1) + ' 个报名人的手机号', icon: 'none' })
- return
- }
- if (!/^1[3-9]\d{9}$/.test(phone)) {
- uni.showToast({ title: '请输入第 ' + (i + 1) + ' 个报名人的正确手机号', icon: 'none' })
- return
- }
- }
- // 付费活动 → 先确认支付
- if (self.activity && self.activity.price > 0) {
- var total = self.activity.price * self.registrants.length
- uni.showModal({
- title: '确认报名',
- content: '共 ' + self.registrants.length + ' 人,需支付 ¥' + total + ',报名成功后不支持退费。是否继续?',
- confirmText: '确认支付',
- cancelText: '再想想',
- success: function(confirmRes) {
- if (confirmRes.confirm) {
- self.doBatchRegister()
- }
- }
- })
- } else {
- self.doBatchRegister()
- }
- },
- doBatchRegister: function() {
- var self = this
- self.regSubmitting = true
- var registrantsData = []
- for (var i = 0; i < self.registrants.length; i++) {
- var entry = self.registrants[i]
- registrantsData.push({
- name: entry.name.trim(),
- phone: entry.phone || '',
- childId: entry.childId
- })
- }
- registerActivity({ id: self.activity.id, registrants: registrantsData }).then(function(res) {
- self.regSubmitting = false
- if (res && res.code === 200) {
- self.closeRegModal()
- self.registrationStatus = 'pending'
- uni.showToast({ title: '报名成功,请等待审核', icon: 'success' })
- } else {
- uni.showToast({ title: (res && res.message) || '报名失败', icon: 'none' })
- }
- }).catch(function() {
- self.regSubmitting = false
- uni.showToast({ title: '网络异常', icon: 'none' })
- })
- }
- },
- computed: {
- parsedSubmittedRatings: function() {
- if (!this.submittedFeedback || !this.submittedFeedback.ratings) return {}
- try {
- return JSON.parse(this.submittedFeedback.ratings)
- } catch(e) {
- return {}
- }
- }
- }
- }
- </script>
- <style scoped>
- .container {
- min-height: 100vh;
- background: #FFF7ED;
- }
- /* 加载 / 错误 / 空状态 */
- .loading-wrap,
- .error-wrap,
- .empty-wrap {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding: 120rpx 40rpx;
- }
- .loading-spinner {
- width: 60rpx;
- height: 60rpx;
- border: 4rpx solid #FDE68A;
- border-top-color: #F97316;
- border-radius: 50%;
- animation: spin 0.8s linear infinite;
- margin-bottom: 20rpx;
- }
- @keyframes spin {
- to { transform: rotate(360deg); }
- }
- .loading-text,
- .error-text,
- .empty-text {
- font-size: 28rpx;
- color: #999;
- margin-bottom: 20rpx;
- }
- .error-icon {
- font-size: 60rpx;
- margin-bottom: 16rpx;
- }
- .retry-btn {
- background: #F97316;
- color: #fff;
- border: none;
- border-radius: 40rpx;
- padding: 12rpx 40rpx;
- font-size: 26rpx;
- line-height: 1.5;
- }
- /* 内容区 */
- .content {
- height: 100vh;
- padding-bottom: 120rpx;
- }
- .cover {
- width: 100%;
- display: block;
- }
- .placeholder-cover {
- height: 400rpx;
- background: #f0f0f0;
- }
- /* 信息区 */
- .info-section {
- padding: 30rpx;
- }
- .activity-title {
- font-size: 36rpx;
- font-weight: bold;
- color: #1f2937;
- line-height: 1.4;
- }
- .status-row {
- margin-top: 16rpx;
- }
- .status-tag {
- display: inline-block;
- font-size: 22rpx;
- padding: 4rpx 16rpx;
- border-radius: 8rpx;
- }
- .status-draft { background: #F5F5F5; color: #999; }
- .status-published { background: #F0FDF4; color: #22C55E; }
- .status-ended { background: #F5F5F5; color: #999; }
- .status-upcoming { background: #FFF7ED; color: #F97316; }
- /* 元信息列表 */
- .meta-list {
- margin-top: 24rpx;
- background: #fff;
- border-radius: 16rpx;
- padding: 24rpx;
- }
- .meta-item {
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-bottom: 16rpx;
- }
- .meta-item:last-child {
- margin-bottom: 0;
- }
- .meta-icon {
- font-size: 28rpx;
- margin-right: 12rpx;
- width: 32rpx;
- text-align: center;
- }
- .meta-text {
- font-size: 26rpx;
- color: #4b5563;
- flex: 1;
- line-height: 1.4;
- }
- /* 活动介绍 */
- .desc-section {
- margin-top: 30rpx;
- background: #fff;
- border-radius: 16rpx;
- padding: 24rpx;
- }
- .section-title {
- font-size: 28rpx;
- font-weight: 600;
- color: #1f2937;
- display: block;
- margin-bottom: 12rpx;
- }
- .desc-text {
- font-size: 26rpx;
- color: #4b5563;
- line-height: 1.6;
- }
- /* 付费不退费说明 */
- .refund-notice {
- margin-top: 20rpx;
- margin-left: 30rpx;
- margin-right: 30rpx;
- margin-bottom: 10rpx;
- background: #FEF2F2;
- border: 2rpx solid #FECACA;
- border-radius: 12rpx;
- padding: 16rpx 20rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .refund-notice-icon {
- font-size: 24rpx;
- margin-right: 10rpx;
- flex-shrink: 0;
- }
- .refund-notice-text {
- font-size: 24rpx;
- color: #DC2626;
- line-height: 1.4;
- }
- /* 底部操作栏 */
- .bottom-bar {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- background: #fff;
- padding: 20rpx 30rpx;
- padding-bottom: calc(20rpx + env(safe-area-inset-bottom));
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- box-shadow: 0 -2rpx 12rpx rgba(0,0,0,0.06);
- }
- .price-info {
- display: flex;
- flex-direction: column;
- }
- .bottom-type {
- font-size: 22rpx;
- color: #999;
- }
- .bottom-vendor {
- font-size: 22rpx;
- color: #999;
- margin-top: 4rpx;
- }
- .action-btns {
- display: flex;
- flex-direction: row;
- gap: 16rpx;
- }
- .btn-checkin {
- background: linear-gradient(135deg, #F97316, #FB923C);
- color: #fff;
- border: none;
- border-radius: 40rpx;
- padding: 16rpx 48rpx;
- font-size: 28rpx;
- font-weight: 600;
- line-height: 1.5;
- min-width: 160rpx;
- text-align: center;
- }
- .btn-checkin:active {
- opacity: 0.85;
- }
- .btn-checkin-done {
- background: #22C55E;
- }
- .btn-checkin-loading {
- opacity: 0.7;
- }
- /* 报名按钮 */
- .btn-register {
- background: linear-gradient(135deg, #10B981, #34D399);
- color: #fff;
- border: none;
- border-radius: 40rpx;
- padding: 16rpx 32rpx;
- font-size: 26rpx;
- font-weight: 600;
- line-height: 1.5;
- min-width: 140rpx;
- text-align: center;
- }
- .btn-register:active { opacity: 0.85; }
- .btn-register-loading { opacity: 0.7; }
- .btn-register-done {
- background: #F5F5F5;
- color: #999;
- border: none;
- border-radius: 40rpx;
- padding: 16rpx 32rpx;
- font-size: 26rpx;
- line-height: 1.5;
- min-width: 140rpx;
- text-align: center;
- }
- .btn-cancel {
- background: #fff;
- color: #999;
- border: 2rpx solid #ddd;
- border-radius: 40rpx;
- padding: 14rpx 28rpx;
- font-size: 24rpx;
- line-height: 1.5;
- min-width: 120rpx;
- text-align: center;
- }
- .btn-cancel:active { opacity: 0.7; }
- /* 能量扣减弹窗 */
- .penalty-modal {
- 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: 999;
- }
- .penalty-content {
- background: #fff;
- border-radius: 24rpx;
- padding: 48rpx 40rpx;
- width: 560rpx;
- text-align: center;
- }
- .penalty-title {
- font-size: 32rpx;
- font-weight: bold;
- color: #EF4444;
- display: block;
- margin-bottom: 20rpx;
- }
- .penalty-desc {
- font-size: 26rpx;
- color: #666;
- display: block;
- margin-bottom: 40rpx;
- line-height: 1.6;
- }
- .penalty-btn {
- background: #F97316;
- color: #fff;
- border: none;
- border-radius: 40rpx;
- padding: 16rpx 60rpx;
- font-size: 28rpx;
- }
- /* 活动评价 */
- .feedback-section {
- padding: 30rpx;
- margin: 20rpx;
- background: #fff;
- border-radius: 16rpx;
- }
- .feedback-header { margin-bottom: 20rpx; }
- .feedback-title { font-size: 32rpx; font-weight: bold; color: #333; }
- .feedback-btn {
- background: #F97316; color: #fff; border: none;
- border-radius: 40rpx; padding: 20rpx 40rpx; font-size: 28rpx;
- text-align: center;
- }
- .feedback-submitted { padding: 10rpx 0; }
- .feedback-ratings-display { margin-bottom: 16rpx; }
- .fr-row { display: flex; justify-content: space-between; padding: 8rpx 0; }
- .fr-label { font-size: 28rpx; color: #333; }
- .fr-stars { font-size: 28rpx; color: #F97316; }
- .feedback-comment-text { font-size: 26rpx; color: #666; margin: 10rpx 0; line-height: 1.5; }
- .feedback-thanks { font-size: 24rpx; color: #999; text-align: center; margin-top: 16rpx; }
- .feedback-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: 999;
- }
- .feedback-modal {
- background: #fff; border-radius: 20rpx; padding: 40rpx;
- width: 80%; max-width: 600rpx;
- }
- .feedback-modal-title {
- font-size: 34rpx; font-weight: bold; color: #333;
- text-align: center; margin-bottom: 30rpx;
- }
- .rating-row {
- display: flex; justify-content: space-between; align-items: center;
- padding: 16rpx 0;
- }
- .rating-label { font-size: 28rpx; color: #333; min-width: 120rpx; }
- .stars { display: flex; }
- .star-icon { font-size: 40rpx; color: #ddd; padding: 0 6rpx; }
- .star-active { color: #F97316; }
- .feedback-textarea {
- width: 100%; height: 160rpx; margin-top: 20rpx;
- border: 1rpx solid #eee; border-radius: 12rpx;
- padding: 16rpx; font-size: 26rpx; box-sizing: border-box;
- }
- .feedback-modal-actions {
- display: flex; justify-content: space-between; margin-top: 30rpx;
- }
- .feedback-cancel-btn {
- flex: 1; background: #f5f5f5; color: #666; border: none;
- border-radius: 40rpx; padding: 20rpx; font-size: 28rpx;
- text-align: center; margin-right: 20rpx;
- }
- .feedback-submit-btn {
- flex: 1; background: #F97316; color: #fff; border: none;
- border-radius: 40rpx; padding: 20rpx; font-size: 28rpx;
- text-align: center;
- }
- .share-btn { height: 64rpx; width: 64rpx; background: #f5f5f5; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; flex-shrink: 0; }
- .share-btn::after { border: none; }
- .share-btn-icon { font-size: 30rpx; }
- /* 报名表单弹窗 */
- .reg-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: 999;
- }
- .reg-modal {
- background: #fff;
- border-radius: 24rpx;
- padding: 40rpx;
- width: 85%;
- max-height: 80vh;
- overflow-y: auto;
- }
- .reg-modal-title {
- font-size: 34rpx;
- font-weight: bold;
- color: #333;
- text-align: center;
- display: block;
- margin-bottom: 30rpx;
- }
- .reg-section-label {
- font-size: 28rpx;
- font-weight: 600;
- color: #555;
- display: block;
- margin-bottom: 16rpx;
- }
- .reg-family-section {
- margin-bottom: 24rpx;
- }
- .reg-family-list {
- max-height: 300rpx;
- overflow-y: auto;
- }
- .reg-family-item {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- padding: 16rpx 20rpx;
- background: #f9f9f9;
- border-radius: 12rpx;
- margin-bottom: 10rpx;
- }
- .reg-family-item-selected {
- background: #FFF7ED;
- border: 2rpx solid #F97316;
- }
- .reg-family-info {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .reg-family-name {
- font-size: 28rpx;
- color: #333;
- margin-right: 12rpx;
- }
- .reg-family-relation {
- font-size: 22rpx;
- color: #999;
- background: #eee;
- padding: 2rpx 12rpx;
- border-radius: 8rpx;
- }
- .reg-checkmark {
- color: #F97316;
- font-size: 32rpx;
- font-weight: bold;
- }
- .reg-list {
- margin-bottom: 20rpx;
- }
- .reg-entry {
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-bottom: 12rpx;
- gap: 10rpx;
- }
- .reg-input {
- flex: 1;
- background: #f5f5f5;
- border: none;
- border-radius: 12rpx;
- padding: 16rpx 20rpx;
- font-size: 26rpx;
- color: #333;
- }
- .reg-input-name {
- flex: 2;
- }
- .reg-input-phone {
- flex: 3;
- }
- .reg-remove {
- color: #EF4444;
- font-size: 28rpx;
- padding: 10rpx;
- flex-shrink: 0;
- }
- .reg-add-btn {
- background: none;
- border: 2rpx dashed #ddd;
- border-radius: 12rpx;
- padding: 16rpx;
- font-size: 26rpx;
- color: #F97316;
- text-align: center;
- width: 100%;
- margin-top: 6rpx;
- }
- .reg-total {
- text-align: center;
- font-size: 30rpx;
- font-weight: bold;
- color: #F97316;
- margin-bottom: 24rpx;
- padding: 16rpx;
- background: #FFF7ED;
- border-radius: 12rpx;
- }
- .reg-actions {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- gap: 20rpx;
- }
- .reg-cancel {
- flex: 1;
- background: #f5f5f5;
- color: #666;
- border: none;
- border-radius: 40rpx;
- padding: 20rpx;
- font-size: 28rpx;
- text-align: center;
- }
- .reg-submit {
- flex: 1;
- background: linear-gradient(135deg, #10B981, #34D399);
- color: #fff;
- border: none;
- border-radius: 40rpx;
- padding: 20rpx;
- font-size: 28rpx;
- font-weight: 600;
- text-align: center;
- }
- .reg-submit:active { opacity: 0.85; }
- .reg-submit[disabled] { opacity: 0.5; }
- </style>
|