wufa.vue 652 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="index">
  3. <view class="header">
  4. <img src="../../static/pic_qsy_cxsb.png" alt="" class="img">
  5. <p>扫码查询失败</p>
  6. <p>请检查二维码是否正确</p>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. };
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. .index{
  20. height: 100vh;
  21. // background-color: #dbebf8;
  22. .header{
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. .img{
  27. width: 583upx;
  28. height: 386upx;
  29. margin: auto ;
  30. margin-top: 130upx;
  31. margin-bottom: 30upx;
  32. }
  33. p:nth-child(2){
  34. margin-top: 32upx;
  35. margin-bottom: 20upx;
  36. }
  37. }
  38. }
  39. </style>