飞天云平台-国产化
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
712 B

2 months ago
1 month ago
2 months ago
  1. <template>
  2. <div class="face-mobile">
  3. <!-- 查不到用户信息得情况下 -->
  4. <div class="face-valid">
  5. <img src="@/assets/images/faceH5/img1.png" alt="">
  6. <p>读者信息验证失败</p>
  7. <div class="return-btn" @click="returnValid">重新验证</div>
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. name: 'Error',
  14. data() {
  15. return {
  16. }
  17. },
  18. watch: {
  19. },
  20. methods: {
  21. returnValid() {
  22. this.$router.push({
  23. path: '/faceRegisterH5',
  24. query: { 'strLibcode': this.$route.query.strLibcode }
  25. })
  26. }
  27. }
  28. }
  29. </script>
  30. <style lang="scss" scoped>
  31. @import "~@/assets/styles/faceMobile.scss";
  32. </style>