123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <template>
- <div :class="theme">
- <img class="parkingRights-img" :src="benefitsBgUrl" />
- <div class="add_plate_box" @click="back">
- <div class="add_plate_btn">我已知晓</div>
- <div class="btnpb"></div>
- </div>
- </div>
- </template>
- <script>
- import baseMixins from './mixins/base';
- export default {
- mixins: [baseMixins],
- data() {
- return {
- benefitsBgUrl: '',
- };
- },
- mounted() {
- this.benefitsBgUrl = `https://cnsh-kerry-crm-le.oss-cn-shanghai.aliyuncs.com${this.$route.query.benefitsBgUrl}`
- },
- methods: {
- back() {
- this.$router.back();
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .parkingRights-img {
- width: 100%;
- display: block;
- }
- .scroll-Y {
- width: 100%;
- display: flex;
- flex-direction: column;
- height: 100vh;
- background: #f4f7ff;
- }
- .add_plate_box {
- text-align: center;
- background-color: #fafbff;
- position: fixed;
- bottom: 0;
- right: 0;
- left: 0;
- z-index: 999;
- padding: 30px 30px 50px 30px;
- box-shadow: 0 0 2px 0 hsla(0, 6%, 58%, 0.6);
- .btnpb {
- width: 100%;
- }
- .add_plate_btn {
- width: 100%;
- height: 90px;
- line-height: 90px;
- background-color: var(--k-color-primary-01);
- border-radius: 45px;
- font-size: 34px;
- font-weight: 400;
- color: #ffffff;
- }
- }
- </style>
|