| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <view>
- <view>
- <view class="help-content">
- <u-parse :content="helpHtmlParse"></u-parse>
- <!-- <text style="margin-right: 75%;"> 如何分销?</text>
- <text> 对于小程序所有授权用户,均可以进行分销推广产品以获得分销奖励</text>
- <text> 打开小程序可以看到产品列表,您可以从产品列表中选择某个产品点击分享按钮,分享给好友,好友授权后即关联为您的直属下级</text>
- <text> 1、本人购买过产品------可以分享直属下级的购买产品奖励-----拥有两个以上直属下级才可分享下级的下级的购买产品奖励;</text>
- <text> 2、本人未购买过产品-----可以分享直属下级的购买产品奖励------拥有5个以上直属下级才可以分享下级的下级的购买产品奖励</text> -->
- </view>
-
- </view>
- </view>
- </template>
- <script>
- import uParse from '@/components/gaoyia-parse/parse.vue'
- export default {
- components: {
- uParse,
- },
- data() {
- return {
- helpHtmlParse:''
- }
- },
- onLoad(options) {
- console.log(options.qId)
- this.helpHtmlParse = options.qId
- },
- methods: {
- }
- }
- </script>
- <style>
-
- .help-content {
- padding: 15px;
- font-size: 30rpx;
- background: #fff;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .help-content text {
- margin-bottom: 2%;
- }
- </style>
|