123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="container">
- <view class="rightButtons">
- <view class="button">规则</view>
- <view class="button" @click="toKnapsack" style="top: 44px">背包</view>
- <view class="button" @click="toWinningRecord" style="bottom: 0">中奖记录</view>
- </view>
- </view>
- </template>
- <script></script>
- <style scoped lang="scss">
- .container {
- background: #9ec8f9;
- overflow: inherit;
- .rightButtons {
- position: fixed;
- right: 0;
- width: 50px;
- height: 70vh;
- top: 50%;
- transform: translateY(-50%);
- .button {
- position: absolute;
- right: 0;
- background: rgba(255, 255, 255, 0.7);
- font-size: 10px;
- text-align: center;
- height: 24px;
- line-height: 24px;
- border-radius: 12px 0 0 12px;
- width: 46px;
- }
- }
- }
- </style>
|