message.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <div class="flex justify-center page">
  3. <div class="page-content flex flex-col items-center">
  4. <div class="icon-submit-succsss"></div>
  5. <div class="tip mt-4 mb-6">提交成功</div>
  6. <div class="label text-center">
  7. 审核通过后,用户可通过正品授权入口或扫二维码查看 机构及设备正品授权信息
  8. </div>
  9. <div class="record-btn mt-4" @click="toClubRecord">认证记录</div>
  10. </div>
  11. </div>
  12. </template>
  13. <script>
  14. import { mapGetters } from 'vuex'
  15. export default {
  16. layout: 'app',
  17. computed: {
  18. ...mapGetters(['supplierInfo', 'authUserId', 'routePrefix']),
  19. },
  20. methods: {
  21. toClubRecord() {
  22. this.$router.push(`${this.routePrefix}/record/club/detail`)
  23. },
  24. },
  25. }
  26. </script>
  27. <style lang="scss" scoped>
  28. @media screen and (min-width: 768px) {
  29. .page {
  30. min-height: calc(100vh - 80px - 80px);
  31. background: #fff;
  32. }
  33. .page-content {
  34. width: 432px;
  35. padding-top: 140px;
  36. .icon-submit-succsss {
  37. width: 64px;
  38. height: 64px;
  39. background: url(https://static.caimei365.com/www/authentic/pc/icon-submit-success.png)
  40. no-repeat center;
  41. background-size: 64px;
  42. }
  43. .tip {
  44. font-size: 24px;
  45. font-weight: bold;
  46. color: #1890ff;
  47. }
  48. .label {
  49. font-size: 18px;
  50. color: #282828;
  51. line-height: 1.6;
  52. }
  53. .record-btn {
  54. width: 98px;
  55. height: 36px;
  56. color: #fff;
  57. font-size: 14px;
  58. text-align: center;
  59. line-height: 36px;
  60. border-radius: 4px;
  61. cursor: pointer;
  62. @include themify($themes) {
  63. background: themed('color');
  64. }
  65. }
  66. }
  67. }
  68. </style>