1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <template>
- <view class="UserAgreement">
- <view v-html="integralRule"></view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- integralRule:'',
- }
- },
- onLoad() {
- this.integralRule = this.$store.getters.allset.integral_rule.value.integral_rule
- console.log(this.integralRule);
- },
- methods: {
-
-
-
- }
- }
-
-
- </script>
- <style lang="scss" scoped>
- $pageColor:#F9F9F9;
- $bgColor:#FFFFFF;
- .UserAgreement{
- height: 100%;
- background: $bgColor;
- padding: 0 30rpx;
- }
- .title{
- height: 82rpx;
- width: 750rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- text{
- font-size: 32rpx;
- font-family: PingFang-SC-Bold, PingFang-SC;
- font-weight: bold;
- color: #333333;
- }
- }
- .content{
- padding: 0 30rpx;
- view{
- margin-bottom: 24rpx;
- text{
- font-size: 28rpx;
- font-family: PingFang-SC-Bold, PingFang-SC;
- font-weight: bold;
- color: #333333;
- }
- }
-
- }
- </style>
|