1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <div class="clever">
- <span class="clever-login" @click="jumpClever"></span>
- </div>
- </template>
- <script>
- export default {
- name: 'CleverPage'
- };
- </script>
- <script setup>
- // 跳转到 clever 登录
- function jumpClever() {
- window.location.href =
- 'https://clever.com/oauth/authorize?response_type=code&redirect_uri=https%3A%2F%2Fgcls.helxsoft.cn&client_id=58ca6cd43a9f74ca351f';
- }
- </script>
- <style lang="scss" scoped>
- .clever {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- background-color: $bac-color;
- &-login {
- display: block;
- width: 207px;
- height: 46px;
- cursor: pointer;
- background: url('@/assets/login/clever-login.png') no-repeat center;
- }
- }
- </style>
|