| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <template>
- <div class="index">
- <div class="index-header">
- <img src="../../assets/images/logo-red.png" alt="" srcset="" />
- <div class="info">
- <h1>NutUI</h1>
- <p>请使用微信扫描下方二维码体验</p>
- </div>
- </div>
- <div class="index-wxcode">
- <img
- src="https://img12.360buyimg.com/imagetools/jfs/t1/174054/4/15968/66201/60d0028dE590f0aa8/752ecef62e4f1cbe.jpg"
- width="200"
- />
- <img
- src="https://img12.360buyimg.com/imagetools/jfs/t1/205124/1/15643/30360/62aad730Ea5734bf9/703bb91a0b73282f.png"
- width="250"
- />
- </div>
- </div>
- </template>
- <script lang="ts">
- import { defineComponent } from 'vue';
- export default defineComponent({
- name: 'doc',
- setup() {
- return {};
- }
- });
- </script>
- <style lang="scss" scoped>
- @import '@/sites/assets/styles/reset.scss';
- .index {
- height: 100%;
- width: 100%;
- padding-top: 60px;
- &-header {
- display: flex;
- align-items: center;
- padding: 0 34px;
- height: 117px;
- > img {
- width: 67px;
- height: 67px;
- margin-right: 18px;
- flex-shrink: 0;
- }
- .info {
- display: flex;
- flex-direction: column;
- h1 {
- height: 48px;
- line-height: 48px;
- font-size: 34px;
- color: rgba(51, 51, 51, 1);
- }
- p {
- height: 18px;
- line-height: 18px;
- font-size: 12px;
- color: rgba(154, 155, 157, 1);
- }
- }
- }
- &-wxcode {
- display: flex;
- height: calc(100% - 117px);
- border-radius: 30px 30px 0 0;
- overflow: hidden;
- padding: 30px 25px;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- }
- }
- </style>
|