123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <view class="index">
- <view class="header">
- <img src="../../static/icon_wydz_web.png" alt="" class="img">
- <p>安徽省刷制品质量检验检测中心</p>
- <p><text user-select>https://jyzx.qs163.cn/</text></p>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .index{
- height: 100vh;
- // background-color: #dbebf8;
- .header{
- display: flex;
- flex-direction: column;
- align-items: center;
- .img{
- width: 160upx;
- height: 126upx;
- margin: auto ;
- margin-top: 130upx;
- margin-bottom: 30upx;
- }
- p:nth-child(2){
- margin-top: 32upx;
- margin-bottom: 20upx;
- }
- }
- }
- </style>
|