• CRMEB开源商城部署在腾讯云


    安装配置

    买了腾讯云65元/年的LH服务器。安装系统推荐宝塔系统

    CRMEB v4 页面跳转链接_w3cschool
    https://www.w3cschool.cn/crmebv4/crmebv4-x2z33n31.html
    在这里插入图片描述
    vi /www/server/nginx/conf/nginx.conf
    /www/server/panel/vhost/nginx/*.conf

    2.输入你要绑定的网站域名(上一步中域名配置所解析的域名),创建FTP,创建MySQL数据库。都填写后,点击提交
    这一步域名里面填IP也可以的。

    ftp被动模式:放通端口21,及 修改配置文件 中设置的 pasv_min_port 到 pasv_max_port 之间的所有端口,本文放通端口为40000 - 45000。
    ftp端口可以在宝塔ftp配置里面查看。

    用Windows自带的文件资源管理器可以上传文件。

    如果“函数检测必须开启”没通过 去“3.环境配置”里的PHP配置中 启用一下被禁用的函数(从“禁用函数”里面删除),可以Ctrl+f查找函数。

    step5.php 上传信息

    crmeb\public\install\templates\step5.php

    	        <a href="" class="btn">进入前台</a>
                <a href="/admin" class="btn btn_submit J_install_btn">进入后台</a>
          </div>
          <div class=""> </div>
        </div>
      </section>
    </div>
    <?php require './templates/footer.php';?>
    <script>
    $(function(){
    	$.ajax({
    	type: "POST",
    	url: "http://shop.crmeb.net/index.php/admin/server.upgrade_api/updatewebinfo",
            header:{
                'Access-Control-Allow-Origin':'*',
                'Access-Control-Allow-Headers':'X-Requested-With',
                'Access-Control-Allow-Methods':'PUT,POST,GET,DELETE,OPTIONS'
            },
    	data: {
    	    host:'',
            https:'http://'.$host;?>',
            version:'',
            ip:<?php echo json_encode($ip);?>
        },
    	dataType: 'json',
    	success: function(){}
    	});
    });
    </script>
    </body>
    </html>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32

    禁用函数
    删除下列函数(从“禁用函数”里面删除下列函数,实际上是允许用这些函数)
    proc_open pcntl_signal pcntl_signal_dispatch pcntl_fork pcntl_wait pcntl_alarm

    1、先在“网站”页面修改宝塔命令行的php版本为当前程序设置的php版本

    root用户下,.user.ini既不能修改也不能删除,怎么办? - Powered by Discuz!
    https://bbs.vpser.net/thread-12261-1-1.html

    宝塔面板搭载ThinkPHP5.0项目关于open_basedir报错解决办法 - 小二胡工作室
    https://www.xiaoerhu.com/content/detail272.html

    LNMP添加、删除虚拟主机及伪静态使用教程 - LNMP一键安装包
    https://lnmp.org/faq/lnmp-vhost-add-howto.html

    LNMP 1.2及更高版本防跨目录功能使用.user.ini,该文件在网站根目录下,可以修改.user.ini 里面的open_basedir的值来设置限制访问的目录或删除来移除防跨目录的设置。

    .user.ini文件无法直接修改,如要修或删除需要先执行:chattr -i /网站目录/.user.ini
    可以使用winscp文件管理、vim编辑器或nano编辑器进行修改。
    删除的话rm -f /网站目录/.user.ini 就可以。
    修改完成后再执行:chattr +i /网站目录/.user.ini
    .user.ini不需要重启一般5分钟左右生效,也可以重启一下php-fpm立即生效。
    如果要更改网站目录必须要按上述方法修改防跨目录的设置,否则肯定报错!!

    .env

    htps://www.crmeb.com/ask/thread/11637
    根目录下增加.env文件。

    APP_DEBUG = true
    
    [APP]
    DEFAULT_TIMEZONE = Asia/Shanghai
    
    [DATABASE]
    TYPE = mysql
    HOSTNAME = 127.0.0.1
    HOSTPORT = 3306
    USERNAME = 43_138
    PASSWORD = 'b'
    DATABASE = 43_138
    PREFIX = eb_
    CHARSET = utf8
    DEBUG = true
    
    [LANG]
    default_lang = zh-cn
    
    [REDIS]
    REDIS_HOSTNAME = 127.0.0.1
    PORT = 6379
    REDIS_PASSWORD = ''
    SELECT = 0
    
    [QUEUE]
    QUEUE_NAME = #QUEUE_NAME#
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28

    readme/安装说明.md · 众邦科技/CRMEB开源商城系统 - 码云 - 开源中国
    htps://gitee.com/ZhongBangKeJi/CRMEB/blob/master/readme/%E5%AE%89%E8%A3%85%E8%AF%B4%E6%98%8E.md

    APP_DEBUG = true
    
    [APP]
    DEFAULT_TIMEZONE = Asia/Shanghai
    
    [DATABASE]
    TYPE = mysql
    HOSTNAME = 127.0.0.1
    HOSTPORT = 3306
    USERNAME = root
    PASSWORD = 'root'
    DATABASE = crmeb
    PREFIX = eb_
    CHARSET = utf8
    DEBUG = true
    
    [LANG]
    default_lang = zh-cn
    
    [REDIS]
    REDIS_HOSTNAME = 127.0.0.1
    PORT = 6379
    REDIS_PASSWORD = 
    SELECT = 0
    
    [QUEUE]
    QUEUE_NAME = crmeb
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27

    DIY

    api/v2/diy/get_diy/default

    template\uni-app\pages\index\visualization\index.vue

    				getDiy().then((res) => {
    
    
    • 1
    • 2

    template\uni-app\api\api.js

    
    /**
     * 获取首页DIY;
     */
    export function getDiy(id) {
    	return request.get(`v2/diy/get_diy/default${id ? '?id='+id:''}`, {}, {
    		noAuth: true
    	});
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    crmeb\app\api\route\v2.php

            //DIY接口
            Route::get('diy/get_diy/[:name]', 'v2.PublicController/getDiy');
    
    
    • 1
    • 2
    • 3

    crmeb\app\api\controller\v2\PublicController.php

        /**
         * 获取页面数据
         * @param Request $request
         * @param string $name
         * @return mixed
         * @throws \think\db\exception\DataNotFoundException
         * @throws \think\db\exception\DbException
         * @throws \think\db\exception\ModelNotFoundException
         */
        public function getDiy(Request $request, $name = '')
        {
            list($id) = $request->getMore([
                ['id', 0]
            ], true);
            /** @var DiyServices $diyService */
            $diyService = app()->make(DiyServices::class);
            $data = $diyService->getDiy($id);
            return app('json')->successful($data);
        }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    crmeb\app\services\diy\DiyServices.php

    
        /**
         * DiyServices constructor.
         * @param DiyDao $dao
         */
        public function __construct(DiyDao $dao)
        {
            $this->dao = $dao;
        }
        
        /**
         * 获取页面数据
         * @param int $id
         * @return array|mixed
         * @throws \think\db\exception\DataNotFoundException
         * @throws \think\db\exception\DbException
         * @throws \think\db\exception\ModelNotFoundException
         */
        public function getDiy($id = 0)
        {
            $field = 'name,value,is_show,is_bg_color,color_picker,bg_pic,bg_tab_val,is_bg_pic,order_status,is_diy,title';
            if ($id) {
                $info = $this->dao->getOne(['id' => $id], $field);
            } else {
                $info = $this->dao->getOne(['status' => 1, 'is_del' => 0], $field);
            }
            if ($info) {
                $info = $info->toArray();
                if ($info['value']) {
                    $info['value'] = json_decode($info['value'], true);
                    if ($info['is_diy']) {
                        foreach ($info['value'] as &$item) {
                            if ($item['name'] == 'customerService') {
                                $item['routine_contact_type'] = sys_config('routine_contact_type', 0);
                            }
                        }
                        return $info;
                    } else {
                        foreach ($info['value'] as $key => &$item) {
                            if ($key == 'customerService') {
                                foreach ($item as $k => &$v) {
                                    $v['routine_contact_type'] = sys_config('routine_contact_type', 0);
                                }
                            }
                        }
                        return $info['value'];
                    }
                }
            }
            return [];
        }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52

    crmeb\app\dao\diy\DiyDao.php

    use app\model\diy\Diy;
    
    
    • 1
    • 2

    crmeb\app\model\diy\Diy.php

    
        /**
         * 模型名称
         * @var string
         */
        protected $name = 'diy';
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    crmeb\config\database.php

                // 数据库表前缀
                'prefix'          => Env::get('database.prefix', 'eb_'),
    
    
    • 1
    • 2
    • 3

    crmeb\app\dao\BaseDao.php

    
        /**
         * 根据条件获取一条数据
         * @param array $where
         * @param string|null $field
         * @param array $with
         * @return array|Model|null
         * @throws \think\db\exception\DataNotFoundException
         * @throws \think\db\exception\DbException
         * @throws \think\db\exception\ModelNotFoundException
         */
        public function getOne(array $where, ?string $field = '*', array $with = [])
        {
            $field = explode(',', $field);
            return $this->get($where, $field, $with);
        }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    数据库配置

    crmeb\public\install\crmeb.sql
    INSERT INTO eb_diy (id, version, name, template_name, value, default_value, add_time, update_time, status, type, is_show, is_bg_color, is_bg_pic, color_picker, bg_pic, bg_tab_val, is_del, order_status, my_banner_status, is_diy) VALUES
    (1, ‘1.0’, ‘默认模版’, ‘default’, '{“headerSerch”:{“defaultVal”:{“isShow”:{“val”:true},“imgUrl”:{“title”:“\u6700\u591a\u53ef\u6dfb\u52a01\u5f20\u56fe\u7247\uff0c\u56fe\u7247\u5efa\u8bae\u5bbd\u5ea6128 * 45px”,“url”:“http:\/\/kaifa.crmeb.net\/uploads\/attach\/2019\/10\/20191023\/db7b7bef9dffdedd27e9a3aa34218cea.png”},“hotList”:{“title”:“\u70ed\u8bcd\u6700\u591a20\u4e2a\u5b57\uff0c\u9f20\u6807\u62d6\u62fd\u5de6\u4fa7\u5706\u70b9\u53ef\u8c03\u6574\u70ed\u8bcd\u987a\u5e8f”,“max”:99,“list”:[{“val”:“”,“maxlength”:20}]},“titleInfo”:{“title”:“”,“type”:2,“list”:[{“title”:“\u7f51\u7ad9\u7b80\u4ecb”,“val”:“\u7f51\u7ad9\u7b80\u4ecb”,“max”:20,“pla”:“\u9009\u586b\uff0c\u4e0d\u8d85\u8fc7\u5341\u4e2a\u5b57”}]}},“default”:{“isShow”:{“val”:true},“imgUrl”:{“title”:“\u6700\u591a\u53ef\u6dfb\u52a01\u5f20\u56fe\u7247\uff0c\u56fe\u7247\u5efa\u8bae\u5bbd\u5ea6128 * 45px”,“url”:“https:\/\/data44.wuht.net\/\/uploads\/attach\/2022\/01\/20220115\/28a88411581c15dbc65fa4fa8e0d0c17.png”}
    这个应该是定制界面的。

    http response

    {
        "status": 200,
        "msg": "success",
        "data": {
            "headerSerch": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "imgUrl": {
                        "title": "最多可添加1张图片,图片建议宽度128 * 45px",
                        "url": ""
                    },
                    "hotList": {
                        "title": "热词最多20个字,鼠标拖拽左侧圆点可调整热词顺序",
                        "max": 99,
                        "list": [
                            {
                                "val": "",
                                "maxlength": 20
                            }
                        ]
                    },
                    "titleInfo": {
                        "title": "",
                        "type": 2,
                        "list": [
                            {
                                "title": "网站简介",
                                "val": "网站简介",
                                "max": 20,
                                "pla": "选填,不超过十个字"
                            }
                        ]
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "imgUrl": {
                        "title": "最多可添加1张图片,图片建议宽度128 * 45px",
                        "url": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/b5516ae0e79ff6960882241416e2c9e8.png"
                    },
                    "hotList": {
                        "title": "热词最多20个字,鼠标拖拽左侧圆点可调整热词顺序",
                        "max": 99,
                        "list": [
                            {
                                "val": "",
                                "maxlength": 20
                            }
                        ]
                    },
                    "titleInfo": {
                        "title": "",
                        "type": 2,
                        "list": [
                            {
                                "title": "网站简介",
                                "val": "优质精选好物",
                                "max": 20,
                                "pla": "选填,不超过十个字"
                            }
                        ]
                    }
                }
            },
            "swiperBg": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "imgList": {
                        "title": "最多可添加10张图片,建议宽度750px",
                        "max": 10,
                        "list": [
                            {
                                "img": "",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "",
                                        "maxlength": 10,
                                        "tips": "选填,不超过十个字"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "",
                                        "maxlength": 999,
                                        "tips": "请填写链接"
                                    }
                                ]
                            }
                        ]
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "imgList": {
                        "title": "最多可添加10张图片,建议宽度750px",
                        "max": 10,
                        "list": [
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/fb73d810b31d7d54c7926e67874c9a25.png",
                                "info": [
                                    {
                                        "maxlength": 10,
                                        "tips": "选填,不超过十个字",
                                        "title": "标题",
                                        "value": ""
                                    },
                                    {
                                        "maxlength": 999,
                                        "tips": "请填写链接",
                                        "title": "链接",
                                        "value": "\/pages\/index\/index"
                                    }
                                ]
                            }
                        ]
                    }
                },
                "cc": {
                    "isShow": {
                        "val": true
                    },
                    "imgList": {
                        "title": "最多可添加10张图片,建议宽度750px",
                        "max": 10,
                        "list": [
                            {
                                "img": "",
                                "info": [
                                    {
                                        "maxlength": 10,
                                        "tips": "选填,不超过十个字",
                                        "title": "标题",
                                        "value": ""
                                    },
                                    {
                                        "maxlength": 999,
                                        "tips": "请填写链接",
                                        "title": "链接",
                                        "value": ""
                                    }
                                ]
                            }
                        ]
                    }
                },
                "aa": {
                    "isShow": {
                        "val": false
                    },
                    "imgList": {
                        "title": "最多可添加10张图片,建议宽度750px",
                        "max": 10,
                        "list": []
                    }
                }
            },
            "menus": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "imgList": {
                        "title": "最多可添加20个,图片建议宽度96*96px;鼠标拖拽左侧圆点可调整图标顺序",
                        "max": 20,
                        "list": [
                            {
                                "img": "",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "商品分类",
                                        "maxlength": 5,
                                        "tips": "请填写标题"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/goods_cate\/goods_cate",
                                        "maxlength": 999,
                                        "tips": "请填写链接"
                                    }
                                ]
                            }
                        ]
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "imgList": {
                        "title": "最多可添加20个,图片建议宽度96*96px;鼠标拖拽左侧圆点可调整图标顺序",
                        "max": 20,
                        "list": [
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/f29df730d7663c45a06c6797902b8d81.png",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "商品分类",
                                        "maxlength": 5,
                                        "tips": "请填写标题"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/goods_cate\/goods_cate",
                                        "maxlength": 999,
                                        "tips": "请填写链接"
                                    }
                                ]
                            },
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/8367d0b2e71d7e9cb82aa5fef9a44519.png",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "领优惠券",
                                        "maxlength": 5,
                                        "tips": "请填写标题"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/users\/user_get_coupon\/index",
                                        "maxlength": 999,
                                        "tips": "请填写链接"
                                    }
                                ]
                            },
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/763ed559229df299a850c3ca4a85f0bb.png",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "行业资讯",
                                        "maxlength": 5,
                                        "tips": "请填写标题"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/extension\/news_list\/index",
                                        "maxlength": 999,
                                        "tips": "请填写链接"
                                    }
                                ]
                            },
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/e5a025afe48173efaa4a0f8fcf4abb17.png",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "我的收藏",
                                        "maxlength": 5,
                                        "tips": "请填写标题"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/users\/user_goods_collection\/index",
                                        "maxlength": 999,
                                        "tips": "请填写链接"
                                    }
                                ]
                            },
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/619521116dbd3546b2ef63706b861019.png",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "地址管理",
                                        "maxlength": 5,
                                        "tips": "请填写标题"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/users\/user_address_list\/index",
                                        "maxlength": 999,
                                        "tips": "请填写链接"
                                    }
                                ]
                            },
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/447dc010aa6468deff9977a044b7926d.png",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "秒杀活动",
                                        "maxlength": 5,
                                        "tips": "请填写标题"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/activity\/goods_seckill\/index",
                                        "maxlength": 999,
                                        "tips": "请填写链接"
                                    }
                                ]
                            },
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/b2c5eac9983d8c57600e7d038988a098.png",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "砍价活动",
                                        "maxlength": 5,
                                        "tips": "请填写标题"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/activity\/goods_bargain\/index",
                                        "maxlength": 999,
                                        "tips": "请填写链接"
                                    }
                                ]
                            },
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/df20c7238e310bbbe98bdcf190d1025a.png",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "拼团活动",
                                        "maxlength": 5,
                                        "tips": "请填写标题"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/activity\/goods_combination\/index",
                                        "maxlength": 999,
                                        "tips": "请填写链接"
                                    }
                                ]
                            },
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/303bbdaa2137f13ffa40f23e400bfef0.png",
                                "info": [
                                    {
                                        "maxlength": 10,
                                        "tips": "选填,不超过十个字",
                                        "title": "标题",
                                        "value": "预售管理"
                                    },
                                    {
                                        "maxlength": 999,
                                        "tips": "请填写链接",
                                        "title": "链接",
                                        "value": "\/pages\/activity\/presell\/index"
                                    }
                                ]
                            },
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/b16e86cdd248429ffc08fab417a3ffd2.png",
                                "info": [
                                    {
                                        "maxlength": 10,
                                        "tips": "选填,不超过十个字",
                                        "title": "标题",
                                        "value": "积分商城"
                                    },
                                    {
                                        "maxlength": 999,
                                        "tips": "请填写链接",
                                        "title": "链接",
                                        "value": "\/pages\/points_mall\/index"
                                    }
                                ]
                            }
                        ]
                    }
                }
            },
            "tabNav": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    }
                },
                "cc": {
                    "isShow": {
                        "val": true
                    }
                }
            },
            "news": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "imgUrl": {
                        "title": "最多可添加10个模板,图片建议宽度124 * 28px",
                        "url": ""
                    },
                    "newList": {
                        "max": 10,
                        "list": [
                            {
                                "chiild": [
                                    {
                                        "title": "标题",
                                        "val": "CRMEB_PRO 1.1正式公测啦",
                                        "max": 20,
                                        "pla": "选填,不超过四个字"
                                    },
                                    {
                                        "title": "链接",
                                        "val": "链接",
                                        "max": 99,
                                        "pla": "选填"
                                    }
                                ]
                            }
                        ]
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "imgUrl": {
                        "title": "最多可添加10个模板,图片建议宽度124 * 28px",
                        "url": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/95177075d29af1194e544d4dc791c751.png"
                    },
                    "newList": {
                        "max": 10,
                        "list": [
                            {
                                "chiild": [
                                    {
                                        "title": "标题",
                                        "val": "CRMEB V4.6.0",
                                        "max": 20,
                                        "pla": "选填,不超过四个字"
                                    },
                                    {
                                        "title": "链接",
                                        "val": "\/pages\/extension\/news_list\/index",
                                        "max": 99,
                                        "pla": "选填"
                                    }
                                ]
                            }
                        ]
                    }
                }
            },
            "activity": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "imgList": {
                        "isDelete": true,
                        "title": "最多可添加3组模块,第一张260*260px,后两张416*124px",
                        "max": 3,
                        "list": [
                            {
                                "img": "",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "一起来拼团",
                                        "maxlength": 20,
                                        "tips": "标题"
                                    },
                                    {
                                        "title": "描述",
                                        "value": "优惠多多",
                                        "maxlength": 20,
                                        "tips": "描述"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/activity\/goods_combination\/index",
                                        "maxlength": 999,
                                        "tips": "链接"
                                    }
                                ]
                            },
                            {
                                "img": "",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "秒杀专区",
                                        "maxlength": 20,
                                        "tips": "标题"
                                    },
                                    {
                                        "title": "描述",
                                        "value": "新能源汽车优惠多多",
                                        "maxlength": 20,
                                        "tips": "描述"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/activity\/goods_seckill\/index",
                                        "maxlength": 999,
                                        "tips": "链接"
                                    }
                                ]
                            },
                            {
                                "img": "",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "砍价活动",
                                        "maxlength": 20,
                                        "tips": "标题"
                                    },
                                    {
                                        "title": "描述",
                                        "value": "呼朋唤友来砍价~~",
                                        "maxlength": 20,
                                        "tips": "描述"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/activity\/goods_bargain\/index",
                                        "maxlength": 999,
                                        "tips": "链接"
                                    }
                                ]
                            }
                        ]
                    },
                    "max": 3
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "imgList": {
                        "isDelete": true,
                        "title": "最多可添加3组模块,第一张260*260px,后两张416*124px",
                        "max": 3,
                        "list": [
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/e81622f4c9442807a591ac4f8805eb59.jpg",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "秒杀专区",
                                        "maxlength": 20,
                                        "tips": "标题"
                                    },
                                    {
                                        "title": "描述",
                                        "value": "优惠多多",
                                        "maxlength": 20,
                                        "tips": "描述"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/activity\/goods_seckill\/index",
                                        "maxlength": 999,
                                        "tips": "链接"
                                    }
                                ]
                            },
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/5b03e2358031f4e52175db666fd54993.jpg",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "一起来拼团",
                                        "maxlength": 20,
                                        "tips": "标题"
                                    },
                                    {
                                        "title": "描述",
                                        "value": "优惠多多",
                                        "maxlength": 20,
                                        "tips": "描述"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/activity\/goods_combination\/index",
                                        "maxlength": 999,
                                        "tips": "链接"
                                    }
                                ]
                            },
                            {
                                "img": "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/cc4e77294c3298d8b9b46868f37da126.jpg",
                                "info": [
                                    {
                                        "title": "标题",
                                        "value": "砍价活动",
                                        "maxlength": 20,
                                        "tips": "标题"
                                    },
                                    {
                                        "title": "描述",
                                        "value": "呼朋唤友来砍价~~",
                                        "maxlength": 20,
                                        "tips": "描述"
                                    },
                                    {
                                        "title": "链接",
                                        "value": "\/pages\/activity\/goods_bargain\/index",
                                        "maxlength": 999,
                                        "tips": "链接"
                                    }
                                ]
                            }
                        ]
                    },
                    "max": 3
                }
            },
            "alive": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "titleInfo": {
                        "title": "",
                        "list": [
                            {
                                "title": "标题",
                                "val": "直播间",
                                "max": 20,
                                "pla": "选填,不超过六个字"
                            },
                            {
                                "title": "介绍",
                                "val": "精彩直播",
                                "max": 8,
                                "pla": "选填,不超过8个字"
                            },
                            {
                                "title": "链接",
                                "val": "\/pages\/columnGoods\/HotNewGoods\/index?type=1",
                                "max": 999,
                                "pla": "选填"
                            }
                        ]
                    },
                    "numConfig": {
                        "title": "显示数量",
                        "val": 3
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "titleInfo": {
                        "title": "",
                        "list": [
                            {
                                "title": "标题",
                                "val": "直播间",
                                "max": 20,
                                "pla": "选填,不超过六个字"
                            },
                            {
                                "title": "介绍",
                                "val": "精彩直播",
                                "max": 8,
                                "pla": "选填,不超过8个字"
                            },
                            {
                                "title": "链接",
                                "val": "\/pages\/live_list\/index",
                                "max": 999,
                                "pla": "选填"
                            }
                        ]
                    },
                    "numConfig": {
                        "title": "显示数量",
                        "val": 3
                    }
                }
            },
            "scrollBox": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "titleInfo": {
                        "title": "",
                        "list": [
                            {
                                "title": "标题",
                                "val": "快速选择",
                                "max": 4,
                                "pla": "选填,不超过4个字"
                            },
                            {
                                "title": "介绍",
                                "val": "诚意推荐品质商品",
                                "max": 8,
                                "pla": "选填,不超过8个字"
                            },
                            {
                                "title": "链接",
                                "val": "\/pages\/columnGoods\/HotNewGoods\/index?type=1",
                                "max": 999,
                                "pla": "选填"
                            }
                        ]
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "type": 1,
                        "activeValue": "",
                        "list": [
                            {
                                "activeValue": "",
                                "title": ""
                            },
                            {
                                "activeValue": "",
                                "title": ""
                            }
                        ]
                    },
                    "numConfig": {
                        "title": "显示数量",
                        "val": 6
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "titleInfo": {
                        "title": "",
                        "list": [
                            {
                                "title": "标题",
                                "val": "快速选择",
                                "max": 4,
                                "pla": "选填,不超过4个字"
                            },
                            {
                                "title": "介绍",
                                "val": "上百种商品分类任",
                                "max": 8,
                                "pla": "选填,不超过8个字"
                            },
                            {
                                "title": "链接",
                                "val": "\/pages\/goods_cate\/goods_cate",
                                "max": 999,
                                "pla": "选填"
                            }
                        ]
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "type": 1,
                        "activeValue": "",
                        "list": []
                    },
                    "numConfig": {
                        "title": "显示数量",
                        "val": 6
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                }
            },
            "adsRecommend": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "imgList": {
                        "title": "图片建议尺寸338 * 206px;鼠标拖拽左侧圆点可调整版块顺序",
                        "max": 10,
                        "list": [
                            {
                                "img": "",
                                "info": [
                                    {
                                        "title": "链接",
                                        "value": "",
                                        "maxlength": 999,
                                        "tips": "请填写链接"
                                    }
                                ]
                            }
                        ]
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "imgList": {
                        "title": "图片建议尺寸338 * 206px;鼠标拖拽左侧圆点可调整版块顺序",
                        "max": 10,
                        "list": [
                            {
                                "img": "",
                                "info": [
                                    {
                                        "title": "链接",
                                        "value": "",
                                        "maxlength": 999,
                                        "tips": "请填写链接"
                                    }
                                ]
                            }
                        ]
                    }
                }
            },
            "coupon": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "numConfig": {
                        "val": 10
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "numConfig": {
                        "val": "8"
                    }
                }
            },
            "seckill": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "titleInfo": {
                        "title": "",
                        "type": 2,
                        "list": [
                            {
                                "title": "商品类型",
                                "val": "限时秒杀",
                                "max": 20,
                                "pla": "选填,不超过四个字"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "activeValue": "",
                        "list": []
                    },
                    "numConfig": {
                        "val": 6
                    },
                    "goodsSort": {
                        "title": "商品排序",
                        "name": "goodsSort",
                        "type": 0,
                        "list": [
                            {
                                "val": "系统排序",
                                "icon": "iconComm_whole"
                            },
                            {
                                "val": "销量最高",
                                "icon": "iconComm_number"
                            },
                            {
                                "val": "最新上架",
                                "icon": "iconzuixin"
                            }
                        ]
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "titleInfo": {
                        "title": "",
                        "type": 2,
                        "list": [
                            {
                                "title": "商品类型",
                                "val": "限时秒杀",
                                "max": 20,
                                "pla": "选填,不超过四个字"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "activeValue": "",
                        "list": []
                    },
                    "numConfig": {
                        "val": 6
                    },
                    "goodsSort": {
                        "title": "商品排序",
                        "name": "goodsSort",
                        "type": 0,
                        "list": [
                            {
                                "val": "系统排序",
                                "icon": "iconComm_whole"
                            },
                            {
                                "val": "销量最高",
                                "icon": "iconComm_number"
                            },
                            {
                                "val": "最新上架",
                                "icon": "iconzuixin"
                            }
                        ]
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                }
            },
            "combination": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "titleInfo": {
                        "title": "",
                        "type": 3,
                        "list": [
                            {
                                "title": "商品类型",
                                "val": "拼团列表",
                                "max": 20,
                                "pla": "选填,不超过四个字"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "activeValue": "",
                        "list": []
                    },
                    "numConfig": {
                        "val": 6
                    },
                    "goodsSort": {
                        "title": "商品排序",
                        "name": "goodsSort",
                        "type": 0,
                        "list": [
                            {
                                "val": "系统排序",
                                "icon": "iconComm_whole"
                            },
                            {
                                "val": "销量最高",
                                "icon": "iconComm_number"
                            },
                            {
                                "val": "最新上架",
                                "icon": "iconzuixin"
                            }
                        ]
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "titleInfo": {
                        "title": "",
                        "type": 3,
                        "list": [
                            {
                                "title": "商品类型",
                                "val": "拼团列表",
                                "max": 20,
                                "pla": "选填,不超过四个字"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "activeValue": "",
                        "list": []
                    },
                    "numConfig": {
                        "val": 6
                    },
                    "goodsSort": {
                        "title": "商品排序",
                        "name": "goodsSort",
                        "type": 0,
                        "list": [
                            {
                                "val": "系统排序",
                                "icon": "iconComm_whole"
                            },
                            {
                                "val": "销量最高",
                                "icon": "iconComm_number"
                            },
                            {
                                "val": "最新上架",
                                "icon": "iconzuixin"
                            }
                        ]
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                }
            },
            "bargain": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "titleInfo": {
                        "title": "",
                        "type": 8,
                        "list": [
                            {
                                "title": "商品类型",
                                "val": "砍价列表",
                                "max": 20,
                                "pla": "选填,不超过四个字"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "activeValue": "",
                        "list": []
                    },
                    "numConfig": {
                        "val": 6
                    },
                    "goodsSort": {
                        "title": "商品排序",
                        "name": "goodsSort",
                        "type": 0,
                        "list": [
                            {
                                "val": "系统排序",
                                "icon": "iconComm_whole"
                            },
                            {
                                "val": "销量最高",
                                "icon": "iconComm_number"
                            },
                            {
                                "val": "最新上架",
                                "icon": "iconzuixin"
                            }
                        ]
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "titleInfo": {
                        "title": "",
                        "type": 8,
                        "list": [
                            {
                                "title": "商品类型",
                                "val": "砍价列表",
                                "max": 20,
                                "pla": "选填,不超过四个字"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "activeValue": "",
                        "list": []
                    },
                    "numConfig": {
                        "val": 6
                    },
                    "goodsSort": {
                        "title": "商品排序",
                        "name": "goodsSort",
                        "type": 0,
                        "list": [
                            {
                                "val": "系统排序",
                                "icon": "iconComm_whole"
                            },
                            {
                                "val": "销量最高",
                                "icon": "iconComm_number"
                            },
                            {
                                "val": "最新上架",
                                "icon": "iconzuixin"
                            }
                        ]
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                }
            },
            "goodList": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "titleInfo": {
                        "title": "",
                        "list": [
                            {
                                "title": "标题",
                                "val": "快速选择",
                                "max": 4,
                                "pla": "选填,不超过4个字"
                            },
                            {
                                "title": "介绍",
                                "val": "诚意推荐品质商品",
                                "max": 8,
                                "pla": "选填,不超过8个字"
                            },
                            {
                                "title": "链接",
                                "val": "\/pages\/columnGoods\/HotNewGoods\/index?type=1",
                                "max": 999,
                                "pla": "选填"
                            }
                        ]
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "selectSortConfig": {
                        "title": "商品类型",
                        "activeValue": "",
                        "list": [
                            {
                                "activeValue": "0",
                                "title": "商品列表"
                            },
                            {
                                "activeValue": "4",
                                "title": "热门榜单"
                            },
                            {
                                "activeValue": "5",
                                "title": "首发新品"
                            },
                            {
                                "activeValue": "6",
                                "title": "促销单品"
                            },
                            {
                                "activeValue": "7",
                                "title": "精品推荐"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "activeValue": "",
                        "list": []
                    },
                    "numConfig": {
                        "val": 6
                    },
                    "goodsSort": {
                        "title": "商品排序",
                        "name": "goodsSort",
                        "type": 0,
                        "list": [
                            {
                                "val": "系统排序",
                                "icon": "iconComm_whole"
                            },
                            {
                                "val": "销量最高",
                                "icon": "iconComm_number"
                            },
                            {
                                "val": "最新上架",
                                "icon": "iconzuixin"
                            }
                        ]
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "titleInfo": {
                        "title": "",
                        "list": [
                            {
                                "title": "标题",
                                "val": "快速选择",
                                "max": 4,
                                "pla": "选填,不超过4个字"
                            },
                            {
                                "title": "介绍",
                                "val": "诚意推荐品质商品",
                                "max": 8,
                                "pla": "选填,不超过8个字"
                            },
                            {
                                "title": "链接",
                                "val": "\/pages\/columnGoods\/HotNewGoods\/index?type=1",
                                "max": 999,
                                "pla": "选填"
                            }
                        ]
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "selectSortConfig": {
                        "title": "商品类型",
                        "activeValue": "",
                        "list": [
                            {
                                "activeValue": "0",
                                "title": "商品列表"
                            },
                            {
                                "activeValue": "4",
                                "title": "热门榜单"
                            },
                            {
                                "activeValue": "5",
                                "title": "首发新品"
                            },
                            {
                                "activeValue": "6",
                                "title": "促销单品"
                            },
                            {
                                "activeValue": "7",
                                "title": "精品推荐"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "activeValue": "",
                        "list": []
                    },
                    "numConfig": {
                        "val": 6
                    },
                    "goodsSort": {
                        "title": "商品排序",
                        "name": "goodsSort",
                        "type": 0,
                        "list": [
                            {
                                "val": "系统排序",
                                "icon": "iconComm_whole"
                            },
                            {
                                "val": "销量最高",
                                "icon": "iconComm_number"
                            },
                            {
                                "val": "最新上架",
                                "icon": "iconzuixin"
                            }
                        ]
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                },
                "bb": {
                    "isShow": {
                        "val": true
                    },
                    "titleInfo": {
                        "title": "",
                        "list": [
                            {
                                "title": "标题",
                                "val": "排行榜",
                                "max": 4,
                                "pla": "选填,不超过4个字"
                            },
                            {
                                "title": "介绍",
                                "val": "诚意推荐品质商品",
                                "max": 8,
                                "pla": "选填,不超过8个字"
                            },
                            {
                                "title": "链接",
                                "val": "\/pages\/columnGoods\/HotNewGoods\/index?type=1",
                                "max": 999,
                                "pla": "选填"
                            }
                        ]
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "selectSortConfig": {
                        "title": "商品类型",
                        "activeValue": "7",
                        "list": [
                            {
                                "activeValue": "0",
                                "title": "商品列表"
                            },
                            {
                                "activeValue": "4",
                                "title": "热门榜单"
                            },
                            {
                                "activeValue": "5",
                                "title": "首发新品"
                            },
                            {
                                "activeValue": "6",
                                "title": "促销单品"
                            },
                            {
                                "activeValue": "7",
                                "title": "精品推荐"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "activeValue": "",
                        "list": []
                    },
                    "numConfig": {
                        "val": 6
                    },
                    "goodsSort": {
                        "title": "商品排序",
                        "name": "goodsSort",
                        "type": 0,
                        "list": [
                            {
                                "val": "系统排序",
                                "icon": "iconComm_whole"
                            },
                            {
                                "val": "销量最高",
                                "icon": "iconComm_number"
                            },
                            {
                                "val": "最新上架",
                                "icon": "iconzuixin"
                            }
                        ]
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                },
                "cc": {
                    "isShow": {
                        "val": true
                    },
                    "titleInfo": {
                        "title": "",
                        "list": [
                            {
                                "title": "标题",
                                "val": "首发新品",
                                "max": 4,
                                "pla": "选填,不超过4个字"
                            },
                            {
                                "title": "介绍",
                                "val": "新品推荐",
                                "max": 8,
                                "pla": "选填,不超过8个字"
                            },
                            {
                                "title": "链接",
                                "val": "\/pages\/columnGoods\/HotNewGoods\/index?type=1",
                                "max": 999,
                                "pla": "选填"
                            }
                        ]
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "selectSortConfig": {
                        "title": "商品类型",
                        "activeValue": "5",
                        "list": [
                            {
                                "activeValue": "0",
                                "title": "商品列表"
                            },
                            {
                                "activeValue": "4",
                                "title": "热门榜单"
                            },
                            {
                                "activeValue": "5",
                                "title": "首发新品"
                            },
                            {
                                "activeValue": "6",
                                "title": "促销单品"
                            },
                            {
                                "activeValue": "7",
                                "title": "精品推荐"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "activeValue": "",
                        "list": []
                    },
                    "numConfig": {
                        "val": 6
                    },
                    "goodsSort": {
                        "title": "商品排序",
                        "name": "goodsSort",
                        "type": 0,
                        "list": [
                            {
                                "val": "系统排序",
                                "icon": "iconComm_whole"
                            },
                            {
                                "val": "销量最高",
                                "icon": "iconComm_number"
                            },
                            {
                                "val": "最新上架",
                                "icon": "iconzuixin"
                            }
                        ]
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                },
                "dd": {
                    "isShow": {
                        "val": true
                    },
                    "titleInfo": {
                        "title": "",
                        "list": [
                            {
                                "title": "标题",
                                "val": "精选单品",
                                "max": 4,
                                "pla": "选填,不超过4个字"
                            },
                            {
                                "title": "介绍",
                                "val": "诚意推荐品质商品",
                                "max": 8,
                                "pla": "选填,不超过8个字"
                            },
                            {
                                "title": "链接",
                                "val": "\/pages\/columnGoods\/HotNewGoods\/index?type=1",
                                "max": 999,
                                "pla": "选填"
                            }
                        ]
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "selectSortConfig": {
                        "title": "商品类型",
                        "activeValue": "",
                        "list": [
                            {
                                "activeValue": "0",
                                "title": "商品列表"
                            },
                            {
                                "activeValue": "4",
                                "title": "热门榜单"
                            },
                            {
                                "activeValue": "5",
                                "title": "首发新品"
                            },
                            {
                                "activeValue": "6",
                                "title": "促销单品"
                            },
                            {
                                "activeValue": "7",
                                "title": "精品推荐"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "activeValue": "",
                        "list": []
                    },
                    "numConfig": {
                        "val": 6
                    },
                    "goodsSort": {
                        "title": "商品排序",
                        "name": "goodsSort",
                        "type": 0,
                        "list": [
                            {
                                "val": "系统排序",
                                "icon": "iconComm_whole"
                            },
                            {
                                "val": "销量最高",
                                "icon": "iconComm_number"
                            },
                            {
                                "val": "最新上架",
                                "icon": "iconzuixin"
                            }
                        ]
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                },
                "aa": {
                    "isShow": {
                        "val": true
                    },
                    "titleInfo": {
                        "title": "",
                        "list": [
                            {
                                "title": "标题",
                                "val": "促销精品",
                                "max": 4,
                                "pla": "选填,不超过4个字"
                            },
                            {
                                "title": "介绍",
                                "val": "诚意推荐品质商品",
                                "max": 8,
                                "pla": "选填,不超过8个字"
                            },
                            {
                                "title": "链接",
                                "val": "\/pages\/columnGoods\/HotNewGoods\/index?type=4&name=促销单品",
                                "max": 999,
                                "pla": "选填"
                            }
                        ]
                    },
                    "tabConfig": {
                        "tabVal": 0,
                        "type": 1,
                        "tabList": [
                            {
                                "name": "自动选择",
                                "icon": "iconzidongxuanze"
                            },
                            {
                                "name": "手动选择",
                                "icon": "iconshoudongxuanze"
                            }
                        ]
                    },
                    "selectSortConfig": {
                        "title": "商品类型",
                        "activeValue": "6",
                        "list": [
                            {
                                "activeValue": "0",
                                "title": "商品列表"
                            },
                            {
                                "activeValue": "4",
                                "title": "热门榜单"
                            },
                            {
                                "activeValue": "5",
                                "title": "首发新品"
                            },
                            {
                                "activeValue": "6",
                                "title": "促销单品"
                            },
                            {
                                "activeValue": "7",
                                "title": "精品推荐"
                            }
                        ]
                    },
                    "selectConfig": {
                        "title": "商品分类",
                        "activeValue": "",
                        "list": []
                    },
                    "numConfig": {
                        "val": 6
                    },
                    "goodsSort": {
                        "title": "商品排序",
                        "name": "goodsSort",
                        "type": 0,
                        "list": [
                            {
                                "val": "系统排序",
                                "icon": "iconComm_whole"
                            },
                            {
                                "val": "销量最高",
                                "icon": "iconComm_number"
                            },
                            {
                                "val": "最新上架",
                                "icon": "iconzuixin"
                            }
                        ]
                    },
                    "goodsList": {
                        "max": 20,
                        "list": []
                    }
                }
            },
            "picTxt": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "richText": {
                        "val": ""
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "richText": {
                        "val": ""
                    }
                }
            },
            "titles": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "titleInfo": {
                        "title": "",
                        "list": [
                            {
                                "title": "标题",
                                "val": "精品推荐",
                                "max": 20,
                                "pla": "选填,不超过四个字"
                            },
                            {
                                "title": "链接",
                                "val": "\/pages\/columnGoods\/HotNewGoods\/index?type=1",
                                "max": 999,
                                "pla": "选填"
                            }
                        ]
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "titleInfo": {
                        "title": "",
                        "list": [
                            {
                                "title": "标题",
                                "val": "精品推荐",
                                "max": 20,
                                "pla": "选填,不超过四个字"
                            },
                            {
                                "title": "链接",
                                "val": "\/pages\/columnGoods\/HotNewGoods\/index?type=1",
                                "max": 999,
                                "pla": "选填"
                            }
                        ]
                    }
                }
            },
            "customerService": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "imgUrl": {
                        "title": "最多可添加1张图片,图片建议宽度128 * 45px",
                        "url": ""
                    },
                    "routine_contact_type": "0"
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "imgUrl": {
                        "title": "最多可添加1张图片,图片建议宽度128 * 45px",
                        "url": ""
                    },
                    "routine_contact_type": "0"
                }
            },
            "tabBar": {
                "defaultVal": {
                    "isShow": {
                        "val": true
                    },
                    "tabBarList": {
                        "title": "图片建议宽度81*81px",
                        "list": [
                            {
                                "name": "首页",
                                "imgList": [],
                                "link": "\/pages\/index\/index"
                            },
                            {
                                "name": "分类",
                                "imgList": [],
                                "link": "\/pages\/goods_cate\/goods_cate"
                            },
                            {
                                "name": "购物车",
                                "imgList": [],
                                "link": "\/pages\/order_addcart\/order_addcart"
                            },
                            {
                                "name": "我的",
                                "imgList": [],
                                "link": "\/pages\/user\/index"
                            }
                        ]
                    }
                },
                "default": {
                    "isShow": {
                        "val": true
                    },
                    "tabBarList": {
                        "title": "图片建议宽度81*81px",
                        "list": [
                            {
                                "name": "首页",
                                "imgList": [
                                    "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/20b0f77e089d89dd0234bd2c1c42167b.png",
                                    "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/80b37f55136d1ddb5c00cd46a8bbeea0.png"
                                ],
                                "link": "\/pages\/index\/index"
                            },
                            {
                                "name": "分类",
                                "imgList": [
                                    "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/ff4fb519a5f3abd5981399a3b9671555.png",
                                    "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/8b05f6a6e72f9345c2e27e7ca2599389.png"
                                ],
                                "link": "\/pages\/goods_cate\/goods_cate"
                            },
                            {
                                "name": "购物车",
                                "imgList": [
                                    "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/cb71cf5eda692c3c4da155aad9fbeffc.png",
                                    "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/60aa9dce2e8b69f0a04dd69fb113ccee.png"
                                ],
                                "link": "\/pages\/order_addcart\/order_addcart"
                            },
                            {
                                "name": "我的",
                                "imgList": [
                                    "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/a7500e6af994f311364d3a9f93506669.png",
                                    "http:\/\/xxx.xxx.xxx.xxx\/uploads\/attach\/2022\/11\/20221123\/3805070fdfcd184cc49911a545763a88.png"
                                ],
                                "link": "\/pages\/user\/index"
                            }
                        ]
                    }
                }
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366
    • 367
    • 368
    • 369
    • 370
    • 371
    • 372
    • 373
    • 374
    • 375
    • 376
    • 377
    • 378
    • 379
    • 380
    • 381
    • 382
    • 383
    • 384
    • 385
    • 386
    • 387
    • 388
    • 389
    • 390
    • 391
    • 392
    • 393
    • 394
    • 395
    • 396
    • 397
    • 398
    • 399
    • 400
    • 401
    • 402
    • 403
    • 404
    • 405
    • 406
    • 407
    • 408
    • 409
    • 410
    • 411
    • 412
    • 413
    • 414
    • 415
    • 416
    • 417
    • 418
    • 419
    • 420
    • 421
    • 422
    • 423
    • 424
    • 425
    • 426
    • 427
    • 428
    • 429
    • 430
    • 431
    • 432
    • 433
    • 434
    • 435
    • 436
    • 437
    • 438
    • 439
    • 440
    • 441
    • 442
    • 443
    • 444
    • 445
    • 446
    • 447
    • 448
    • 449
    • 450
    • 451
    • 452
    • 453
    • 454
    • 455
    • 456
    • 457
    • 458
    • 459
    • 460
    • 461
    • 462
    • 463
    • 464
    • 465
    • 466
    • 467
    • 468
    • 469
    • 470
    • 471
    • 472
    • 473
    • 474
    • 475
    • 476
    • 477
    • 478
    • 479
    • 480
    • 481
    • 482
    • 483
    • 484
    • 485
    • 486
    • 487
    • 488
    • 489
    • 490
    • 491
    • 492
    • 493
    • 494
    • 495
    • 496
    • 497
    • 498
    • 499
    • 500
    • 501
    • 502
    • 503
    • 504
    • 505
    • 506
    • 507
    • 508
    • 509
    • 510
    • 511
    • 512
    • 513
    • 514
    • 515
    • 516
    • 517
    • 518
    • 519
    • 520
    • 521
    • 522
    • 523
    • 524
    • 525
    • 526
    • 527
    • 528
    • 529
    • 530
    • 531
    • 532
    • 533
    • 534
    • 535
    • 536
    • 537
    • 538
    • 539
    • 540
    • 541
    • 542
    • 543
    • 544
    • 545
    • 546
    • 547
    • 548
    • 549
    • 550
    • 551
    • 552
    • 553
    • 554
    • 555
    • 556
    • 557
    • 558
    • 559
    • 560
    • 561
    • 562
    • 563
    • 564
    • 565
    • 566
    • 567
    • 568
    • 569
    • 570
    • 571
    • 572
    • 573
    • 574
    • 575
    • 576
    • 577
    • 578
    • 579
    • 580
    • 581
    • 582
    • 583
    • 584
    • 585
    • 586
    • 587
    • 588
    • 589
    • 590
    • 591
    • 592
    • 593
    • 594
    • 595
    • 596
    • 597
    • 598
    • 599
    • 600
    • 601
    • 602
    • 603
    • 604
    • 605
    • 606
    • 607
    • 608
    • 609
    • 610
    • 611
    • 612
    • 613
    • 614
    • 615
    • 616
    • 617
    • 618
    • 619
    • 620
    • 621
    • 622
    • 623
    • 624
    • 625
    • 626
    • 627
    • 628
    • 629
    • 630
    • 631
    • 632
    • 633
    • 634
    • 635
    • 636
    • 637
    • 638
    • 639
    • 640
    • 641
    • 642
    • 643
    • 644
    • 645
    • 646
    • 647
    • 648
    • 649
    • 650
    • 651
    • 652
    • 653
    • 654
    • 655
    • 656
    • 657
    • 658
    • 659
    • 660
    • 661
    • 662
    • 663
    • 664
    • 665
    • 666
    • 667
    • 668
    • 669
    • 670
    • 671
    • 672
    • 673
    • 674
    • 675
    • 676
    • 677
    • 678
    • 679
    • 680
    • 681
    • 682
    • 683
    • 684
    • 685
    • 686
    • 687
    • 688
    • 689
    • 690
    • 691
    • 692
    • 693
    • 694
    • 695
    • 696
    • 697
    • 698
    • 699
    • 700
    • 701
    • 702
    • 703
    • 704
    • 705
    • 706
    • 707
    • 708
    • 709
    • 710
    • 711
    • 712
    • 713
    • 714
    • 715
    • 716
    • 717
    • 718
    • 719
    • 720
    • 721
    • 722
    • 723
    • 724
    • 725
    • 726
    • 727
    • 728
    • 729
    • 730
    • 731
    • 732
    • 733
    • 734
    • 735
    • 736
    • 737
    • 738
    • 739
    • 740
    • 741
    • 742
    • 743
    • 744
    • 745
    • 746
    • 747
    • 748
    • 749
    • 750
    • 751
    • 752
    • 753
    • 754
    • 755
    • 756
    • 757
    • 758
    • 759
    • 760
    • 761
    • 762
    • 763
    • 764
    • 765
    • 766
    • 767
    • 768
    • 769
    • 770
    • 771
    • 772
    • 773
    • 774
    • 775
    • 776
    • 777
    • 778
    • 779
    • 780
    • 781
    • 782
    • 783
    • 784
    • 785
    • 786
    • 787
    • 788
    • 789
    • 790
    • 791
    • 792
    • 793
    • 794
    • 795
    • 796
    • 797
    • 798
    • 799
    • 800
    • 801
    • 802
    • 803
    • 804
    • 805
    • 806
    • 807
    • 808
    • 809
    • 810
    • 811
    • 812
    • 813
    • 814
    • 815
    • 816
    • 817
    • 818
    • 819
    • 820
    • 821
    • 822
    • 823
    • 824
    • 825
    • 826
    • 827
    • 828
    • 829
    • 830
    • 831
    • 832
    • 833
    • 834
    • 835
    • 836
    • 837
    • 838
    • 839
    • 840
    • 841
    • 842
    • 843
    • 844
    • 845
    • 846
    • 847
    • 848
    • 849
    • 850
    • 851
    • 852
    • 853
    • 854
    • 855
    • 856
    • 857
    • 858
    • 859
    • 860
    • 861
    • 862
    • 863
    • 864
    • 865
    • 866
    • 867
    • 868
    • 869
    • 870
    • 871
    • 872
    • 873
    • 874
    • 875
    • 876
    • 877
    • 878
    • 879
    • 880
    • 881
    • 882
    • 883
    • 884
    • 885
    • 886
    • 887
    • 888
    • 889
    • 890
    • 891
    • 892
    • 893
    • 894
    • 895
    • 896
    • 897
    • 898
    • 899
    • 900
    • 901
    • 902
    • 903
    • 904
    • 905
    • 906
    • 907
    • 908
    • 909
    • 910
    • 911
    • 912
    • 913
    • 914
    • 915
    • 916
    • 917
    • 918
    • 919
    • 920
    • 921
    • 922
    • 923
    • 924
    • 925
    • 926
    • 927
    • 928
    • 929
    • 930
    • 931
    • 932
    • 933
    • 934
    • 935
    • 936
    • 937
    • 938
    • 939
    • 940
    • 941
    • 942
    • 943
    • 944
    • 945
    • 946
    • 947
    • 948
    • 949
    • 950
    • 951
    • 952
    • 953
    • 954
    • 955
    • 956
    • 957
    • 958
    • 959
    • 960
    • 961
    • 962
    • 963
    • 964
    • 965
    • 966
    • 967
    • 968
    • 969
    • 970
    • 971
    • 972
    • 973
    • 974
    • 975
    • 976
    • 977
    • 978
    • 979
    • 980
    • 981
    • 982
    • 983
    • 984
    • 985
    • 986
    • 987
    • 988
    • 989
    • 990
    • 991
    • 992
    • 993
    • 994
    • 995
    • 996
    • 997
    • 998
    • 999
    • 1000
    • 1001
    • 1002
    • 1003
    • 1004
    • 1005
    • 1006
    • 1007
    • 1008
    • 1009
    • 1010
    • 1011
    • 1012
    • 1013
    • 1014
    • 1015
    • 1016
    • 1017
    • 1018
    • 1019
    • 1020
    • 1021
    • 1022
    • 1023
    • 1024
    • 1025
    • 1026
    • 1027
    • 1028
    • 1029
    • 1030
    • 1031
    • 1032
    • 1033
    • 1034
    • 1035
    • 1036
    • 1037
    • 1038
    • 1039
    • 1040
    • 1041
    • 1042
    • 1043
    • 1044
    • 1045
    • 1046
    • 1047
    • 1048
    • 1049
    • 1050
    • 1051
    • 1052
    • 1053
    • 1054
    • 1055
    • 1056
    • 1057
    • 1058
    • 1059
    • 1060
    • 1061
    • 1062
    • 1063
    • 1064
    • 1065
    • 1066
    • 1067
    • 1068
    • 1069
    • 1070
    • 1071
    • 1072
    • 1073
    • 1074
    • 1075
    • 1076
    • 1077
    • 1078
    • 1079
    • 1080
    • 1081
    • 1082
    • 1083
    • 1084
    • 1085
    • 1086
    • 1087
    • 1088
    • 1089
    • 1090
    • 1091
    • 1092
    • 1093
    • 1094
    • 1095
    • 1096
    • 1097
    • 1098
    • 1099
    • 1100
    • 1101
    • 1102
    • 1103
    • 1104
    • 1105
    • 1106
    • 1107
    • 1108
    • 1109
    • 1110
    • 1111
    • 1112
    • 1113
    • 1114
    • 1115
    • 1116
    • 1117
    • 1118
    • 1119
    • 1120
    • 1121
    • 1122
    • 1123
    • 1124
    • 1125
    • 1126
    • 1127
    • 1128
    • 1129
    • 1130
    • 1131
    • 1132
    • 1133
    • 1134
    • 1135
    • 1136
    • 1137
    • 1138
    • 1139
    • 1140
    • 1141
    • 1142
    • 1143
    • 1144
    • 1145
    • 1146
    • 1147
    • 1148
    • 1149
    • 1150
    • 1151
    • 1152
    • 1153
    • 1154
    • 1155
    • 1156
    • 1157
    • 1158
    • 1159
    • 1160
    • 1161
    • 1162
    • 1163
    • 1164
    • 1165
    • 1166
    • 1167
    • 1168
    • 1169
    • 1170
    • 1171
    • 1172
    • 1173
    • 1174
    • 1175
    • 1176
    • 1177
    • 1178
    • 1179
    • 1180
    • 1181
    • 1182
    • 1183
    • 1184
    • 1185
    • 1186
    • 1187
    • 1188
    • 1189
    • 1190
    • 1191
    • 1192
    • 1193
    • 1194
    • 1195
    • 1196
    • 1197
    • 1198
    • 1199
    • 1200
    • 1201
    • 1202
    • 1203
    • 1204
    • 1205
    • 1206
    • 1207
    • 1208
    • 1209
    • 1210
    • 1211
    • 1212
    • 1213
    • 1214
    • 1215
    • 1216
    • 1217
    • 1218
    • 1219
    • 1220
    • 1221
    • 1222
    • 1223
    • 1224
    • 1225
    • 1226
    • 1227
    • 1228
    • 1229
    • 1230
    • 1231
    • 1232
    • 1233
    • 1234
    • 1235
    • 1236
    • 1237
    • 1238
    • 1239
    • 1240
    • 1241
    • 1242
    • 1243
    • 1244
    • 1245
    • 1246
    • 1247
    • 1248
    • 1249
    • 1250
    • 1251
    • 1252
    • 1253
    • 1254
    • 1255
    • 1256
    • 1257
    • 1258
    • 1259
    • 1260
    • 1261
    • 1262
    • 1263
    • 1264
    • 1265
    • 1266
    • 1267
    • 1268
    • 1269
    • 1270
    • 1271
    • 1272
    • 1273
    • 1274
    • 1275
    • 1276
    • 1277
    • 1278
    • 1279
    • 1280
    • 1281
    • 1282
    • 1283
    • 1284
    • 1285
    • 1286
    • 1287
    • 1288
    • 1289
    • 1290
    • 1291
    • 1292
    • 1293
    • 1294
    • 1295
    • 1296
    • 1297
    • 1298
    • 1299
    • 1300
    • 1301
    • 1302
    • 1303
    • 1304
    • 1305
    • 1306
    • 1307
    • 1308
    • 1309
    • 1310
    • 1311
    • 1312
    • 1313
    • 1314
    • 1315
    • 1316
    • 1317
    • 1318
    • 1319
    • 1320
    • 1321
    • 1322
    • 1323
    • 1324
    • 1325
    • 1326
    • 1327
    • 1328
    • 1329
    • 1330
    • 1331
    • 1332
    • 1333
    • 1334
    • 1335
    • 1336
    • 1337
    • 1338
    • 1339
    • 1340
    • 1341
    • 1342
    • 1343
    • 1344
    • 1345
    • 1346
    • 1347
    • 1348
    • 1349
    • 1350
    • 1351
    • 1352
    • 1353
    • 1354
    • 1355
    • 1356
    • 1357
    • 1358
    • 1359
    • 1360
    • 1361
    • 1362
    • 1363
    • 1364
    • 1365
    • 1366
    • 1367
    • 1368
    • 1369
    • 1370
    • 1371
    • 1372
    • 1373
    • 1374
    • 1375
    • 1376
    • 1377
    • 1378
    • 1379
    • 1380
    • 1381
    • 1382
    • 1383
    • 1384
    • 1385
    • 1386
    • 1387
    • 1388
    • 1389
    • 1390
    • 1391
    • 1392
    • 1393
    • 1394
    • 1395
    • 1396
    • 1397
    • 1398
    • 1399
    • 1400
    • 1401
    • 1402
    • 1403
    • 1404
    • 1405
    • 1406
    • 1407
    • 1408
    • 1409
    • 1410
    • 1411
    • 1412
    • 1413
    • 1414
    • 1415
    • 1416
    • 1417
    • 1418
    • 1419
    • 1420
    • 1421
    • 1422
    • 1423
    • 1424
    • 1425
    • 1426
    • 1427
    • 1428
    • 1429
    • 1430
    • 1431
    • 1432
    • 1433
    • 1434
    • 1435
    • 1436
    • 1437
    • 1438
    • 1439
    • 1440
    • 1441
    • 1442
    • 1443
    • 1444
    • 1445
    • 1446
    • 1447
    • 1448
    • 1449
    • 1450
    • 1451
    • 1452
    • 1453
    • 1454
    • 1455
    • 1456
    • 1457
    • 1458
    • 1459
    • 1460
    • 1461
    • 1462
    • 1463
    • 1464
    • 1465
    • 1466
    • 1467
    • 1468
    • 1469
    • 1470
    • 1471
    • 1472
    • 1473
    • 1474
    • 1475
    • 1476
    • 1477
    • 1478
    • 1479
    • 1480
    • 1481
    • 1482
    • 1483
    • 1484
    • 1485
    • 1486
    • 1487
    • 1488
    • 1489
    • 1490
    • 1491
    • 1492
    • 1493
    • 1494
    • 1495
    • 1496
    • 1497
    • 1498
    • 1499
    • 1500
    • 1501
    • 1502
    • 1503
    • 1504
    • 1505
    • 1506
    • 1507
    • 1508
    • 1509
    • 1510
    • 1511
    • 1512
    • 1513
    • 1514
    • 1515
    • 1516
    • 1517
    • 1518
    • 1519
    • 1520
    • 1521
    • 1522
    • 1523
    • 1524
    • 1525
    • 1526
    • 1527
    • 1528
    • 1529
    • 1530
    • 1531
    • 1532
    • 1533
    • 1534
    • 1535
    • 1536
    • 1537
    • 1538
    • 1539
    • 1540
    • 1541
    • 1542
    • 1543
    • 1544
    • 1545
    • 1546
    • 1547
    • 1548
    • 1549
    • 1550
    • 1551
    • 1552
    • 1553
    • 1554
    • 1555
    • 1556
    • 1557
    • 1558
    • 1559
    • 1560
    • 1561
    • 1562
    • 1563
    • 1564
    • 1565
    • 1566
    • 1567
    • 1568
    • 1569
    • 1570
    • 1571
    • 1572
    • 1573
    • 1574
    • 1575
    • 1576
    • 1577
    • 1578
    • 1579
    • 1580
    • 1581
    • 1582
    • 1583
    • 1584
    • 1585
    • 1586
    • 1587
    • 1588
    • 1589
    • 1590
    • 1591
    • 1592
    • 1593
    • 1594
    • 1595
    • 1596
    • 1597
    • 1598
    • 1599
    • 1600
    • 1601
    • 1602
    • 1603
    • 1604
    • 1605
    • 1606
    • 1607
    • 1608
    • 1609
    • 1610
    • 1611
    • 1612
    • 1613
    • 1614
    • 1615
    • 1616
    • 1617
    • 1618
    • 1619
    • 1620
    • 1621
    • 1622
    • 1623
    • 1624
    • 1625
    • 1626
    • 1627
    • 1628
    • 1629
    • 1630
    • 1631
    • 1632
    • 1633
    • 1634
    • 1635
    • 1636
    • 1637
    • 1638
    • 1639
    • 1640
    • 1641
    • 1642
    • 1643
    • 1644
    • 1645
    • 1646
    • 1647
    • 1648
    • 1649
    • 1650
    • 1651
    • 1652
    • 1653
    • 1654
    • 1655
    • 1656
    • 1657
    • 1658
    • 1659
    • 1660
    • 1661
    • 1662
    • 1663
    • 1664
    • 1665
    • 1666
    • 1667
    • 1668
    • 1669
    • 1670
    • 1671
    • 1672
    • 1673
    • 1674
    • 1675
    • 1676
    • 1677
    • 1678
    • 1679
    • 1680
    • 1681
    • 1682
    • 1683
    • 1684
    • 1685
    • 1686
    • 1687
    • 1688
    • 1689
    • 1690
    • 1691
    • 1692
    • 1693
    • 1694
    • 1695
    • 1696
    • 1697
    • 1698
    • 1699
    • 1700
    • 1701
    • 1702
    • 1703
    • 1704
    • 1705
    • 1706
    • 1707
    • 1708
    • 1709
    • 1710
    • 1711
    • 1712
    • 1713
    • 1714
    • 1715
    • 1716
    • 1717
    • 1718
    • 1719
    • 1720
    • 1721
    • 1722
    • 1723
    • 1724
    • 1725
    • 1726
    • 1727
    • 1728
    • 1729
    • 1730
    • 1731
    • 1732
    • 1733
    • 1734
    • 1735
    • 1736
    • 1737
    • 1738
    • 1739
    • 1740
    • 1741
    • 1742
    • 1743
    • 1744
    • 1745
    • 1746
    • 1747
    • 1748
    • 1749
    • 1750
    • 1751
    • 1752
    • 1753
    • 1754
    • 1755
    • 1756
    • 1757
    • 1758
    • 1759
    • 1760
    • 1761
    • 1762
    • 1763
    • 1764
    • 1765
    • 1766
    • 1767
    • 1768
    • 1769
    • 1770
    • 1771
    • 1772
    • 1773
    • 1774
    • 1775
    • 1776
    • 1777
    • 1778
    • 1779
    • 1780
    • 1781
    • 1782
    • 1783
    • 1784
    • 1785
    • 1786
    • 1787
    • 1788
    • 1789
    • 1790
    • 1791
    • 1792
    • 1793
    • 1794
    • 1795
    • 1796
    • 1797
    • 1798
    • 1799
    • 1800
    • 1801
    • 1802
    • 1803
    • 1804
    • 1805
    • 1806
    • 1807
    • 1808
    • 1809
    • 1810
    • 1811
    • 1812
    • 1813
    • 1814
    • 1815
    • 1816
    • 1817
    • 1818
    • 1819
    • 1820
    • 1821
    • 1822
    • 1823
    • 1824
    • 1825
    • 1826
    • 1827
    • 1828
    • 1829
    • 1830
    • 1831
    • 1832
    • 1833
    • 1834
    • 1835
    • 1836
    • 1837
    • 1838
    • 1839
    • 1840
    • 1841
    • 1842
    • 1843
    • 1844
    • 1845
    • 1846
    • 1847
    • 1848
    • 1849
    • 1850
    • 1851
    • 1852
    • 1853
    • 1854
    • 1855
    • 1856
    • 1857
    • 1858
    • 1859
    • 1860
    • 1861
    • 1862
    • 1863
    • 1864
    • 1865
    • 1866
    • 1867
    • 1868
    • 1869
    • 1870
    • 1871
    • 1872
    • 1873
    • 1874
    • 1875
    • 1876
    • 1877
    • 1878
    • 1879
    • 1880
    • 1881
    • 1882
    • 1883
    • 1884
    • 1885
    • 1886
    • 1887
    • 1888
    • 1889
    • 1890
    • 1891
    • 1892
    • 1893
    • 1894
    • 1895
    • 1896
    • 1897
    • 1898
    • 1899
    • 1900
    • 1901
    • 1902
    • 1903
    • 1904
    • 1905
    • 1906
    • 1907
    • 1908
    • 1909
    • 1910
    • 1911
    • 1912
    • 1913
    • 1914
    • 1915
    • 1916
    • 1917
    • 1918
    • 1919
    • 1920
    • 1921
    • 1922
    • 1923
    • 1924
    • 1925
    • 1926
    • 1927
    • 1928
    • 1929
    • 1930
    • 1931
    • 1932
    • 1933
    • 1934
    • 1935
    • 1936
    • 1937
    • 1938
    • 1939
    • 1940
    • 1941
    • 1942
    • 1943
    • 1944
    • 1945
    • 1946
    • 1947
    • 1948
    • 1949
    • 1950
    • 1951
    • 1952
    • 1953
    • 1954
    • 1955
    • 1956
    • 1957
    • 1958
    • 1959
    • 1960
    • 1961
    • 1962
    • 1963
    • 1964
    • 1965
    • 1966
    • 1967
    • 1968
    • 1969
    • 1970
    • 1971
    • 1972
    • 1973
    • 1974
    • 1975
    • 1976
    • 1977
    • 1978
    • 1979
    • 1980
    • 1981
    • 1982
    • 1983
    • 1984
    • 1985
    • 1986
    • 1987
    • 1988
    • 1989
    • 1990
    • 1991
    • 1992
    • 1993
    • 1994
    • 1995
    • 1996
    • 1997
    • 1998
    • 1999
    • 2000
    • 2001
    • 2002
    • 2003
    • 2004
    • 2005
    • 2006
    • 2007
    • 2008
    • 2009

    修改头部图片-如何用word制作透明背景的文字或图片或二维码-百度经验

    https://jingyan.baidu.com/article/fc07f989be7fc612ffe519d5.html
    把定制透明背景文字图片放在public目录下,在eb_diy中
    https:\/\/data44.wuht.net\/\/uploads\/attach\/2022\/01\/20220115\/28a88411581c15dbc65fa4fa8e0d0c17.png 改为 /5.png 就可以修改头部图片。

    转换unicode

    在notepad++把\\u 替换为;&#x
    最多可添񒨁张图片,图片建议宽�
    拷贝到
    http://www.metools.info/code/c40.html 可以实现 utf-8转中文
    优质精选好物
    优质精选好物
    \u4f18\u8d28\u7cbe\u9009\u597d\u7269
    在eb_diy中修改文字utf编码应该可以修改页面对应的文字

    str = '\u897f'
    print(str)
    print str.decode("unicode-escape")
    
    • 1
    • 2
    • 3

    favicon.ico

    修改public/admin/favicon.ico可以改变后台的图标。
    修改public/favicon.ico可以改变网页或者H5的图标。

    public/static/html/pc.html 可以修改标题

    crmeb-PC端
    
    • 1

    CRMEB\template\uni-app\api\api.js
    CRMEB\template\uni-app\pages\index\visualization\components\headerSerch.vue

    			{{titleInfo.length ? titleInfo[0].val : ''}}
    
    			
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    		props: {
    			dataConfig: {
    				type: Object,
    				default: () => {}
    			}
    		},
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    		watch: {
    			dataConfig: {
    				immediate: true,
    				handler(nVal, oVal) {
    					if (nVal) {
    						this.logoConfig = nVal ? nVal.imgUrl.url : '';
    						this.hotWords = nVal.hotList.list || []
    						this.isShow = nVal.isShow.val
    						this.titleInfo = nVal.titleInfo && nVal.titleInfo.list.length ? nVal.titleInfo.list : [];
    						uni.setStorageSync('hotList', this.hotWords || []);
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    CRMEB\template\uni-app\pages\index\visualization\index.vue

    			diyData() {
    				let that = this;
    				getDiy().then((res) => {
    					let data = res.data;
    					that.headerSerch = data.headerSerch;
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    	import {
    		getDiy,
    		getIndexData,
    		getCouponV2,
    		getCouponNewUser,
    	} from "@/api/api.js";
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    template\uni-app\pages\index\visualization\index.vue

    				headerSerch: {}, //头部搜索
    				swiperBg: {}, //轮播
    				menus: {}, //导航
    				news: {}, //消息公告
    				activity: {}, //活动魔方
    				alive: {},
    				scrollBox: {}, //快速选择分类
    				titles: {}, //标题
    				goodList: {}, //商品列表(商品列表、首发新品、热门榜单、促销单品、精品推荐)
    				tabBar: {}, //导航
    				customerService: {}, //客服
    				picTxt: {}, //图文详情
    				bargain: {}, //砍价
    				combination: {}, //拼团
    				adsRecommend: {}, //广告位
    				seckill: {}, //秒杀
    				coupon: {}, //优惠券
    				tabNav: {}, //分类tab
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    轮播图片,在eb_diy中修改配置应该可以修改。
    ttps://data44.wuht.net//uploads/attach/2022/01/20220115/84578abf1060697da0529a5ccc50934c.png

    ttps://data44.wuht.net//uploads/attach/2022/01/20220115/d54f87813d22fc2ce2e6e231f3bcfae7.png

    app如何打开了request url_uni-app封装一个request请求_慢火车阅读的博客-CSDN博客
    htps://blog.csdn.net/weixin_29868343/article/details/112101089

    三、搭建本地开源版的开发、测试环境

    CRMEB v4window+phpstudy8安装 - CRMEB文档

    htps://doc.crmeb.com/single/crmeb_v4/920

    请问怎么搭建本地开源版的开发、测试环境
    htps://www.crmeb.com/ask/thread/13276

    在这里插入图片描述
    template\uni-app\config\app.js

    	// H5配置
    	// #ifdef H5
    	//H5接口是浏览器地址,非单独部署不用修改
    	HTTP_REQUEST_URL: window.location.protocol + "//" + window.location.host,
    	// #endif
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    template\uni-app\utils\request.js

    
    ['options', 'get', 'post', 'put', 'head', 'delete', 'trace', 'connect'].forEach((method) => {
    	request[method] = (api, data, opt) => baseRequest(api, method, data, opt || {})
    });
    
    
    • 1
    • 2
    • 3
    • 4
    • 5

    CRMEB4.x版和pro版客服配置详解 - Losky的个人空间 - OSCHINA - 中文开源技术交流社区
    htps://my.oschina.net/u/4300010/blog/4967097

    修改 /config/app.js

    HTTP_REQUEST_URL: ‘https://xxx.com’,// 请求域名 格式: https:// 您的域名

    VUE_APP_WS_URL: wss://xxx.com:20003,// 客服域名 格式: ws:// 您的域名:20003

    template\uni-app\App.vue

    
    			// #ifdef H5
    			uni.getSystemInfo({
    				success(e) {
    					/* 窗口宽度大于420px且不在PC页面且不在移动设备时跳转至 PC.html 页面 */
    					if (e.windowWidth > 420 && !window.top.isPC && !/iOS|Android/i.test(e.system)) {
    						window.location.pathname = '/static/html/pc.html';
    					}
    				}
    			});
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    template\uni-app\static\html\pc.html
    当devtools切换设备为手机时,页面调转到htp://localhost:8080/pages/index/index

    		<script type="text/javascript">
    			window.isPC = true;
    			
    			window.onload = function(){
    				/* 监听电脑浏览器窗口尺寸改变 */
    				window.onresize = function(){
    					/* 窗口宽度 小于或等于420px 时,跳转回H5页面 */
    					if(window.innerWidth <= 420){
    						window.location.pathname = '/';
    					}
    				}
    			}
    		</script>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    可以查看报文请求和回复等流程,并与线上的报文比较。

    在这里插入图片描述

    修改iview-admin,启动的端口号

    template\admin\package.json

      "scripts": {
        "serve": "vue-cli-service serve --open --mode=dev",
        "build": "vue-cli-service build --mode=production"
      },
    
    
    • 1
    • 2
    • 3
    • 4
    • 5

    serve里面增加“ --port=8888”,改为

      "scripts": {
        "serve": "vue-cli-service serve --open --mode=dev --port=8888",
        "build": "vue-cli-service build --mode=production"
      },
    
    
    • 1
    • 2
    • 3
    • 4
    • 5

    然后 npm run serve

  • 相关阅读:
    springboot 如何编写增删改查后端接口,小白极速入门,附完整代码
    WorkPlus Meet白板和文档共享功能上线,私有化视频会议全新升级
    As Const:一个被低估的 TypeScript 特性
    输入url,敲回车到页面展示经历了什么?
    Windows环境下Qt Creator控制台输出中文乱码解决方法
    奇怪的需求之与图片做交互
    十六、垃圾回收相关概念
    Pod详解
    【2021研电赛】基于深度学习的蛋白质与化合物结合性质预测
    通过Lambda函数的方式获取属性名称
  • 原文地址:https://blog.csdn.net/llrraa2010/article/details/126328904