| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <div>
- <div class="city" v-bind:style="{ background: `url(${loginStyle.rebgColor}) center center/100% 100% no-repeat` }">
- <div class="container">
- <div class="go">
- <div class="content">
- <img src="/images/all/success.png" alt=""/> 恭喜您注册完成!
- </div>
- <a href="https://town.ubtob.com" class="btn">跳转至产城门户</a>
- </div>
- </div>
- </div>
- <template>
- <div v-html="loginStyle.footUrl" class="footer"></div>
- </template>
- </div>
- </template>
- <script>
- export default {
- name: 'city',
- computed: {
- loginStyle () {
- return this.$store.state.login.loginStyle.data.content ? this.$store.state.login.loginStyle.data.content : ''
- }
- }
- }
- </script>
- <style scoped type="text/scss" lang="scss">
- .city{
- /*width: 1920px;*/
- height: 1080px;
- margin: 0 auto;
- text-align: center;
- padding-top:100px;
- .go{
- margin: 0 auto;
- width: 805px;
- height: 355px;
- text-align: center;
- border-radius: 24px;
- background: rgba(255,255,255,.7);
- .content{
- padding-top: 82px;
- font-size: 48px;
- color: #000;
- letter-spacing: 1.43px;
- img{
- margin-right: 33px;
- }
- }
- }
- .btn{
- margin-top: 74px;
- display: inline-block;
- width: 428px;
- height: 72px;
- line-height: 72px;
- font-size: 28px;
- color: #fff;
- background: #237594;
- }
- }
- .footer{
- padding: 50px 0;
- }
- </style>
|