1
0
mirror of https://github.com/ialley-workshop-open/uni-halo.git synced 2026-09-12 16:40:40 +08:00

feat: 新增公告模块、数据加载hook与多项体验优化

- 新增公告全流程功能:首页公告轮播、公告列表页、公告详情页
- 新增统一数据加载状态hook useDataLoading与配套测试
- 重构配置加载逻辑,新增统一bootstrap静态配置拉取
- 新增维护模式、恋爱模块支持与验证码防刷功能
- 优化投票卡片、联系页、关于页UI样式
- 新增测试页面与全局玻璃卡片样式
- 修复markdown容器内边距与首页生命周期逻辑
This commit is contained in:
小莫唐尼
2026-09-04 02:57:25 +08:00
parent 902faa70e7
commit 5f22f4fa01
39 changed files with 4474 additions and 2244 deletions
+9 -20
View File
@@ -91,16 +91,16 @@ defineExpose({ refresh: handleGetData })
</script>
<template>
<view class="uh-vote-card box-border w-full rounded-xl bg-white p-3 shadow-sm">
<view class="uh-vote-card uh-global-card-glass box-border w-full rounded-2xl p-4">
<view v-if="loading" class="loading py-6">
<wd-skeleton :row="2" :animated="true" />
</view>
<view v-else-if="voteData" class="vote-body">
<view class="vote-title text-[30rpx] text-[#303133] font-bold">
<view class="vote-title text-[30rpx] text-gray-900 font-bold">
{{ voteData.title }}
</view>
<view class="vote-desc mt-1 text-[24rpx] text-[#909399]">
<view class="vote-desc mt-1 text-[24rpx] text-gray-400">
{{ voteData.description }}
</view>
@@ -108,15 +108,15 @@ defineExpose({ refresh: handleGetData })
<view
v-for="option in voteData.options"
:key="option.name"
class="option mb-4 flex flex-col border-2 border-transparent rounded-xl bg-[#f7f8fa] p-5"
:class="{ active: voteTypes.includes(option.name || '') }"
class="option mb-4 flex flex-col border-2 rounded-xl p-5"
:class="voteTypes.includes(option.name || '') ? 'border-[#b9e424] bg-[#f0f7d9]' : 'border-transparent bg-[#f6f3ee]'"
@click="handleSelectOption(option)"
>
<view class="option-label text-[28rpx] text-[#303133]">
<view class="option-label text-[28rpx] text-gray-700">
<text>{{ option.label }}</text>
</view>
<view v-if="voteState === VOTE_STATES.VOTED" class="option-bar mt-3 h-4 overflow-hidden rounded-lg bg-[#f0f0f0]">
<view class="option-bar-inner h-full rounded-lg" :style="{ width: `${option.count || 0}%`, background: 'linear-gradient(90deg, #03a9f4, #64b5f6)' }" />
<view v-if="voteState === VOTE_STATES.VOTED" class="option-bar mt-3 h-4 overflow-hidden rounded-lg bg-black/5">
<view class="option-bar-inner h-full rounded-lg" :style="{ width: `${option.count || 0}%`, background: 'linear-gradient(90deg, #B9E424, #D7F94C)' }" />
</view>
</view>
</view>
@@ -126,20 +126,9 @@ defineExpose({ refresh: handleGetData })
{{ voteLabel }}
</wd-button>
</view>
<view v-else class="vote-tip mt-4 text-center text-[24rpx] text-[#909399]">
<view v-else class="vote-tip mt-4 text-center text-[24rpx] text-gray-400">
{{ voteLabel }}{{ voteResultLabel }}
</view>
</view>
</view>
</template>
<style scoped lang="scss">
.uh-vote-card {
.option {
&.active {
border-color: #03a9f4;
background-color: rgb(3 169 244 / 8%);
}
}
}
</style>