Info.js 3.58 KB
/**
 * Created by wangqianjun on 16/3/9.
 * 商品详情
 */

var $ = require('jquery'),
    common = require('../../../common/common');
/*获取基础商品数据*/
var goodsInfo=window.ViewModel || {};

goodsInfo = goodsInfo.data || {};
goodsInfo.attribute={"1":"普通商品","2":"赠品","3":"虚拟商品","4":"组合商品"}[""+goodsInfo.attribute];
goodsInfo.ageLevel=common.config.__ageLevel(goodsInfo.ageLevel);//goodsInfo.ageLevel.replace("1","成人").replace("2","大童").replace("3","小童");
goodsInfo.gender={"1":"男","2":"女","3":"通用"}[""+goodsInfo.gender];
goodsInfo.grade={"0":"否","1":"是"}[""+goodsInfo.grade];
goodsInfo.goodsSeason={"0":"四季","1":"春","2":"夏","3":"秋","4":"冬","5":"春夏","6":"秋冬"}[""+goodsInfo.goodsSeason];
goodsInfo.isPromotionalGifts={"N":"否","Y":"是"}[""+goodsInfo.isPromotionalGifts];
goodsInfo.isLimited={"N":"否","Y":"是"}[""+goodsInfo.isLimited];
goodsInfo.isLimitbuy={"N":"否","Y":"是"}[""+goodsInfo.isLimitbuy];
goodsInfo.appType={"0":"有货平台","1":"有货,BLK平台"}[""+goodsInfo.appType];
goodsInfo.isAdvance={"N":"否","Y":"是"}[""+goodsInfo.isAdvance];
goodsInfo.classic={"0":"否","1":"是"}[""+goodsInfo.classic];
goodsInfo.sellType={"1":"经销","2":"代销", "3" : "JIT", "4" : "专营店代销入库", "5" : "专营店代销不入库", '10': '经销保税'}[""+goodsInfo.sellType];
goodsInfo.isBonded = goodsInfo.isBonded === 'Y';

var goodList = goodsInfo.baseGoodList;
$.each(goodList, function(index, item) {
    var goodsSizeList = item.goodsSizeList;
    var newGoodSizeList = [];

    $.each(goodsSizeList, function(index, _item) {
        var balanceTime = _item.balanceTime;
        if(balanceTime && balanceTime != 0) {
            _item.balanceTime = new Date(balanceTime * 1000).toLocaleString();
        } else {
            _item.balanceTime = '';
        }

        _item.storageBondedBo = _item.storageBondedBo || {};

        newGoodSizeList.push(_item);
    });

    item.goodsSizeList = newGoodSizeList;
});

var param=[goodsInfo.productSkn]
var a=common.util.__template2($("#template").html(), goodsInfo);

$(".contentpanel").html(a);


// 通过
var BllPass={
	toast:function(content,fn){
        common.dialog.confirm("温馨提示",content,function(){
            common.util.__ajax({
                url:'/base/goods/pass',
                data:fn()
            },function(){
            	// location.reload();
                setTimeout(function(){
                    location.reload();
                },2000);
            });
        });
    }
}

// 驳回
var BllReject={
    toast:function(content,fn){
        common.dialog.confirm("温馨提示",content,function(){
            common.util.__ajax({
                url:'/base/goods/reject',
                data:fn()
            },function(){
            	setTimeout(function(){
                    location.reload();
                },2000);
            });
        });
    }
}

//单个通过
$(document).on("click",".apply-success",function(){

    var data=function(){
        return {
                productSknList:JSON.stringify([param[0]]),
            };
    }
    BllPass.toast("你确定审核通过吗?",data);
    return false;
});

//单个驳回
$(document).on("click",".apply-back",function(){
    var data=function(){

        var reason = $('#bohui').val();
        if (reason === '' || $.trim(reason) === '') {
            return "请填写驳回原因";
        }

        return {
            productSknList:JSON.stringify([param[0]]),
            rejectReason:reason
            };
    }
    BllReject.toast($("#bohuiuuu").html(),data);
    return false;
});