index.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <view>
  3. <view>
  4. <view class="help-content">
  5. <u-parse :content="helpHtmlParse"></u-parse>
  6. <!-- <text style="margin-right: 75%;"> 如何分销?</text>
  7. <text> 对于小程序所有授权用户,均可以进行分销推广产品以获得分销奖励</text>
  8. <text> 打开小程序可以看到产品列表,您可以从产品列表中选择某个产品点击分享按钮,分享给好友,好友授权后即关联为您的直属下级</text>
  9. <text> 1、本人购买过产品------可以分享直属下级的购买产品奖励-----拥有两个以上直属下级才可分享下级的下级的购买产品奖励;</text>
  10. <text> 2、本人未购买过产品-----可以分享直属下级的购买产品奖励------拥有5个以上直属下级才可以分享下级的下级的购买产品奖励</text> -->
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. import uParse from '@/components/gaoyia-parse/parse.vue'
  17. export default {
  18. components: {
  19. uParse,
  20. },
  21. data() {
  22. return {
  23. helpHtmlParse:''
  24. }
  25. },
  26. onLoad(options) {
  27. console.log(options.qId)
  28. this.helpHtmlParse = options.qId
  29. },
  30. methods: {
  31. }
  32. }
  33. </script>
  34. <style lang="scss">
  35. // @import url("../../../../components/gaoyia-parse/parse.css");
  36. .help-content {
  37. padding: 15px;
  38. font-size: 30rpx;
  39. background: #fff;
  40. display: flex;
  41. flex-direction: column;
  42. align-items: center;
  43. }
  44. .help-content text {
  45. margin-bottom: 2%;
  46. }
  47. </style>