荷塘月色_淘宝抖音跨境电商卖家论坛社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问移动社区

查看: 5083|回复: 12
打印 上一主题 下一主题

【揭秘】京东违禁词上架技术为什么别人能上的标题你上不去

  [复制链接]
京东标题技术 V:ads1994y Q:485591720
跳转到指定楼层
1#

将检测标题入口开始转化为关闭

//敏感词入口关闭需求
            initTitle: function() {
                if($("#info-attr").closest(".J-con").find(".J-drag").find('.J-model-name')[0].innerText=="商品属性"){//商品属性
                   /* if(!globalAttr.isMedicine){
                        $("#info-attr").closest(".J-con").find(".J-drag").append('<p class="title-right">' +
                                this.$t('user.widget_ware_attr.attrNotBusinessNeed')+
                                '<a href="/rest/shop/wareAttriBackRest/toAttriPage/' + globalAttr.categoryId1 + '/' + globalAttr.categoryId2 + '/' + globalAttr.categoryId3 +
                                '" target="_blank">'+this.$t('user.widget_ware_attr.clickFeedback')+'</a>' +
                                '</p>');
                    };*/
                    $("#info-attr").closest(".J-con").find(".J-drag").append('<div style="float: right;margin-right: 222px"" class="tipEffect3" clstag="pageclick|keycount|newWare|43"><img src="/common/images/effect.png"/ class="eye"><span class="effect">'+this.$t('user.widget_ware_attr.showResults')+'</span></div>')
                }
            },
            showImg: function(src){
                this.tipImg = src;
            },
            loadCategoryAttrList: function () {
                var _this = this;
                shopLayer.lockWindow();
                var subData="";
                if(this.lastCategoryId){
                    subData=this.lastCategoryId;
                }else{
                    subData=this.catId;
                }
                PublishApi.loadCategoryAttrList(subData, function (res) {
                    shopLayer.unlockWindow();
                    if (res.status == 200) {
                        res.data.forEach(function (group) {
                            group.catAttrList.forEach(function (attr) {
                                if(attr.inputType==2&&attr.attrValueList.length>5){
                                    attr.attrValueList.forEach(function(item){
                                        item.actions = false;
                                    })
                                }
                                attr["choseName"]=false;
                                attr["tipwarn"]="";
                                attr["choseNum"]=[];
                                //添加空数组存
                                if(attr.inputType==2){
                                    attr.checkedName=[];
                                    attr.checked=false;
                                }
                            });
                        })
                        var categoryGroupList = res.data;
                        categoryGroupList.forEach(function (group) {
                            var titShow = false;
                            group.catAttrList.forEach(function (attr) {
                                attr.val = []; // 默认值
                                // 构造验证规则
                                attr.rule = [{
                                    required: attr.required,
                                    message: _this.$t('user.widget_ware_attr.enterTheValue')
                                }];

                                if(attr.featureMap && attr.featureMap.attrLevel === '1'){
                                    attr.show = false;
                                }else{
                                    attr.show = true;
                                    titShow = true;
                                }

                                // 回显取值字段
                                _this.attrType[attr.categoryAttributeId] = 0;
                                if(attr.inputType == 1 || attr.inputType == 2){
                                    _this.attrType[attr.categoryAttributeId] = 1;
                                }

                                attr.errMsg = "";

                                if(!attr.features){
                                    return;
                                }

                                if(attr.features.indexOf("xznum")>-1){
                                    attr.rule.push({
                                        pattern: /(^[1-9](\d+)?(\.\d{1,2})?$)|(^0\.[1-9])|(^0\.\d[1-9])/,
                                        max: parseInt(attr.featureMap.xznum),
                                        message: _this.$t('user.widget_ware_attr.onlyNum')+ attr.featureMap.xznum
                                    });
                                } else if(attr.features.indexOf("xzns")>-1){
                                    attr.rule.push({
                                        pattern: /^[A-Za-z0-9]*$/,
                                        max: parseInt(attr.featureMap.xzns),
                                        message: _this.$t('user.widget_ware_attr.onlyCharactersAndNumbers')+ attr.featureMap.xzns
                                    });
                                } else if(attr.features.indexOf("xzchi")>-1){
                                    attr.rule.push({
                                        pattern: /^[\u4e00-\u9fa5]*$/,
                                        max: parseInt(attr.featureMap.xzchi),
                                        message: _this.$t('user.widget_ware_attr.onlyChinese')+ attr.featureMap.xzchi
                                    });
                                } else if(attr.features.indexOf("xzstr")>-1){
                                    attr.rule.push({
                                        max: parseInt(attr.featureMap.xzstr),
                                        message: _this.$t('user.widget_ware_attr.overLength') + attr.featureMap.xzstr
                                    });
                                }
                            });
                            group.titShow = titShow;
                        });



//构造响应函数

(function () {

        // 获取 wangEditor 构造函数和 jquery
        var E = window.wangEditor;
        var jQuery = window.jQuery;
        //wangEditor编辑器实现多语言
        if (i18nUtil.getCurrentLocale()&&E.langs[i18nUtil.getCurrentLocale()]) {
            E.config.lang = E.langs[i18nUtil.getCurrentLocale()];
        }
        // 用 createMenu 方法创建菜单
        E.createMenu(function (check) {

            // 定义菜单id,不要和其他菜单id重复。编辑器自带的所有菜单id,可通过『参数配置-自定义菜单』一节查看
            var menuId = 'hanyi';

            // check将检查菜单配置(『参数配置-自定义菜单』一节描述)中是否该菜单id,如果没有,则忽略下面的代码。
            if (!check(menuId)) {
                return;
            }

            // this 指向 editor 对象自身
            var editor = this;

            // 创建 menu 对象
            var menu = new E.Menu({
                editor: editor,  // 编辑器对象
                id: menuId,  // 菜单id
                title: E.config.lang.hanYiCharacter, // 菜单标题
                commandName: 'fontName', // 命令名称

                // 正常状态和选中装下的dom对象,样式需要自定义
                $domNormal: jQuery('<a href="#" tabindex="-1"><i class="wangeditor-menu-img-font2"></i></a>'),
                $domSelected: jQuery('<a href="#" tabindex="-1" class="selected"><i class="wangeditor-menu-img-font2"></i></a>')
            });

            // 定义 update selected 事件
            menu.updateSelectedEvent = function () {
                var rangeElem = editor.getRangeElem();
                rangeElem = editor.getSelfOrParentByName(rangeElem, 'font[face]');
                if (rangeElem) {
                    return true;
                }
                return false;
            };







评分

参与人数 1荷币 +1 收起 理由
admin + 1 谢谢分享,H币奖励,荷塘月色有你更精彩!

查看全部评分

微信扫以上二维码分享朋友圈;或手机浏览器分享微信朋友圈;马上获得荷币奖励 奖励规则

(声明:本文由网友发布,不代表本站观点或立场,如有侵权请联系QQ:2377240266处理)

 

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏4
回复

使用道具 举报

2#
zxtluoyan 发表于 2020-7-17 08:09:32 | 只看该作者
此帖仅作者可见

使用道具 举报

3#
4900791 发表于 2020-9-19 10:13:33 | 只看该作者
此帖仅作者可见

使用道具 举报

4#
guolenovo 发表于 2020-10-17 15:06:55 | 只看该作者
此帖仅作者可见

使用道具 举报

5#
孤城哥哥 发表于 2021-3-5 22:33:24 手机荷塘月色 | 只看该作者
此帖仅作者可见

使用道具 举报

6#
guofei 发表于 2021-8-20 11:35:07 | 只看该作者
此帖仅作者可见

使用道具 举报

7#
guofei 发表于 2021-8-20 11:35:16 | 只看该作者
此帖仅作者可见

使用道具 举报

8#
guofei 发表于 2021-10-25 13:35:33 | 只看该作者
此帖仅作者可见

使用道具 举报

9#
15964959066 发表于 2021-12-27 11:22:33 | 只看该作者
此帖仅作者可见

使用道具 举报

10#
小楼一夜听春雨 发表于 2022-12-5 08:20:35 | 只看该作者
此帖仅作者可见

使用道具 举报

11#
liujunwei13142 发表于 2023-6-30 19:46:03 | 只看该作者
此帖仅作者可见

使用道具 举报

12#
rainkara 发表于 2023-9-14 11:09:04 | 只看该作者
此帖仅作者可见

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

在线客服中心
关闭

微信客服 QQ客服 点击这里给我发送消息

加大群免费领取干货

 
在线客服中心

手机版|荷塘月色_淘宝拼多多抖音小红书论坛_跨境电商商家最喜欢的开店运营经验学习交流社区论坛  
【免责声明:本站内容均来自网友发布,不代表本站观点或立场,如有侵权请联系我们处理】

GMT+8, 2024-11-22 05:39 , Processed in 0.290850 second(s), 58 queries , Gzip On.

快速回复 返回顶部 返回列表