123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <view class="index">
- <view class="header">
- <img src="../../static/pic_qsy_cxsb.png" alt="" class="img">
- <p>扫码查询失败</p>
- <p>请检查二维码是否正确</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: 583upx;
- height: 386upx;
- margin: auto ;
- margin-top: 130upx;
- margin-bottom: 30upx;
- }
- p:nth-child(2){
- margin-top: 32upx;
- margin-bottom: 20upx;
- }
- }
- }
- </style>
|