兼兼街公众号代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
514 B

  1. <template>
  2. <view class="xieyi-page">
  3. <u-parse :content="dataInfo.value"></u-parse>
  4. </view>
  5. </template>
  6. <script>
  7. export default{
  8. data(){
  9. return{
  10. dataInfo:{}
  11. }
  12. },
  13. onLoad() {
  14. this.getfindAgree()
  15. },
  16. // 隐藏微信h5的标题栏
  17. onReady() {
  18. this.$com.displayNav()
  19. },
  20. methods:{
  21. getfindAgree(){
  22. this.$api('findAgree')
  23. .then(res=>{
  24. this.dataInfo = res.result;
  25. })
  26. }
  27. }
  28. }
  29. </script>
  30. <style lang="scss" scoped>
  31. .xieyi-page {
  32. padding: 10rpx 20rpx;
  33. }
  34. </style>