shop.js
2.98 KB
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
//店铺装修
'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);