agreement.vue 719 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view class="agreement">
  3. <view class="con" v-html="data">
  4. 111
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. data:''
  13. }
  14. },
  15. onLoad(option) {
  16. this.configInfo()
  17. },
  18. methods: {
  19. configInfo(){
  20. this.$http.configInfo()
  21. .then(res=>{
  22. if(res.data.code==200){
  23. console.log(res)
  24. this.data=res.data.result.ysxy
  25. // this.data=res.data.result
  26. // console.log(this.data.result.ysxy)
  27. }
  28. })
  29. },
  30. }
  31. }
  32. </script>
  33. <style lang="scss">
  34. page{
  35. height: 100%;
  36. }
  37. .agreement{
  38. height: 100%;
  39. .con{
  40. width:680rpx;
  41. margin: 24rpx auto;
  42. padding:32rpx;
  43. background-color: #fff;
  44. border-radius: 24rpx;
  45. }
  46. }
  47. </style>