shop.js 2.98 KB
//店铺装修
'use strict';
var $ = require('jquery'),
    common=require('../common/common');

$('.tabheader .nav-tabs li').on('click',function(){
    $(this).addClass('active').siblings('li').removeClass('active');
    var className = $(this).attr("data-toggle")+"-single";
    $('.'+className).show().siblings('.contentpanel').hide();
});

$(".contentpanel-pc .model-editor").hover(
    function () {
        var _this = $(this);
        var editorIcon = "<div class='editorBorder'></div>" +
            "<a class='editorIcon' href='javascrip:'>编辑</a>"
        _this.append(editorIcon);

        editorIconEvent();
    },
    function () {
        $(".editorIcon").remove();
        $(".editorBorder").remove();
    }
);

function editorIconEvent(){
    $('.editorIcon').on('click',function(){
        common.dialog.confirm(
            "编辑",
            common.util.__template2($("#template").html(),{name:""}),
            function(){
                //alert('ok');
            },
            function(){
                //alert('no');
            }
        );
    })
}

var json = {
    "shopsId":1,
    "platform": "APP",
    "templateName": "BASE",
    "resources":{

        "shopTopBanner":{
            "id":7,
            "name":"shopTopBanner",
            "data":
            {
                "src": "http://img10.static.yhbimg.com/taobaocms/2016/01/25/12/0155598441256e46ec285a8ea64e762394.png",
                "isShowShopName": "Y"
            }
        },

        "productDetailTopBanner":{
            "id":8,
            "name": "productDetailTopBanner",
            "data":
            {
                "src": "http://img10.static.yhbimg.com/taobaocms/2016/01/25/12/015}5598441256e46ec285a8ea64e762394.png"
            }
        },

        "oneRowTwoColImages":{
            "id":9,
            "name": "oneRowTwoColImages",
            "data": [
                {
                    "position": 1,
                    "src": "http://img10.static.yhbimg.com/taobaocms/2016/01/25/12/0155598441256e46ec285a8ea64e762394.png",
                    "url": {},
                    "startTime": 1309514897,
                    "endTime": 1309514967,
                    "publishStatus": 0
                },
                {
                    "position": 2,
                    "src": "http://img10.static.yhbimg.com/taobaocms/2016/01/25/12/0155598441256e46ec285a8ea64e762394.png",
                    "url": {},
                    "startTime": 1309514897,
                    "endTime": 1309514967,
                    "publishStatus": 0
                }
            ]
        },

        "hotProducts":{
            "id":9,
            "name": "hotProducts",
            "data": [
                50000881,
                50000882,
                50000883,
                50000884,
                50000885,
                50000886,
                50000887,
                50000888
            ]
        }
    }
}

var mainHtml = common.util.__template2($("#shopWeb-pc").html(),json);
$('#main').html(mainHtml);