| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <template>
- <div>
- <template>
- <div>
- <registerCenter-header/>
- </div>
- <div class="x-content">
- <div class="container">
- <div class="x-form-wrap">
- <%--优软云协议开始--%>
- <div class="rules-content" v-html="agreementUrl.term"></div>
- </div>
- </div>
- </div>
- </template>
- <div v-html="loginStyle && loginStyle.footUrl || ''" style="margin: 50px 0;"></div>
- </div>
- </template>
- <script>
- import RegisterCenterHeader from '~components/default/RegisterCenterHeader.vue'
- export default {
- layout (context) {
- return context.store.state.option.isMobile ? 'mobile' : 'isCityFooter'
- },
- components: {
- RegisterCenterHeader
- },
- fetch ({store, route}) {
- return Promise.all([
- store.dispatch('GetLoginStyle', {appId: route.query.appId}),
- store.dispatch('GetAgreementUrl', {appId: route.query.appId})
- ])
- },
- computed: {
- isMobile () {
- return this.$store.state.option.isMobile
- },
- loginStyle () {
- return this.$store.state.login.loginStyle.data.content
- },
- agreementUrl () {
- return this.$store.state.login.agreementUrl.data.content
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .x-content .container .x-form-wrap .rules-content{
- color: #000;
- }
- .w-form-wrap {
- padding: .2rem;
- background: #fff;
- border: 1px solid #e4ecf3;
- padding-bottom: .4rem;
- .rules-content {
- width: 100%;
- margin: 0 auto;
- color: #000;
- h3 {
- font-size: 14px;
- font-weight: bold;
- line-height: 80px;
- text-align: center;
- margin-bottom: 0;
- color: #333;
- }
- .content {
- width: 98%;
- margin: 0 auto;
- font-size: 14px;
- color: #333;
- p {
- font-size: 14px;
- color: #333;
- margin-bottom: 0;
- line-height: 35px;
- strong{
- font-weight: bold;
- }
- }
- div {
- line-height: 35px;
- }
- }
- }
- }
- .x-content {
- position: relative;
- margin-top: 30px;
- .container{
- width: 990px!important;
- position: relative;
- .x-form-wrap {
- padding: 20px;
- background: #fff;
- border: 1px solid #e4ecf3;
- padding-bottom: 40px;
- .rules-content {
- width: 100%;
- margin: 0 auto;
- h3 {
- font-size: 18px;
- font-weight: bold;
- line-height: 80px;
- text-align: center;
- margin-bottom: 0;
- color: #333;
- }
- .content {
- width: 98%;
- margin: 0 auto;
- font-size: 14px;
- color: #333;
- p {
- font-size: 14px;
- color: #333;
- margin-bottom: 0;
- /* text-indent: 2em; */
- line-height: 35px;
- strong{
- font-weight: bold;
- }
- }
- div {
- line-height: 35px;
- }
- }
- }
- }
- }
- }
- </style>
|