ContentManage.js
59.1 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
var $ = require('jquery'),
common = require('../../../common/common');
var Button = require('./../partials/Button1');
var resourceObj = require('./../partials/resourceObj');
var Validate = require('./../partials/Validate1');
var addObj = require('./../partials/addObj');
require('../../../common/util/datepicker');
/*获取数据*/
var resources = [];
var times = [];
var currIndex = 0;
var lockStatus = 0;
//资源id
var param = location.href.substring(location.href.lastIndexOf("/") + 1);
//0:查看1:编辑
var lock_type = location.href.substring(location.href.lastIndexOf("/")-1,location.href.lastIndexOf("/"));
common.util.__ajax({
url: "/resources/resContentIndex",
data: {id: param},
async: false
}, function (res) {
resources = res.data;
console.log(resources);
}, true);
if(lock_type==1){
common.util.__ajax({
url: "/resources/updateLock",
data: {id: param,
status:1},
async: false
}, function (res) {
}, true);
}
/*配置模块*/
var edit = new common.edit2(".modal-body", {
bucket: "yhb-img01"
});
var Bll = {
Brands: [],
Brands1: {},
Brdata: [],
moduleimgs: [],
contentDatas: [],
module: null,
sorts: [
{tagName: 'colorName', list: []},
{tagName: 'stylename', list: []},
{tagName: 'sortName', list: []},
{tagName: 'brand_name', list: []},
{tagName: 'gendername', list: []}
],
searchSorts: [],
searchSkn: [],
__render: function (selecter, templater, data) {
$(selecter).html(common.util.__template2($("#" + templater).html(), data));
if(selecter == "#add-content") {
$(selecter).mysortable({
items: ".dragItem",
array: Bll.contentDatas[currIndex],
callback: function (data) {
Bll.contentDatas[currIndex] = data;
Bll.__render("#add-content", "template_content", {modules: Bll.contentDatas[currIndex]});
}
});
}
},
toast: function (index, module) {
var btn = Button.filter(function (item) {
return item.template_name == module.contentData.template_name;
});
//console.log("打开的数据module",module);
var d = new common.dialog({
title: (!!~index ? "修改" : "添加") + (typeof btn[0].__title != "undefined" ? btn[0].__title : btn[0].button_name),
content: common.util.__template2($("#" + btn[0].dialog).html(), convertModule(module)),
width: '70%',
button: [{
value: "保存",
callback: function () {
console.log(module.contentData);
if(!checkLockStatus()){
return false;
}
var couponFlag = true;
//好店推荐切换radio,增加/删除校验
var shopRecommendFlag = false;
if(module.contentData.template_name == 'shopRecommend') {
if(module.contentData.isShopRecommend=="N"||module.contentData.isShopRecommend==""){
$(".shopRecommendRequired").attr("required",true);
module.contentData.shopChannelId='';
module.contentData.isShopRecommend="N"
}else{
$(".shopRecommendRequired").attr("required",false);
}
}
if (Validate[module.contentData.template_name]) {
Validate[module.contentData.template_name].forEach(function (item) {
couponFlag = item.fn(module.contentData);
})
}
if (edit.validate() && couponFlag) {
//TODO
if (resourceObj[module.contentData.template_name]) {
resourceObj[module.contentData.template_name](module.contentData.data);
}
if (module.contentData.template_name == "discountActivity") {
if(module.contentData.data.list) {
var params = [];
module.contentData.data.list.forEach(function (ele, i) {
params.push(ele.id);
});
common.util.__ajax({
async: false,
url: "/activity/querySpecialActivityByIDs",
data: {ids: params.join(",")}
}, function (res) {
module.activities = res.data;
}, true);
} else {
module.activities = [];
}
}
// 对 "首页翻转页面" 做处理
if(module.contentData.template_name == 'rollingOverSlider') {
// 设置作用域
module.contentData.data.scope = $('#scope-select').val();
// 判断"开始时间"和"结束时间"的合法性
var beginTime = dateStrToSeconds(module.contentData.data.begin_time);
var endTime = dateStrToSeconds(module.contentData.data.end_time);
if(beginTime >= endTime) {
common.util.__tip('结束时间不得早于开始时间,请重新确认!', 'warning');
return false;
}
// 判断各个频道下设置的跳转链接,只需要对 各个频道分别设置 场景下进行校验,统一设置场景,由公共校验器处理
var errChannel = validateRollingOverContent(module.contentData.data);
if(errChannel.length > 0) {
var html = errChannel.join('、') + '频道下的跳转url配置为空,请确认!';
common.util.__tip(html, 'warning');
return false;
}
delete module.contentData.data.content;
}
// module.contentData.begin_show_time = "20161012";
// module.contentData.end_show_time = "20161012";
console.log(module);
!!~index ? Bll.contentDatas[currIndex][index] = module : Bll.contentDatas[currIndex].push(module);
Bll.__render("#add-content", "template_content", {modules: Bll.contentDatas[currIndex]});
d.close();
}
return false;
},
css: "btn-primary"
}]
});
Bll.__editRender(btn[0].dialog);
},
renderDialog: function (templater) {
// 对"首页翻转页面"进行特殊处理,根据选择的频道来组装渲染表格的内容
if(templater == 'rollingOverSlider-template') {
Bll.module.contentData.data.content = Bll.module.contentData.data[Bll.module.contentData.data.channel];
}
Bll.__render(".modal-body", templater, Bll.module);
Bll.__editRender(templater);
},
__editRender: function (templater) {
edit.init();
$('.draggable').each(function () {
if ($(this).children().length) {
$(this).mysortable().bind('sortupdate', function () {
var fn = new Function("Bll", "return Bll.module.contentData." + $(this).data("array"));
var arr = fn(Bll);
var arr2 = [];//拖拽后顺序
var itemsUpdate = $(this).children("li");
if (itemsUpdate.length == arr.length) {
for (var i = 0; i < itemsUpdate.length; i++) {
arr2.push($(itemsUpdate[i]).attr("drag-index"));
$(itemsUpdate[i]).attr("drag-index", i);
}
for (var i = 0; i < arr.length; i++) {
arr2[i] = arr[arr2[i]];
}
var fn1 = new Function("Bll", "arr2", "Bll.module.contentData." + $(this).data("array") + "=arr2");
fn1(Bll, arr2);
}
Bll.renderDialog(templater);
})
}
});
edit.on("file_onComplete", function (obj) {
console.log(obj);
var names = obj.field;
console.log(names);
if (names.indexOf("..") == 0) {
names = names.substr(2);
Bll.module.contentData = common.util.__buildobj(names, '.', Bll.module.contentData, function(o, names) {
o[names] = obj.data;
});
return;
}
Bll.module.contentData.data = common.util.__buildobj(names, '.', Bll.module.contentData.data, function (o, name) {
o[name] = obj.data;
});
});
$('.hasDatepicker').fdatepicker({
format: 'yyyy-mm-dd hh:ii:ss',
pickTime: true
});
},
//获取品牌
getBrands: function () {
var Brand = {};
$.get("/ajax/yohosearch", function (res) {
if(!res.data||!res.data.brands){
return;
}
for(var key in res.data.brands){
var name=key;
if (/^[0-9]$/.test(name)) {
name = "0-9";
}
if (name==="") {
name = "#";
}
for(var key2 in res.data.brands[key]){
var item=res.data.brands[key][key2];
if (!item) { continue; }
Brand[name] = Brand[name] || [];
Brand[name].push(item);
Bll.Brands1[item.id] = item;
}
}
for (var i in Brand) {
Brand[i].sort(function (a, b) {
var aName = a.brand_name.toLowerCase(),
bName = b.brand_name.toLowerCase();
if (aName < bName) return -1;
if (aName > bName) return 1;
return 0;
});
Bll.Brands.push({
name: i,
items: Brand[i]
});
}
});
},
renderBrandPic: function (Brdata) {
var Brands2 = [];
Brdata.forEach(function (item, index) {
if (!item.brandIco) {
var a = Bll.Brands1[item];
a.brandIco = common.util.__joinImg("brandLogo", a.brand_ico);
Brands2.push(a);
} else {
item.brandIco = common.util.__template(item.brandIco, {width: 110, height: 150});
Brands2.push(item);
}
});
Bll.module = Bll.module || {};
Bll.module.contentData = Bll.module.contentData || {};
Bll.module.contentData.data = Bll.module.contentData.data || {};
Bll.module.contentData.data.list = Bll.module.contentData.data.list || [];
for (var i = 0; i < Brands2.length; i++) {
var pic = {};
if (Bll.module.contentData.template_name == "kidsBrands") {
pic = {
"src": Brands2[i].brandIco,
"id": Brands2[i].id,
"title": Brands2[i].brand_name
};
} else {
pic = {
"src": Brands2[i].brandIco,
"id": Brands2[i].id,
"name": Brands2[i].brand_name
};
}
Bll.module.contentData.data.list.push(pic);
}
Bll.renderDialog("brands-template");
}
};
//初始化时间
var statusArr = ["已过期", "进行中", "未发布"];
for(var i = 0; i < resources.length; i++) {
//status 0:已过期;1:进行中;2:未发布
var t = new Date(resources[i].resource.publishTime*1000);
var time = resources[i].resource.publishTime==0?"":common.util.__dateFormat(t, "yyyy-MM-dd hh:mm:ss");
times[i] = {
time:time,
status:statusArr[resources[i].status]
}
}
/**
* 过滤函数
* @param Array
* @param key
* @returns {Array}
* @constructor
*/
function Unique(Array,key) {
var res = [], hash = {};
for (var i = 0, elem; (elem = Array[i]) != null; i++) {
if (!hash[elem[key]]) {
res.push(elem);
hash[elem[key]] = true;
}
}
return res;
}
/*第一步,基础模板*/
Bll.__render("#content-list", "content-template", resources[currIndex]);
Bll.__render(".contents", "template_content_btns", {btns: Button});
Bll.__render("#times-list", "times-template", {times:times, selected:0});
/*第二部,把楼层数据转化成数组*/
for(var i = 0; i < resources.length; i++) {
Bll.contentDatas[i] = [];
resources[i].contentData.forEach(function (item, index) {
item.contentData = JSON.parse(item.contentData);
var temp;
if (item.contentData.template_name == "kidsBrands") {
temp = item.contentData.data.params.more_url;
item.contentData.data.params.more_url = {};
item.contentData.data.params.more_url.action = JSON.parse(temp).action || "";
item.contentData.data.params.more_url.url = JSON.parse(temp).url || "";
}
if (item.contentData.template_name == 'title') {
temp = item.contentData.data.more_link;
item.contentData.data.more_link = {};
item.contentData.data.more_link.action = JSON.parse(temp).action || "";
item.contentData.data.more_link.url = JSON.parse(temp).url || "";
}
//推荐品牌默认加一张图片
if (item.contentData.template_name == 'appHotBrands') {
if (!item.contentData.data.image) {
item.contentData.data.image = {};
item.contentData.data.image = {
"src": "",
"alt": "",
"url": {
"action": "",
"url": ""
}
}
}
}
//默认图标一行4个
if (item.contentData.template_name == 'appIconList') {
if (!item.contentData.number) {
item.contentData.number = 4;
}
}
item.contentData = JSON.stringify(item.contentData);
item.contentData = item.contentData.replace(/(gif|png|jpg|jpeg)\?[^"]*/g, '$1');
item.contentData = common.util.__ObjToArray(JSON.parse(item.contentData));
if (item.contentData.template_name == "discountActivity" && !!item.contentData.data.list) {
var params = [];
item.contentData.data.list.forEach(function (ele, i) {
params.push(ele.id);
});
common.util.__ajax({
async: false,
url: "/activity/querySpecialActivityByIDs",
data: {ids:params.join(",")}
}, function (res) {
item.activities = res.data;
}, true);
}
// 对 "首页翻转页面" 的时间做处理
if(item.contentData.template_name == "rollingOverSlider") {
// 在"保存"资源位时,如果contentData中的Array类型的长度为0,会被转化成Object类型。
// 在"编辑"时,"添加跳转页面"时就会报错
var channels = ['general', 'boy', 'girl', 'kids', 'lifestyle'];
$.each(channels, function(index, _channel) {
if(! $.isArray(item.contentData.data[_channel])) {
item.contentData.data[_channel] = new Array();
}
});
var scope = item.contentData.data.scope;
if(scope == '1') {
item.contentData.data.channel = 'boy';
} else {
item.contentData.data.channel = 'general';
}
item.contentData.data.content = item.contentData.data[item.contentData.data.channel];
var beginTime = item.contentData.data.begin_time;
if(beginTime) {
item.contentData.data.begin_time = secondsToStrDate(beginTime);
}
var endTime = item.contentData.data.end_time;
if(endTime) {
item.contentData.data.end_time = secondsToStrDate(endTime);
// 针对"复制"资源位的场景,如果"发布时间"晚于"结束时间",需要给出提示
if(i == 0) {
var publishTime = resources[i].resource.publishTime;
if(publishTime && publishTime >= endTime) {
common.util.__tip('"首页翻转页面"的"发布时间"晚于"结束时间",请更新"结束时间"!', 'warning');
}
}
}
}
Bll.contentDatas[i].push(item);
});
}
/*第三部解析楼层*/
Bll.__render("#add-content", "template_content", {modules: Bll.contentDatas[currIndex]});
/*第四部 操作按钮 添加 删除 修改*/
$(document).on("click", ".add_btn", function () {
var item = Button[$(this).data("index")];
Bll.module = {};
Bll.module.contentData = $.extend(true, {}, item);
Bll.toast(-1, Bll.module);
});
/*第五步 绑定监听事件*/
$(document).on("change", ".observe", function () {
var $this = $(this);
var name = $this.data("field");
// 以 .. 开头的,赋值到 contentData
if (name.indexOf("..") == 0) {
name = name.substr(2);
Bll.module.contentData = common.util.__buildobj(name, '.', Bll.module.contentData, function(obj, name) {
var type = $this.data("type");
var val = $.trim($this.val());
// time 类型的转换成 seconds
if (type && type == "time" && val.length > 0) {
val = val.replace(/-/g,'/'); // 通用性好一点
val = new Date(val).getTime() / 1000;
}
if (val != null) {
obj[name] = val;
}
});
return;
}
Bll.module.contentData.data = common.util.__buildobj(name, '.', Bll.module.contentData.data, function (obj, name) {
obj[name] = $this.val();
if (name == "image_style") {
delete obj["default"];
delete obj["T1F2"];
delete obj["L1R2"];
delete obj["imageList"];
obj[obj[name]] = true;
}
});
});
window.onbeforeunload = function(){
if(lock_type==1){
common.util.__ajax({
url: "/resources/updateLock",
data: {id: param,
status:0}
}, function () {
});
}
}
/*删除*/
$(document).on("click", ".del", function () {//删除
if(!checkLockStatus()){
return false;
}
var index = $(this).data("index");
common.dialog.confirm("警告",
common.util.__template2("是否确认删除?", {}),
function () {
//if (Bll.contentDatas[currIndex][index].id) {
// common.util.__ajax({
// url: "/resources/delResContent",
// data: {id: Bll.contentDatas[currIndex][index].id}
// });
//}
Bll.contentDatas[currIndex].splice(index, 1);
Bll.__render("#add-content", "template_content", {modules: Bll.contentDatas[currIndex]});
});
});
/*编辑*/
$(document).on("click", ".edit", function () {
var index = $(this).data("index");
var item = Bll.contentDatas[currIndex][index];
Bll.module = $.extend(true, {}, item);
Bll.toast(index, Bll.module);
if(item.contentData.template_name=='shopRecommend'){
var _shopRecommendFlag = item.contentData.isShopRecommend==''?"N":item.contentData.isShopRecommend;
changeShopRecommendDivShow(_shopRecommendFlag);
}
});
/*根据limit判断最多添加条数, 根据event判断添加的类型, data-event:template_name + "-template"*/
$(document).on("click", ".addBtn", function () {
var length = $(this).data("limit");
var arr = $(this).data("event").split(".");
if (arr[1] == "data") {
if (Bll.module.contentData.data.length >= length) {
common.util.__tip("最多" + length + "条!", "warning");
return;
}
Bll.module.contentData.data.push(addObj[arr.join("_")]);
} else {
if (Bll.module.contentData.data[arr[1]].length >= length) {
common.util.__tip("最多" + length + "条!", "warning");
return;
}
Bll.module.contentData.data[arr[1]].push(addObj[arr.join("_")]);
}
Bll.renderDialog(arr[0] + "-template");
// 重新加载对话框时,需要渲染选择的频道
if(Bll.module.contentData.template_name == 'rollingOverSlider') {
if(Bll.module.contentData.data.scope == '1') {
chooseChannelActive(Bll.module.contentData.data.channel);
}
}
});
/*删除行*/
$(document).on("click", ".delBtn", function () {
var arr = $(this).data("event").split(".");
var index = $(this).data("index");
if (arr[1] == "data") {
Bll.module.contentData.data.splice(index, 1);
} else {
Bll.module.contentData.data[arr[1]].splice(index, 1);
}
Bll.renderDialog(arr[0] + "-template");
// 重新加载对话框时,需要渲染选择的频道
if(Bll.module.contentData.template_name == 'rollingOverSlider') {
if(Bll.module.contentData.data.scope == '1') {
chooseChannelActive(Bll.module.contentData.data.channel);
}
}
});
//输入领券码验证
$(document).on("change", "#couponID", function () {
var couponID = $(this).val();
common.util.__ajax({
url: "/coupon/batchCheckCoupons",
async: false,
data: {
params: couponID
}
}, function () {
});
});
// 对时间进行重写,显示
function convertModule(module) {
// copy 对象
// "首页翻转页面"编辑时,需要根据当前频道,重新组装表格渲染内容
if(module.contentData.template_name == 'rollingOverSlider') {
// module.contentData.data.channel = 'boy';
if(module.contentData.data.scope == '1') {
module.contentData.data.channel = 'boy';
} else {
module.contentData.data.channel = 'general';
}
module.contentData.data.content = module.contentData.data[module.contentData.data.channel];
}
var newModule = $.extend(true, {}, module);
if (module.contentData.begin_show_time) {
newModule.contentData.begin_show_time = secondsToStrDate(module.contentData.begin_show_time);
}
if (module.contentData.end_show_time) {
newModule.contentData.end_show_time = secondsToStrDate(module.contentData.end_show_time);
}
return newModule;
}
function secondsToStrDate(seconds) {
if (seconds == 0) { return ""; }
var t = new Date(seconds * 1000);
return common.util.__dateFormat(t, "yyyy-MM-dd hh:mm:ss");
}
function dateStrToSeconds(date) {
if(date) {
return new Date(date).getTime() / 1000;
}
return 0;
}
function checkLockStatus(){
if(lock_type==0){
common.util.__tip("请点击内容编辑进行操作");
return false;
}
common.util.__ajax({
url: "/resources/checkLock",
data: {id: param},
async: false
}, function (res) {
lockStatus = res.data;
}, true);
if(lockStatus == '2') {
common.util.__tip("该资源位已被锁定,不能操作");
return false;
}else{
return true;
}
}
//获取品牌
Bll.getBrands();
//打开品牌选择模态
$(document).on("click", "#addBrands", function () {
var e = new common.edit("#brandForm");
new common.dialog({
title: "选择品牌",
width: "70%",
content: common.util.__template2($("#template5").html(), {
Brands: Bll.Brands,//所有品牌数据
Brdata: []
}),
button: [
{
value: "确定",
callback: function () {
Bll.Brdata = $("#brandCheckBox").val().split('|');
Bll.renderBrandPic(Bll.Brdata);
},
css: "btn-primary"
},
{
value: "取消"
}
]
});
e.init();
});
//品牌筛选
$(document).on('click', '.brand-index', function () {
var brandIndex = $(this).text();
$('.brand-wrap').find('[name="' + brandIndex + '"]').show().siblings().hide();
});
//*****************************************************************//
/*LBK*/
/*图片列表*/
$(document).on("click", '.is_show_name2', function () {
Bll.module.contentData.data.is_show_name = $(this).val();
Bll.renderDialog("imageList-template2");
});
//*****************************************************************//
/*图片列表*/
$(document).on("click", '.is_show_name', function () {
Bll.module.contentData.data.title.is_show_name = $(this).val();
Bll.renderDialog("imageList-template");
});
//*****************************************************************//
//*****************************************************************//
/*好店推荐*/
$(document).on("click", '.isShopRecommend', function () {
var _isShopRecommend = $(this).val();
Bll.module.contentData.isShopRecommend = _isShopRecommend;
//Bll.renderDialog("shopRecommend-template");
//切换到推荐
changeShopRecommendDivShow(_isShopRecommend)
});
$(document).on("change", '.shopChannelId', function () {
Bll.module.contentData.shopChannelId = $(this).val();
//Bll.renderDialog("shopRecommend-template");
});
//*****************************************************************//
/*推荐(标题 + 12张图)*/
$(document).on("change", '#recommendContentFive-is_show', function () {
Bll.module.contentData.data.title.is_show = 1 - Bll.module.contentData.data.title.is_show;
Bll.renderDialog("recommendContentFive-template");
});
//*****************************************************************//
/*焦点图*/
$(document).on("change", '#focus-select', function () {
Bll.module.contentData.focus_type = $(this).val();
Bll.renderDialog("focus-template");
});
//*****************************************************************//
/*编辑推荐*/
$(document).on("change", '#editorTalk-is_show', function () {
Bll.module.contentData.data.title.is_show = 1 - Bll.module.contentData.data.title.is_show;
Bll.renderDialog("editorTalk-template");
});
//推荐品牌 是否显示名称
$(document).on("click", '.is_show_name_brand', function () {
Bll.module.contentData.data.is_show_name = $(this).val();
Bll.renderDialog("brands-template");
});
//图标入口 一行显示个数
$(document).on("click", '.icon-number', function () {
Bll.module.contentData.number = $(this).val();
Bll.renderDialog("icon-template");
});
//**********************************************************************************/
//复制
$(document).on("click", "#copyTab", function() {
if(!checkLockStatus()){
return false;
}
common.util.__ajax({
url: "/resources/copyResContent",
data: {rId:resources[currIndex].resource.id}
}, function (res) {
window.location.href = window.location.href;
});
});
//保存时间
$(document).on("click", "#saveTime", function() {
if(!checkLockStatus()){
return false;
}
if(times[currIndex].status == "进行中") {
common.util.__tip("进行中的页面不能更改时间");
return false;
}
if(!times[currIndex].time) {
common.util.__tip("该页面不能更改时间");
return;
}
for(var i = 0; i < times.length; i++) {
if(currIndex != i && times[currIndex].time == times[i].time) {
common.util.__tip("不能和已有的预发布时间重复");
return;
}
}
// "首页翻转页面"资源位更新"发布时间"时,不能晚于"end_time"
var count = updateRollingOverPublishTime(resources[currIndex]);
// 如果时间不符合,不得保存发布时间
if(count > 0) {
common.util.__tip('"首页翻转页面"中,"发布时间"不能晚于"结束时间",请先更新"结束时间"!', 'warning');
return false;
}
common.util.__ajax({
url: "/resources/updateResPublishTime",
data: {
id:resources[currIndex].resource.id,
time:times[currIndex].time
}
}, function (res) {
window.location.href = window.location.href;
});
});
new common.edit2("#times-list").init();
//切换预发布tab
$(document).on("click", ".timesLi", function() {
if(!$(this).hasClass("active")) {
$(this).addClass("active").siblings().removeClass("active");
currIndex = $(this).data("index");
Bll.__render("#add-content", "template_content", {modules: Bll.contentDatas[currIndex]});
Bll.__render("#times-list", "times-template", {times: times, selected: currIndex});
new common.edit2("#times-list").init();
}
});
$(document).on("change", ".preTimes", function() {
times[$(this).data("index")].time = $(this).val();
});
//删除tab
$(document).on("click", "#delTab", function() {
if(!checkLockStatus()){
return false;
}
if(times[currIndex].status == "进行中") {
common.util.__tip("进行中的页面不能删除");
return false;
}
if(!times[currIndex].time) {
common.util.__tip("该页面不能删除");
return false;
}
common.dialog.confirm("警告", "确定取消" + times[currIndex].time + "发布的页面吗?",function() {
common.util.__ajax({
url: "/resources/deleteResourceById",
data: {
id: resources[currIndex].resource.id
}
}, function (res) {
window.location.href = window.location.href;
});
});
});
/*保存事件*/
$(document).on("click", "#sub_btn", function () {
if(!checkLockStatus()){
return false;
}
var data = {
"content": {},
"data_id": {},
"rId": ""
};
for (var i = 0; i < Bll.contentDatas[currIndex].length; i++) {
var contentData = Bll.contentDatas[currIndex][i].contentData;
var action;
var url;
var goodsSrc = "imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/90";
addSuffix(contentData);
delete contentData.button_name;
delete contentData.dialog;
delete contentData.__title;
//kids推荐品牌
if (contentData.template_name == "kidsBrands") {
action = contentData.data.params.more_url.action || "";
url = contentData.data.params.more_url.url || "";
contentData.data.params.more_url = "{\"action\":\"" + action + "\",\"url\":\"" + url + "\"}";
}
//标题标签
if (contentData.template_name == "title") {
action = contentData.data.more_link.action || "";
url = contentData.data.more_link.url || "";
contentData.data.more_link = "{\"action\":\"" + action + "\",\"url\":\"" + url + "\"}";
}
//商品
if (contentData.template_name == "goods") {
for (var j = 0; j < contentData.data.length; j++) {
if (contentData.data[j].src) {
var a = contentData.data[j].src.split("?");
a[1] = goodsSrc;
contentData.data[j].src = a.join("?");
}
}
}
//商品组
if (contentData.template_name == "goodsGroup") {
for (var m = 0; m < contentData.data.length; m++) {
if (contentData.data[m].list) {
for (var n = 0; n < contentData.data[m].list.length; n++) {
var b = contentData.data[m].list[n].src.split("?");
b[1] = goodsSrc;
contentData.data[m].list[n].src = b.join("?");
}
}
}
}
// "首页翻转页面"
if (contentData.template_name == "rollingOverSlider") {
// 不在dialog的保存中处理时间,防止未点此处的"保存",而再次编辑
contentData.data.begin_time = dateStrToSeconds(contentData.data.begin_time);
contentData.data.end_time = dateStrToSeconds(contentData.data.end_time);
}
data.content[i] = JSON.stringify(common.util.__ArrayToObj(contentData));
data.content[i] = JSON.stringify(common.util.__ArrayToObj(Bll.contentDatas[currIndex][i].contentData));
if (Bll.contentDatas[currIndex][i].id) {
data.data_id[i] = "id_" + Bll.contentDatas[currIndex][i].id;
}
}
data.rId = resources[currIndex].resource.id;
data.content = JSON.stringify(data.content);
data.data_id = JSON.stringify(data.data_id);
common.util.__ajax({
url: "/resources/addResContent",
data: data
}, function (res) {
window.location.href = window.location.href;
});
});
var addSuffix = function (contentData) {
if (typeof contentData == "object") {
for (var i in contentData) {
// back_image 背景图
if ((i == "src" || i == "back_image") && contentData[i].indexOf("?") == -1) {
contentData[i] = contentData[i] + "?imageView2/{mode}/w/{width}/h/{height}";
} else {
addSuffix(contentData[i]);
}
}
}
return contentData;
};
/*********************************************商品*******************************************************/
/**
* 商品部分公共方法
*/
var Bll2 = {
colors:[],//颜色
styles :[{id: 1, stylename: "街头"}, {id: 2, stylename: "趣味"}, {id: 3, stylename: "运动"}, {id: 4, stylename: "美式"},
{id: 5, stylename: "简约"}, {id: 5, stylename: "潮流"}],//风格
genders :[{id: 1, gendername: "男"}, {id: 2, gendername: "女"}, {id: 3, gendername: "通用"}],//性别
sorts:[],
/**
* 拼接勾选标签的id,作为查询条件
*/
getIds: function (array) {
var ids = [];
var id = "";
if (array.length > 0) {
for (var i = 0; i < array.length; i++) {
ids.push(array[i].id);
}
id = ids.join(',');
}
return id;
},
/**
* 输入关键字查询
* @param txt 输入的内容
* @param array 匹配的数组
* @param attr 匹配的字段
*/
//todo 多个标签查询时,单个标签不是模糊匹配
reg: function (txt, array, attr) {
var obj = {
tagName: attr,
list: []
};
array.forEach(function (item) {
var i = item[attr].indexOf(txt);
var j = txt.indexOf(item[attr]);
if (i > -1 || j > -1) {
obj.list.push({id: item.id, name: item[attr]})
}
});
Bll.searchSorts.push(obj);
},
//拖拽商品
moveDrag:function (ele) {
var $parent = $(".imagegroup");
var i = $parent.data("i");//组标志
var isg = typeof(i) === "number" ? true : false;
var __data__ = null;
$parent.css("height", "auto");
$parent.each(function (i) {
if (isg) {
__data__ = Bll.module.contentData.data[i].list;
} else {
__data__ = Bll.module.contentData.data;
}
console.log($(this));
$(this).mysortable({
items: ".dragItem2",
array: __data__,
callback: function (data) {
if (isg) {
Bll.module.contentData.data[i].list = data;
Bll.module.contentData.data[i].cover.cover = Bll.module.contentData.data[i].list[0].src;
Bll.module.contentData.data[i].cover.maxSortId = Bll.module.contentData.data[i].list[0].maxSortId;
} else {
Bll.module.contentData.data = data;
}
}
});
});
}
};
common.util.__ajax({
async: false,
url: "/erpproduct/product/colorList"
}, function (res) {
Bll2.colors = res.data.list;
}, true);
common.util.__ajax({
async: false,
url: "/product/class/queryAllProductSortList",
data: {
booleanStatus: true
}
}, function (res) {
Bll2.sorts = res.data;
}, true);
/*选择商品表格*/
var goodsgird = new common.grid({
el: '#goodsgird',
hash:false,
parms: function () {
var price = "";
if (common.util.__input('min-price') && common.util.__input('max-price')) {
price = common.util.__input('min-price') + "," + common.util.__input('max-price');
}
return {
status: 1,
sales: "Y",
stocknumber: "1",
attribute_not: "2",
query: common.util.__input('skns'),
price: price,
color: Bll2.getIds(Bll.sorts[0].list),
//style: getIds(Bll.sorts[1].list),//风格先不管
msort: Bll2.getIds(Bll.sorts[2].list),
brand: Bll2.getIds(Bll.sorts[3].list),
gender: Bll2.getIds(Bll.sorts[4].list)
};
},
columns: [
{
display: "选择",
type: "checkbox"
}, {
display: "产品图片",
render: function (item) {
if (item.images_url) {
item.images_url = common.util.__joinImg("goodsimg", item.images_url);
}
else {
if(item.default_images){
item.images_url = common.util.__joinImg("goodsimg", item.default_images);
}
else{
item.images_url=""
}
}
return "<img width=120 height=60 src='" + item.images_url + "?imageView/2/w/100/h/100'/>";
}
}, {
display: "产品名称",
name: "product_name"
}, {
display: "品牌",
name: "brand_name"
}, {
display: "现价",
name: "sales_price"
}, {
display: "牌价",
name: "market_price"
}, {
display: "预售",
name: "stock_number"
}, {
display: "库存",
name: "storage_num"
}]
});
//点击“选择标签”按钮(添加商品)
$(document).on("click", "#goodsSelectBtn", function () {
new common.dialog({
title: "选择商品",
zIndex: 52,
content: $("#template_dialog_goodsgird").html(),
width: '80%',
button: [{
value: "确定",
callback: function () {
var gs = goodsgird.selected.map(function (item, index) {
return {
src: item.images_url,
id: item.product_skn,
product_skc: item.product_skc
}
})
// 线上bug修改,商品个数不超过150个
var datas = Bll.module.contentData.data.concat(gs);
if (datas.length > 150) {
common.util.__tip('选择商品失败,您选择的商品总数超过150个。', 'warning');
return;
}
Bll.module.contentData.data = Bll.module.contentData.data.concat(gs);
Bll.module.contentData.data = Unique(Bll.module.contentData.data, "product_skc")
Bll.__render("#goodspic", "template_dialog_goodsimgs", {
datas: Bll.module.contentData.data
});
Bll2.moveDrag();
},
css: "btn-primary"
}]
});
goodsgird.grid = null;
});
//点击“添加组”按钮(添加商品组)
$(document).on("click", "#goodsaddBtn", function () {
var item = $.extend(true, {}, Button[4].data[0]);
if (Bll.module.contentData.data[0].list.length) {
Bll.module.contentData.data.push(item);
}
Bll.__render("#groupsgoods", "template_dialog_remgoodsgroup", Bll.module);
});
//点击“选择标签”按钮(添加商品组)
$(document).on("click", ".goodsSelectBtn", function () {
var index = $(this).data("index");
new common.dialog({
title: "选择商品",
zIndex: 52,
content: $("#template_dialog_goodsgird").html(),
width: '80%',
button: [{
value: "确定",
callback: function () {
if (goodsgird.selected) {
goodsgird.selected.forEach(function (item, i) {
if (Object.prototype.toString.call(Bll.module.contentData.data[index].list) !== "[object Array]") {
Bll.module.contentData.data[index].list = [];
}
Bll.module.contentData.data[index].list.push({
src: item.images_url,
id: item.product_skn,
product_skc: item.product_skc,
maxSortId: item.max_sort_id
});
});
Bll.module.contentData.data[index].list = Unique(Bll.module.contentData.data[index].list, "product_skc");
Bll.module.contentData.data[index].cover = {
cover: Bll.module.contentData.data[index].list[0].src,
maxSortId: Bll.module.contentData.data[index].list[0].maxSortId
};
}
Bll.__render("#groupsgoods", "template_dialog_remgoodsgroup", Bll.module);
Bll2.moveDrag();
},
css: "btn-primary"
}]
});
goodsgird.grid = null;
});
//删除图片按钮
$(document).on("click", ".removepic", function () {
var $parent = $(this).parents("ul.imagegroup");
var i = $parent.data("i");//组标志
var isg = typeof(i) === "number" ? true : false;
//推荐商品组
if (isg) {
Bll.module.contentData.data[i].list.splice($(this).data("index"), 1);
Bll.module.contentData.data[i].cover = {};
if (Bll.module.contentData.data[i].list.length == 0) {
Bll.module.contentData.data[i].cover.cover = "";
Bll.module.contentData.data[i].cover.maxSortId = "";
}
else {
Bll.module.contentData.data[i].cover.cover = Bll.module.contentData.data[i].list[0].src;
Bll.module.contentData.data[i].cover.maxSortId = Bll.module.contentData.data[i].list[0].maxSortId;
}
}
//商品
else {
Bll.module.contentData.data.splice($(this).data("index"), 1);
}
$parent.html(common.util.__template2($("#template_dialog_goodsimgs").html(), {
datas: isg ? Bll.module.contentData.data[i].list : Bll.module.contentData.data
}));
});
/**
* 手动输入 tab
*/
$(document).on("click", ".hand", function () {
$(this).css("color", 'red');//当前链接变红色
$("#skns").val("");//清空输入框
$(".tag").css("color", 'black');//搜索标签链接变黑色
$(".search-con1").show();
$(".search-con2").hide();
$(".tag-con").hide();
$(".goods-list").hide();
});
/**
* 手动输入中“搜索商品”按钮
*/
$(document).on("click", "#search", function () {
$(".goods-list").show();
if (goodsgird.grid) {
goodsgird.reload(1);
} else {
goodsgird.init('/yohosearch/search');
}
});
/**
* 标签搜索 tag
*/
$(document).on("click", ".tag", function () {
$(this).css("color", 'red');
$("#tags").val("");//清空输入框
$("#skns2").val("");//清空输入框
$(".hand").css("color", 'black');
$(".search-con1").hide();
$(".search-con2").show();
$(".tag-con").hide();
$(".goods-list").hide();
});
/**
* 搜索标签按钮
* 1、默认情况
* 2、输入关键字
* 3、输入skn
*/
$(document).on("click", "#search-tag", function () {
Bll.sorts = [
{tagName: 'colorName', list: []},
{tagName: 'stylename', list: []},
{tagName: 'sortName', list: []},
{tagName: 'brand_name', list: []},
{tagName: 'gendername', list: []}
];
$(".tag-con").show();
$(".tag-con .sort").hide();
$(".orther").html(common.util.__template2($("#sorts-template").html(), {
colors: Bll2.colors,
//todo 风格暂时无数据
styles: Bll2.styles,
sorts: Bll2.sorts,
brands: Bll.Brands,
brands1: Bll.Brands[0],
genders: Bll2.genders
}));
if ($("#tags").val() !== "") {
var txt = $("#tags").val();
Bll2.reg(txt, Bll2.colors, "colorName");
//todo 风格暂时无数据
Bll2.reg(txt, Bll2.styles, "stylename");
Bll2.reg(txt, Bll2.sorts, "sortName");
Bll2.reg(txt, Bll2.genders, "gendername");
$(".orther").html(common.util.__template2($("#sorts-template").html(), {
colors: Bll.searchSorts[0].list.length == 0 ? Bll2.colors : Bll.searchSorts[0].list,
//todo 风格暂时无数据
styles: Bll.searchSorts[1].list.length == 0 ? Bll2.styles : Bll.searchSorts[1].list,
sorts: Bll.searchSorts[2].list.length == 0 ? Bll2.sorts : Bll.searchSorts[2].list,
brands: Bll.Brands,
brands1: Bll.Brands[0],
genders: Bll.searchSorts[3].list.length == 0 ? Bll2.genders : Bll.searchSorts[3].list
}));
Bll.searchSorts = [];
}
if ($("#skns2").val() !== "") {
var sknTxt = $("#skns2").val();
common.util.__ajax({
async: false,
url: "/yohosearch/search",
data: {
status: 1,
sales: "Y",
stocknumber: "1",
attribute_not: "2",
query: sknTxt
}
}, function (res) {
Bll.searchSkn = res.data.list;
}, true);
var Arrlist = [
{tagName: 'colorName', list: []},
{tagName: 'stylename', list: []},
{tagName: 'sortName', list: []},
{tagName: 'brand_name', list: []},
{tagName: 'gendername', list: []}
];
//todo 风格无数据
for (var i = 0; i < Bll.searchSkn.length; i++) {
var sortname = "";
for (var j = 0; j < Bll2.sorts.length; j++) {
if (Bll2.sorts[j].id == Bll.searchSkn[i].max_sort_id) {
sortname = Bll2.sorts[j].sortName;
}
}
var colorObj = {
id: Bll.searchSkn[i].color_id,
name: Bll.searchSkn[i].color_name
};
var genderObj = {
id: Bll.searchSkn[i].gender,
name: Bll2.genders[Bll.searchSkn[i].gender - 1].gendername
};
var sortObj = {
id: Bll.searchSkn[i].max_sort_id,
name: sortname
};
Arrlist[0].list.push(colorObj);
Arrlist[2].list.push(sortObj);
Arrlist[4].list.push(genderObj);
}
$(".orther").html(common.util.__template2($("#sorts-template").html(), {
colors: Arrlist[0].list.length == 0 ? Bll2.colors : Unique(Arrlist[0].list, "id"),
//todo 风格暂时无数据
styles: Bll2.styles,
sorts: Arrlist[2].list.length == 0 ? Bll2.sorts : Unique(Arrlist[2].list, "id"),
brands: Bll.Brands,
brands1: Bll.Brands[0],
genders: Arrlist[4].list.length == 0 ? Bll2.genders : Unique(Arrlist[4].list, "id")
}));
}
});
/**
* 标签搜索中 “搜索商品”按钮
*/
$(document).on("click", "#search2", function () {
$(".goods-list").show();
goodsgird.init('/yohosearch/search');
});
/**
* 价格筛选
*/
$(document).on("click", "#price-search", function () {
goodsgird.init('/yohosearch/search');
});
/**
* 点击更多品牌
*/
//todo 勾选项展开后仍然勾选
$(document).on("click", ".brandMore", function () {
var brandShow = $(this).parent().find(".brandShow");
var brandHide = $(this).parent().find(".brandHide");
var i = 0;
var brandId = "";
if ($(this).hasClass('open')) {
$(this).removeClass("open").find('a').text("更多");
brandHide.hide();
brandShow.show();
for (i = 0; i < Bll.sorts[3].list.length; i++) {
brandId = "brandId_" + Bll.sorts[3].list[i].id;
$("input." + brandId).attr("checked", "checked");
}
} else {
$(this).addClass("open").find('a').text("收起");
brandHide.show();
brandShow.hide();
$("#all .form-group").show();
for (i = 0; i < Bll.sorts[3].list.length; i++) {
brandId = "brandId_" + Bll.sorts[3].list[i].id;
$("input." + brandId).attr("checked", "checked");
}
}
});
/**
* 点击"more"
*/
$(document).on("click", ".more", function () {
var _show = $(this).parent().find("._show");
//如果已经打开
if ($(this).hasClass('open')) {
$(this).removeClass("open").find('a').text("更多");
_show.find(".form-group:gt(4)").addClass('hide');
} else {
$(this).addClass("open").find('a').text("收起");
_show.find(".form-group").removeClass('hide');
}
});
//勾选标签
$(document).on("click", ".changeCheck", function () {
var name = $(this).attr('name');
if ($(this).is(':checked')) {
for (var i = 0; i < Bll.sorts.length; i++) {
if (Bll.sorts[i].tagName == name) {
Bll.sorts[i].list.push({id: $(this).val(), name: $(this).data('val')})
}
}
}
else {
for (var j = 0; j < Bll.sorts.length; j++) {
if (Bll.sorts[j].tagName == name) {
for (var k = 0; k < Bll.sorts[j].list.length; k++) {
if (Bll.sorts[j].list[k].id == $(this).val()) {
Bll.sorts[j].list.splice(k, 1);
}
}
}
}
}
$(".sort").show();
Bll.__render(".sort", "tag-template", {
sorts: Bll.sorts
});
});
/**
* 单击单个已选标签,删除
*/
$(document).on("click", ".tag1 a", function () {
var i = 0;
var name = $(this).attr('name');//属于哪一类 name
var index = $(this).data('val');//属于哪一类 index
var id = $(this).data('field');//当前项的id
for (i = 0; i < Bll.sorts.length; i++) {
if (Bll.sorts[i].tagName == name) {
Bll.sorts[i].list.splice($(this).data("index"), 1);
}
}
switch (index) {
case 0:
for (i = 0; i < colors.length; i++) {
if (colors[i].id == id) {
$("input[name='colorName'][value='" + id + "']").removeAttr("checked");
}
}
break;
//todo 风格暂时无数据
case 1:
for (i = 0; i < styles.length; i++) {
if (styles[i].id == id) {
$("input[name='stylename'][value='" + id + "']").removeAttr("checked");
}
}
break;
case 2:
for (i = 0; i < sorts.length; i++) {
if (sorts[i].id == id) {
$("input[name='sortName'][value='" + id + "']").removeAttr("checked");
}
}
break;
//todo 品牌
case 3:
for (i = 0; i < Bll.Brands.length; i++) {
for (var j = 0; j < Bll.Brands[i].items.length; j++) {
if (Bll.Brands[i].items[j].id == id) {
$("input[name='brand_name'][value='" + id + "']").removeAttr("checked");
}
}
}
break;
case 4:
for (i = 0; i < genders.length; i++) {
if (genders[i].id == id) {
$("input[name='gendername'][value='" + id + "']").removeAttr("checked");
}
}
break;
}
Bll.__render(".sort", "tag-template", {
sorts: Bll.sorts
});
return false;
});
/**
* 搜索品牌输入框
*/
$(document).on("keyup", "#brandsearch1", function () {
var txt = $(this).val();
$("#all .form-group").hide();
var list = $("#all .form-group");
for (var i = 0; i < list.length; i++) {
var value = $(list[i]).find('input').data("val");
if (value.indexOf(txt) > -1) {
$(list[i]).show();
}
}
});
/*点击品牌切换*/
$(document).on('click', '.brand-index1', function () {
var brandIndex = $(this).text();
$("#brandsearch1").val("");
$("#all .form-group").hide();
$('#all').find('[name="' + brandIndex + '"]').show();
});
/** 点击设置时间 */
$(document).on('click', '.set_show_time', function () {
var $thiz = $(this).parent();
if ($thiz.next().hasClass("show_time_input")) {
delete Bll.module.contentData["begin_show_time"];
delete Bll.module.contentData["end_show_time"];
$(this).html("设置展示时间");
$thiz.next().remove();
} else {
$(this).html("删除展示时间");
var html = common.util.__template2($("#set_show_time_template").html(), {});
$thiz.after(html);
$('.hasDatepicker').fdatepicker({
format: 'yyyy-mm-dd hh:ii:ss',
pickTime: true
});
}
});
//$(document).on("focus", "#brandsearch", function () {
// $('.brand-wrap').find('[name="brandsearch"]').show().siblings().hide();
//});
$(document).on("keyup", "#brandsearch", function () {
$('.brand-wrap').find('[name="brandsearch"]').show().siblings().hide();
var txt = $(this).val().toLocaleLowerCase();
var regex = new RegExp(txt);
var bs = [];
Bll.Brands.forEach(function (brands) {
brands.items.forEach(function (item) {
if (regex.test(item.brand_name.toLocaleLowerCase())) {
bs.push('<a class="btn"><input type="checkbox" value="' + item.id + '" name="brandCheckBox"><label>' + item.brand_name + '</label></a>');
}
});
});
$("#brandsearchwrap").html(bs.join(''));
var e = new common.edit("#brandForm");
e.init();
});
/****************************************************************************************************/
//输入限制
$(document).on("keyup", ".number", function() {
$(this).val($(this).val().replace(/\D/g, ''));
});
//双击弹窗
$(document).on("dblclick","#add-content>li.custom-group",function(){
$(this).find(".edit").click();
});
/*上传多张图片*/
$(document).on("click", "#batchAddImage", function () {
Bll.moduleimgs.length = 0;
var components1 = new common.components("#moduleimgs", {
bucket: "yhb-img01"
});
new common.dialog({
title: "添加多张图片",
content: common.util.__template2($("#template-batchAddImage").html(), {}),
width: '80%',
button: [{
value: "确定",
callback: function () {
if (Bll.module.contentData.template_name == "NL2R") {
//多张
Bll.module.contentData.data.left.length = 0;
Bll.moduleimgs.forEach(function (item, index) {
Bll.module.contentData.data.left[index]= $.extend(true, {},addObj["NL2R_left"]);
Bll.module.contentData.data.left[index].src = item;
});
}
Bll.renderDialog("NL2R-template");
//console.log(Bll.module.contentData.data);
},
css: "btn-primary"
}]
});
components1.init();
components1.on("file_onComplete", function (obj) {
obj.datas.forEach(function (item) {
Bll.moduleimgs.push(item);
});
Bll.__render("#moduleimgs", "template-batchAddImage", {datas: Bll.moduleimgs});
console.log(Bll.moduleimgs);
components1.init();
});
});
// 选择设置作用的频道范围
$(document).on("change", "#scope-select", function() {
var scope = $("#scope-select").val();
Bll.module.contentData.data.scope = scope;
// 切换频道信息,如果是"所有频道首页通用",则设置为"general";如果是"不同频道首页分别配置", 则默认设置为"boy"
var channel;
if(scope == '0') {
channel = 'general';
} else {
channel = 'boy';
}
Bll.module.contentData.data.channel = channel;
Bll.renderDialog("rollingOverSlider-template");
});
// 切换频道Tab页
$(document).on("click", ".channelLi a", function() {
// 切换tab前,先做合法性校验,保证每个频道的数据是合法的
if(edit.validate()) {
// 获取频道信息
var channel = $(this).data("channel");
Bll.module.contentData.data.channel = channel;
// 重新渲染对话框
Bll.renderDialog("rollingOverSlider-template");
chooseChannelActive(channel);
}
});
function chooseChannelActive(channel) {
$(".channelLi").removeClass("active");
$(".channelLi a").each(function(index) {
if($(this).data("channel") == channel) {
$(this).parent().addClass("active");
}
});
}
function updateRollingOverPublishTime(resource) {
var count = 0;
var publishTime = resource.resource.publishTime;
$.each(resource.contentData, function(index, item) {
var contentData = item.contentData;
if((typeof contentData) == 'string') {
contentData = JSON.parse(contentData);
}
var templateName = contentData.template_name;
if(templateName == 'rollingOverSlider') {
var endTimeStr = contentData.data.end_time;
if(dateStrToSeconds(endTimeStr) <= publishTime) {
count++;
}
}
});
return count;
}
function validateRollingOverContent(data) {
var channelArr = ['boy', 'girl', 'kids', 'lifestyle'];
var channelMap = {'boy': '男生', 'girl': '女生', 'kids': '潮童', 'lifestyle': '创意生活'};
var errArr = [];
if(data.scope == '1') {
$.each(channelArr, function(index, _channel) {
var contentData = data[_channel];
var errUrl = 0;
if($.isArray(contentData)) {
$.each(contentData, function(_index, item) {
if(item && !($.trim(item.url))) {
errUrl++;
}
});
}
if(errUrl > 0) {
errArr.push(channelMap[_channel]);
}
});
}
return errArr;
}
//切换好店推荐div是否展示
function changeShopRecommendDivShow(shopRecommendFlag){
if(shopRecommendFlag=='Y'){
$("#shopBaseTip").css('display','none');
$("#shopRecommendTip").css('display','block');
$("#shopBaseDiv").css('display','none');
$("#shopRecommendDiv").css('display','block');
}else if(shopRecommendFlag=='N'){
//切换到基础
$("#shopBaseTip").css('display','block');
$("#shopRecommendTip").css('display','none');
$("#shopBaseDiv").css('display','block');
$("#shopRecommendDiv").css('display','none');
}
}