CityRegisterOver.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <div>
  3. <div class="city" v-bind:style="{ background: `url(${loginStyle.rebgColor}) center center/100% 100% no-repeat` }">
  4. <div class="container">
  5. <div class="go">
  6. <div class="content">
  7. <img src="/images/all/success.png" alt=""/> 恭喜您注册完成!
  8. </div>
  9. <a href="https://town.ubtob.com" class="btn">跳转至产城门户</a>
  10. </div>
  11. </div>
  12. </div>
  13. <template>
  14. <div v-html="loginStyle.footUrl" class="footer"></div>
  15. </template>
  16. </div>
  17. </template>
  18. <script>
  19. export default {
  20. name: 'city',
  21. computed: {
  22. loginStyle () {
  23. return this.$store.state.login.loginStyle.data.content ? this.$store.state.login.loginStyle.data.content : ''
  24. }
  25. }
  26. }
  27. </script>
  28. <style scoped type="text/scss" lang="scss">
  29. .city{
  30. /*width: 1920px;*/
  31. height: 1080px;
  32. margin: 0 auto;
  33. text-align: center;
  34. padding-top:100px;
  35. .go{
  36. margin: 0 auto;
  37. width: 805px;
  38. height: 355px;
  39. text-align: center;
  40. border-radius: 24px;
  41. background: rgba(255,255,255,.7);
  42. .content{
  43. padding-top: 82px;
  44. font-size: 48px;
  45. color: #000;
  46. letter-spacing: 1.43px;
  47. img{
  48. margin-right: 33px;
  49. }
  50. }
  51. }
  52. .btn{
  53. margin-top: 74px;
  54. display: inline-block;
  55. width: 428px;
  56. height: 72px;
  57. line-height: 72px;
  58. font-size: 28px;
  59. color: #fff;
  60. background: #237594;
  61. }
  62. }
  63. .footer{
  64. padding: 50px 0;
  65. }
  66. </style>