123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <template>
- <div>
- <div class="skip-wrap">
- <div class="skip-theme">
- <div class="skip-theme-iamge">logo</div>
- <div class="skip-theme-txt">小程序</div>
- <div>{{ id }}</div>
- </div>
- <div class="skip-btn">
- <p @click="showWechat()">打开微信</p>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { urlschemaGeneratee } from "@/api/business/ticket";
- export default {
- data() {
- return {
- id: this.$route.query.id,
- };
- },
- methods: {
- showWechat() {
-
- window.location.href = "weixin://dl/business/?t=PrgPhLuOEKi";
- },
- },
- components: {},
- mounted() {},
- 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>
|