12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <div>
- <div class="skip-wrap">
- <div class="skip-theme">
- <div class="skip-theme-iamge">logo</div>
- <div class="skip-theme-txt">小程序</div>
- </div>
- <div class="skip-btn">
- <p id="launch-btn" @click="showWechat()">打开微信</p>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- created() {
- init(); //实例初始化
- },
- methods: {
- showWechat() {
-
- },
- },
- components: {},
- destroyed() {},
- };
- </script>
- <style lang="scss">
- .skip-wrap {
- height: 100vh;
- width: 100%;
- position: relative;
- }
- .skip-theme {
- display: flex;
- align-items: center;
- flex-direction: column;
- padding: 200px 0 0;
- }
- .skip-theme-iamge {
- width: 60px;
- height: 60px;
- line-height: 60px;
- text-align: center;
- color: #fff;
- background-color: #e96737;
- border-radius: 50%;
- margin-bottom: 10px;
- }
- .skip-theme-txt {
- color: rgb(194, 184, 184);
- text-align: center;
- }
- .skip-btn {
- position: absolute;
- bottom: 50px;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .skip-btn p {
- height: 30px;
- width: 200px;
- background-color: rgb(7, 192, 88);
- border-radius: 8px;
- line-height: 30px;
- color: #fff;
- text-align: center;
- }
- </style>
|