Commit a1606ef0 by 陆志强

Merge branch 'feature/timingStyle' into dev

parents 1bbe6b47 6656aaa2
...@@ -2,6 +2,33 @@ ...@@ -2,6 +2,33 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [1.3.29](https://gitlab.aodianyun.com/activities/web-lottery/compare/v1.3.28...v1.3.29) (2025-05-29)
### Features
* 修复域名 ([4711e04](https://gitlab.aodianyun.com/activities/web-lottery/commit/4711e04481463ecb6c4f882f4e9d15e544fc2054))
### [1.3.28](https://gitlab.aodianyun.com/activities/web-lottery/compare/v1.3.24...v1.3.28) (2025-05-29)
### Features
* 更改答题状态 ([e6f1d38](https://gitlab.aodianyun.com/activities/web-lottery/commit/e6f1d38ac0a1026f02b3b48134b8a51a59daed26))
* 删除冗余代码 ([372d46c](https://gitlab.aodianyun.com/activities/web-lottery/commit/372d46c28bce55a4d1ccf0a9db7a97c4fec29187))
* 新增答案回显 ([1a181a4](https://gitlab.aodianyun.com/activities/web-lottery/commit/1a181a4546173784fe398b7bcf6899b8b36582ed))
* 新增竞答抽奖 ([eee10c9](https://gitlab.aodianyun.com/activities/web-lottery/commit/eee10c90f1079bb5f8910f90ebc2dc3057fb19d6))
* 新增下一场奖品 ([1cdc188](https://gitlab.aodianyun.com/activities/web-lottery/commit/1cdc188570b22b22913faeab4de71598a8eb68b5))
* 修复抽奖次数获取异常问题 ([d6a2320](https://gitlab.aodianyun.com/activities/web-lottery/commit/d6a23208d2086b8f332c65e9c82246a91bf03511))
* 修复图片不显示的问题 ([f4b9297](https://gitlab.aodianyun.com/activities/web-lottery/commit/f4b9297483f05e19d878b09aeae6ccdfe13626ab))
* 延迟接口刷新时机 ([c80b41e](https://gitlab.aodianyun.com/activities/web-lottery/commit/c80b41e18b41f2d3b9a3949bb53b0c2b148873a1))
* 优化答案显示逻辑 ([44cd238](https://gitlab.aodianyun.com/activities/web-lottery/commit/44cd2381ee9bbe04ebc6d8782ee2b4b361ea435f))
* 优化答案显示逻辑 ([c4ee8e1](https://gitlab.aodianyun.com/activities/web-lottery/commit/c4ee8e14160515b41799a76893144bd5b0a31582))
* 优化答案显示时机 ([8d7d59a](https://gitlab.aodianyun.com/activities/web-lottery/commit/8d7d59a11d625bee721afce43114c5f225de0a9e))
* 优化更新接口时机 ([42b8da1](https://gitlab.aodianyun.com/activities/web-lottery/commit/42b8da16d9e0fec61280593ff333bba7b2068e8a))
* 优化接口时机 ([d2d54c8](https://gitlab.aodianyun.com/activities/web-lottery/commit/d2d54c830e2831f1ac7d60b7b15ccad51f2411f6))
* 优化postinfo ([522322e](https://gitlab.aodianyun.com/activities/web-lottery/commit/522322eefb6cef0577b7d2712042ffc755cea5ef))
### [1.3.27](https://gitlab.aodianyun.com/activities/web-lottery/compare/v1.3.26...v1.3.27) (2025-04-25) ### [1.3.27](https://gitlab.aodianyun.com/activities/web-lottery/compare/v1.3.26...v1.3.27) (2025-04-25)
......
{ {
"name": "web-lottery", "name": "web-lottery",
"version": "1.3.27", "version": "1.3.29",
"private": true, "private": true,
"license": "UNLICENSED", "license": "UNLICENSED",
"scripts": { "scripts": {
......
...@@ -18,8 +18,8 @@ ...@@ -18,8 +18,8 @@
</li> </li>
</ul> </ul>
</div> </div>
<div class="introduction__title">下一场活动奖品:</div> <div v-if="lotteryInfo.nextPlayPrizeConfigs.length > 0" class="introduction__title">下一场活动奖品:</div>
<div class="introduction__prize"> <div v-if="lotteryInfo.nextPlayPrizeConfigs.length > 0" class="introduction__prize">
<ul <ul
class="introduction__list" class="introduction__list"
:class="{ 'introduction__list--center': lotteryInfo.nextPlayPrizeConfigs.length < 3 }" :class="{ 'introduction__list--center': lotteryInfo.nextPlayPrizeConfigs.length < 3 }"
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
</div> </div>
</div> </div>
</div> </div>
<div class="rule"> <div v-if="lotteryInfo.nextPlayPrizeConfigs.length > 0" class="rule">
<div class="rule__sub">下一场活动奖品:</div> <div class="rule__sub">下一场活动奖品:</div>
<div class="intro__rewards"> <div class="intro__rewards">
<div v-for="item in lotteryInfo.nextPlayPrizeConfigs" :key="item.id" class="intro__rewards-item"> <div v-for="item in lotteryInfo.nextPlayPrizeConfigs" :key="item.id" class="intro__rewards-item">
...@@ -57,9 +57,9 @@ export default { ...@@ -57,9 +57,9 @@ export default {
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
.main { .main {
width: 100%; width: calc(100% - 48px);
height: 100%; height: 100%;
padding: 0 13px; // padding: 0 13px;
// overflow-x: auto; // overflow-x: auto;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
...@@ -141,7 +141,7 @@ export default { ...@@ -141,7 +141,7 @@ export default {
} }
} }
.rule { .rule {
height: 44%; // height: 44%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
&__sub { &__sub {
......
...@@ -169,7 +169,7 @@ export default { ...@@ -169,7 +169,7 @@ export default {
border-radius: 22px; border-radius: 22px;
} }
.reward-box { .reward-box {
width: 100%; width: calc(100% - 48px);
position: absolute; position: absolute;
bottom: 3%; bottom: 3%;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment