1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <template>
- <layout bgImgName="" bgColor="" bgHeight="">
- <div class="first-reward">
- <img :src="`${IMG_URL}/assistFirstReward.png`" alt="" />
- <div class="btn-box">
- <img
- src="@/assets/image/claimCloudPhone/first-reward-container-privilege.png"
- alt=""
- class="btn"
- @click="$router.push('/claimCloudPhone/secondReward')"
- />
- </div>
- </div>
- </layout>
- </template>
- <script>
- import layout from './components/layout';
- export default {
- auth: false,
- name: 'firstReward',
- head: {
- title: '0元购机,尽情享受',
- },
- data() {
- return {
- IMG_URL: process.env.IMG_URL
- }
- },
- components: { layout },
- };
- </script>
- <style lang="less" scoped>
- .first-reward {
- height: 100%;
- box-sizing: border-box;
- padding-top: 188px;
- position: relative;
- & > img {
- position: absolute;
- top: -16px;
- left: -16px;
- height: calc(100% + 32px);
- width: calc(100% + 32px);
- }
- .first-reward-container_privilege-tips {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 12px;
- color: #ffffff;
- margin: 16px 0;
- line-height: 17px;
- text-align: center;
- font-style: normal;
- }
- .btn-box {
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- bottom: 20px;
- display: flex;
- justify-content: center;
- .btn {
- height: 56px;
- }
- }
- }
- </style>
|