info.js 1.81 KB



var $ = require('jquery'),
    common=require('../common/common');

var ENUM={
    shopNature:{1:'旗舰店',2:'专卖店'},
    shopsType:{1:'单品店',2:'多品店'},
    checkStatus:{100:'暂存',200:'审核中',300:'通过',900:'驳回'},
    opt:{"add":"添加","delete":"删除"},
    href:{"info":"/supplier/store/index","info2":"/supplier/check/index","info3":"/supplier/store/examine"}
}



var Bll={
        toast:function(content,url){
            common.dialog.confirm("温馨提示",content,function(){
                common.util.__ajax({
                    url:url,
                    data:{shopsId:$("#shopsId").val()}
                },function(){
                    var href=location.pathname.match(/\/supplier\/store\/(\w*)\//);
                    location.href=ENUM.href[href[1]];
                });
            });
        }
    }


$('#basicTable').on('click', '#tongguo', function() {
    Bll.toast("您确定要通过审核吗?","/Shops/ShopsRest/checkShopPass");
});

$('#basicTable').on('click', '#bohui', function() {
    Bll.toast("您确定要驳回审核吗?","/Shops/ShopsRest/checkReject");
});




for(var key in ENUM){
    var me=$("#"+key);
    me.parent("div").html(ENUM[key][me.val()]);
}
$("#otherUrl").add("#websiteUrl").add("#shopAddress").each(function(){
    var data=JSON.parse($(this).val());
    var me=$(this).parent();
    $.each(data,function(i,item){
        me.append("<p>"+item+"</p>");
    });
});

var g2=new common.grid({
    el:"#baseTable",
    columns:[
        {display:"品牌","name":"brandName"},
        {display:"供应商","name":"supplierName"},
        {display:"操作",render:function(item){
            return ENUM.opt[item.method]||"无变化";
        }}
    ]
});
if($("#shopRelationList").val()){
    var a=JSON.parse($("#shopRelationList").val());
    g2.init(a);
}