wufa.vue 428 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view class="index">
  3. <view class="header">
  4. <img src="../../static/pic_wfdl_sr@2x.png" alt="" class="img">
  5. <span>扫码查询失败 请检查二维码是否正确</span>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. };
  14. }
  15. }
  16. </script>
  17. <style lang="scss">
  18. .index{
  19. height: 100vh;
  20. background-color: #dbebf8;
  21. .header{
  22. .img{
  23. }
  24. span{
  25. }
  26. }
  27. }
  28. </style>