1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <view >
- <view class="container">
-
- <view class="content">
- <text class="title">扫码关注</text>
- <text class="subtitle">获取更多信息</text>
-
- <image class="qr-code" src="https://leaseraycos.oss-cn-shanghai.aliyuncs.com/document/20240912211722_826.jpg" mode="aspectFit"></image>
- </view>
- <view class="footer">
-
- <text class="company-name">上海壹领医疗</text>
- </view>
-
- </view>
- </view>
- </template>
- <style>
- .container {
- display: flex;
- flex-direction: column;
- height: 600px;
-
- color: white;
- }
- .content {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding: 0px 0px 30px 0px;
- background-color: #1296db;
- }
- .title {
- font-size: 54px;
- font-weight: bold;
- margin-bottom: 10px;
- margin: 20px auto;
- text-align: center;
- }
- .subtitle {
- font-size: 16px;
- }
- .qr-code {
- width: 200px;
- height: 200px;
- }
- .footer {
- display: flex;
- align-items: center;
- justify-content: center;
-
- }
- .company-name {
- font-size: 14px;
- color: black;
- padding-top: 20px;
- }
- </style>
|