index.vue 908 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view class="content">
  3. <view class="title">潮庭洗鞋小程序使用协议</view>
  4. <rich-text :nodes="contenet"></rich-text>
  5. </view>
  6. </template>
  7. <script>
  8. import api from 'utils/api'
  9. import util from 'utils/util'
  10. import uParse from '@/components/gaoyia-parse/parse.vue'
  11. export default {
  12. components: {
  13. uParse
  14. },
  15. data() {
  16. return {
  17. contenet:'',
  18. }
  19. },
  20. onLoad() {
  21. api.getSysConfig({"search_name":"agreement"}).then((res)=>{
  22. if(res.code==1){
  23. this.contenet=res.data.agreement.replace(/\<img/gi, '<img style=max-width:100%;height:auto')
  24. }
  25. })
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style lang="scss">
  32. .title{
  33. padding: 20rpx 0;
  34. font-size: 32rpx;
  35. color: #222;
  36. font-weight: bold;
  37. text-align: center;
  38. }
  39. .content{
  40. padding:30rpx;
  41. background-color: #fff;
  42. width: 640rpx;
  43. margin: 0 auto;
  44. border-radius: 16rpx;
  45. }
  46. </style>