ContentManage.js
105 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
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
var $ = require('jquery'),
common = require('../../../common/common');
var originButton = require('./../partials/Button1');
var resourceObj = require('./../partials/resourceObj');
var Validate = require('./../partials/Validate1');
var addObj = require('./../partials/addObj');
require('../../../common/util/datepicker');
var Button = [];
/*获取数据*/
var resources = [];
var times = [];
var currIndex = 0;
var lockStatus = 0;
var httpsEnable;
//领券中心资源位楼层不多于200个
var couponCodes = ['bb7268bd46dd46d304c2917309814681','b78b32ed81b18dde8ac84fd33602b88b','78091f692b4867b4d03b32ab98d81f65','74481d2ee61ca6460b0d06e34ac65e5c','beec6587776887eccc8ed09038434e0c'];
var code;
//资源id
var param = location.href.substring(location.href.lastIndexOf("/") + 1);
if(param==0){
code = location.href.substring(location.href.lastIndexOf("code_")+5,location.href.lastIndexOf("platform_")-1);
}else if(param.indexOf("#")!=-1){
param = param.substring(0,param.length-1);
console.log("param=====",param);
}
//0:查看1:编辑
var lock_type = location.href.substring(location.href.lastIndexOf("/")-1,location.href.lastIndexOf("/"));
//平台名称 web,h5,app...
var platformName = location.href.substring(location.href.lastIndexOf("platform_")+9,location.href.lastIndexOf("/t_"));
if(param!=0){
common.util.__ajax({
url: "/resources/resContentIndex",
data: {id: param},
async: false
}, function (res) {
resources = res.data.resources;
httpsEnable = res.data.httpsEnable;
code = resources[0].resource.code;
console.log(resources);
}, true);
}else{
common.util.__ajax({
url: "/resources/resContentIndexByCode",
data: {code: code},
async: false
}, function (res) {
resources = res.data.resources;
httpsEnable = res.data.httpsEnable;
param = res.data.resourceId;
}, true);
}
for(var i = 0; i < originButton.length; i++) {
var val = originButton[i];
Button.push(val);
}
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;
}
// 通用楼层检查
if (module.contentData.template_name == 'floorMark'){
if (module.contentData.floorCategory =='-1'){
common.util.__tip('楼层分类不能为空!', 'warning');
return false;
}
// 楼层分类 不能选择 订单
if (module.contentData.floorCategory =='3'){
common.util.__tip('楼层分类不能是订单!', 'warning');
return false;
}
}
// 新商品列表
if (module.contentData.template_name == 'newProductListMerge'){
// 检查推荐逻辑格式是否正确
if (module.contentData.data.recommendLogic !=''){
try{
JSON.parse(module.contentData.data.recommendLogic)
}catch(err){
common.util.__tip('推荐逻辑json格式不正确!', 'warning');
return false;
}
}
// 自动切换 优先skns和poolIds中的逗号
var skns = module.contentData.data.skns;
if (skns != ''){
module.contentData.data.skns = skns.replace(',',',');
}
}
// 单列商品
if (module.contentData.template_name == 'singleColumnProduct'){
// 检查推荐逻辑格式是否正确
if (module.contentData.data.recommendLogic !=''){
try{
JSON.parse(module.contentData.data.recommendLogic)
}catch(err){
common.util.__tip('推荐逻辑json格式不正确!', 'warning');
return false;
}
}
// 自动切换 优先skns和poolIds中的逗号
var skns = module.contentData.data.recommendSkns;
if (skns != ''){
module.contentData.data.recommendSkns = skns.replace(',',',');
}
}
// 对均分图片轮播图做检查 TODO
// 1.同一组链接数量必须一致 2.一组中必须有至少一个图片 3.一组的链接数量必须等于rows*columns
if (module.contentData.template_name == 'splitJointImgBanner'){
var rows = module.contentData.img_rows;
var columns = module.contentData.img_columns;
if (!$.isNumeric(rows) || !$.isNumeric(columns)){
common.util.__tip('行列必须为数字!', 'warning');
return false;
}
var num = rows * columns;
if(module.contentData.data) {
var isGroupNull = false;
var groupNumMap = {};
var groupSrcMap = {};
module.contentData.data.forEach(function (item, i) {
// 分组不能为空
if(item.group==''){
isGroupNull = true;
}else{
// groupNumMap Key=分组, value=数量
if (groupNumMap.hasOwnProperty(item.group)){
groupNumMap[item.group] = groupNumMap[item.group]+1;
}else{
groupNumMap[item.group] = 1;
}
// key=分组,value=图片
if (groupSrcMap[item.group]==null && item.src!="" ){
groupSrcMap[item.group] = item.src;
}
}
});
if (isGroupNull){
common.util.__tip('分组不能为空!', 'warning');
return false;
}
var isErrorNum = false;
var isErrorSrc = false;
// 检查分组中的链接数必须是一样的
$.each(groupNumMap, function(key, value){
if (value != num){
isErrorNum = true;
}
if (groupSrcMap[key]==null){
isErrorSrc = true;
}
});
if (isErrorNum){
common.util.__tip('分组的链接数量不一致or和填写的行列不一致,请检查!', 'warning');
return false;
}
if (isErrorSrc){
common.util.__tip('一个分组中至少有一个有图片,请检查!', 'warning');
return false;
}
}
}
// // 新图片列表
// if(module.contentData.template_name == 'imageListFloor'){
// module.contentData.data.imageRatio='0';
// }
if (module.contentData.template_name == 'imageListBanner'){
if(module.contentData.data.list) {
var isGroupNull = false;
module.contentData.data.list.forEach(function (item, i) {
if(item.alt==''){
isGroupNull = true;
}
});
if (isGroupNull){
common.util.__tip('分组不能为空!', 'warning');
return false;
}
}
}
if (module.contentData.template_name == 'category'){
if(module.contentData.data) {
var isImgNull = false;
module.contentData.data.forEach(function (item, i) {
// 对有的skn做一个trim处理
if(item.skn!=''){
item.skn = item.skn.trim();
}
if(item.src=='' && item.skn==''){
isImgNull = true;
}
});
if (isImgNull){
common.util.__tip('图片或者skn不能同时为空!', 'warning');
return false;
}
}
}
// 拼团商品列表
if (module.contentData.template_name == 'collageBuyPrdList'){
if(module.contentData.data.layout_float=='C'){
module.contentData.data.activityId='';
}
}
// 猜你喜欢(当数据来源是男与女的时候,tab名称必填)
if (module.contentData.template_name == 'guessLike'){
if(module.contentData.data) {
var isTabNameNull = false;
// 检查推荐逻辑格式是否正确
module.contentData.data.forEach(function (item, i) {
const query = item.query;
if (query !='' && /^{.*/.test(query)){
try{
JSON.parse(query)
}catch(err){
common.util.__tip('tab参数json格式不正确!', 'warning');
return false;
}
}
if(item.preferChannel=='1' || item.preferChannel=='2'){
if(item.tab_name==''){
isTabNameNull = true;
}
}
});
if (isTabNameNull){
common.util.__tip('tab名称不能为空!', 'warning');
return false;
}
}
}
//人气单品
if(module.contentData.template_name == 'popularListFloor'){
if(module.contentData.data.dataSource=='1'){
module.contentData.data.activityId='';
}
}
//店铺列表
if(module.contentData.template_name == 'shopListFloor'){
if(module.contentData.data.shopSource=='2'){
module.contentData.data.shopIds='';
}else{
module.contentData.data.recommendChannel='';
}
}
if(module.contentData.template_name == 'blkNewProductFloor'){
if(module.contentData.data.productType_1==''&&module.contentData.data.productType_2==''&&module.contentData.data.productType_3==''){
common.util.__tip('商品属性不能为空!', 'warning');
return false;
}
if(module.contentData.data.title==''){
common.util.__tip('楼层名称不能为空!', 'warning');
return false;
}
if(module.contentData.data.channel==''|| module.contentData.data.channel=='-1'){
common.util.__tip('频道不能为空!', 'warning');
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);
new common.dropDown({el: ".smallSortList"});
new common.dropDown({
el: ".shopsId"
});
},
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) {
if(templater == 'lottiefiles-template'){
edit = new common.edit2(".modal-body", {
bucket: "yohobuyzip"
});
}
edit.init();
//店铺列表、新图片列表支持拖拽
var shopListAppend='';
if(templater=='shopFloor-template'||templater=='imageListFloor-template'){
shopListAppend='.list';
}
$('.draggable').each(function () {
if ($(this).children().length) {
$(this).mysortable().bind('sortupdate', function () {
var fn = new Function("Bll", "return Bll.module.contentData." + $(this).data("array")+shopListAppend);
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") +shopListAppend+ "=arr2");
fn1(Bll, arr2);
}
Bll.renderDialog(templater);
})
}
});
edit.on("file_onComplete", function (obj) {
console.log(obj);
var names = obj.field;
console.log(names);
var template_name=Bll.module.contentData.template_name;
if(template_name =="lottiefiles"){
LottiefilesView.fillCopyView(obj.data);
}
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;
});
});
$('.hasDatepickerPlat').datetimepicker({
timeFormat: 'HH:mm:ss',
showSecond: 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 if(Bll.module.contentData.template_name == "appHotBrands"||Bll.module.contentData.template_name == "customBrands"){
pic = {
"src": Brands2[i].brandIco,
"id": Brands2[i].id,
"name": Brands2[i].brand_name,
"url": {
"action": "",
"url": ""
}
};
}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");
}
};
window.Bll = Bll;
//初始化时间
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(".contents2", "template_content_btns2", {btns2:Button2});
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]});
/*第四部 操作按钮 添加 删除 修改*/
var Button_content = originButton;
$(document).on("click", ".add_btn", function () {
var item = Button_content[$(this).data("index")];
Bll.module = {};
Bll.module.contentData = $.extend(true, {}, item);
Bll.toast(-1, Bll.module);
});
//$(document).on("click",".showDivide",function(){
// var $showDivide = $(this);
// if()
// })
$(document).on("change", ".observe2", function () {
var $this = $(this);
var index = $this.data("index");
var name = $this.data("field");
Bll.module.contentData.data[index].secList = common.util.__buildobj(name, '.', Bll.module.contentData.data[index].secList, function (obj, name) {
obj[name] = $this.val();
});
});
$(document).on("change", ".change-toggle-show", function () {
var $this = $(this);
var changeValue = $this.val();
var $toggleRoot = $this.closest('.change-toggle-root');
var toggle = $this.data('toggle') || '';
var toggleClass;
$this.parent().parent().parent().find('.queryParam').val('');
$('.recommend-product').val('')
$('.recommend-param').val('')
toggle = toggle.split('|');
toggle.forEach(function(val) {
var list = val.split('::');
if (changeValue && list[0] === changeValue) {
$toggleRoot.find('.' + list[1]).show();
} else {
$toggleRoot.find('.' + list[1]).hide();
}
});
});
/**
* 绑定监听,输入数据必须是key1=value2&key2=value2的数据
*/
$(document).on("change", ".queryParam", function () {
var $this = $(this);
var queryStr = $this.val();
var queryArray = queryStr.split('&');
if(queryStr && /^{/.test(queryStr)) {
if(!/^{.*}$/gi.test(queryStr)) {
common.util.__tip("输入数据不合法!", "warning");
return;
}else{
return
}
}
for (var i=0 ; i< queryArray.length; i++){
var kvs = queryArray[i].split('=');
if (kvs.length != 2){
common.util.__tip("输入数据不合法!", "warning");
return;
}
}
});
/*第五步 绑定监听事件*/
$(document).on("change", ".observe", function () {
var $this = $(this);
/**
* 非pc端对链接进行限制,必须以https开头(placeholder包含url、链接、地址这些关键字)
* 限制条件:1、httpsEnable=true
*/
var urlName = $this.attr("placeholder");
//如果属性不存在,会报错
if(typeof (urlName) !='undefined'){
if(platformName.toLocaleLowerCase().indexOf("web")==-1&&httpsEnable=='true'){
if(urlName.indexOf("url")!=-1||urlName.indexOf("链接")!=-1||urlName.indexOf("地址")!=-1){
var urlVal = $this.val();
if(urlVal.toLowerCase().indexOf("https")!=0){
common.util.__tip("url必须以https开头!", "warning");
$this.val('');
}
//规定填写url数据格式,不符合则清空
// if(urlVal.indexOf('yohoblk.com') == -1&&urlVal.indexOf('yohobuy.com') == -1 && urlVal.indexOf('yoho.cn') == -1 && urlVal.indexOf('yhbimg.com') == -1){
// common.util.__tip('url一级域名必须是"yohoblk.com"或者"yohobuy.com"或者"yoho.cn"或者"yhbimg.com"的内网地址,请确认!',"warning");
// $this.val('');
// }
}
}
}
//showDivide check事件
var name = $this.data("field");
if(name.indexOf("showDivide")>-1||name.indexOf("isShowLocation")>-1||name.indexOf("isFocusRec")>-1){
if($this.is(':checked')){
$this.val('1');
}else{
$this.val('0');
}
}
// 以 .. 开头的,赋值到 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];
if(item.contentData.template_name=='shopRecommend'){
var list = item.contentData.data.list;
for(var i = 0; i < list.length; i++) {
if(typeof(list[i].goods2) == 'undefined'){
var goods2 = {
"src":"",
"url":{
"url":"",
"action":""
}
};
list[i].goods2 = goods2;
}
}
Bll.module = $.extend(true, {}, item);
Bll.renderDialog("shopRecommend-template");
Bll.toast(index, Bll.module);
var _shopRecommendFlag = item.contentData.isShopRecommend==''?"N":item.contentData.isShopRecommend;
changeShopRecommendDivShow(_shopRecommendFlag);
}else if(item.contentData.template_name=='appHotBrands'||item.contentData.template_name=='customBrands'){
//热门品牌兼容老版本,url设置空值
var list = item.contentData.data.list;
for(var i=0;i<list.length;i++){
if(typeof(list[i].url) == 'undefined') {
var url = {
"action": "",
"url": ""
};
list[i].url = url;
}
}
Bll.module = $.extend(true, {}, item);
Bll.renderDialog("brands-template");
Bll.toast(index, Bll.module);
}else if(item.contentData.template_name=='recommendContentFive'){
var more_ = item.contentData.data.more;
if(typeof more_== 'undefined'){
item.contentData.data.more={
"more_type":"",
"more_name":"",
"src":"",
"url":{
"action": "",
"url": ""
}
};
}
Bll.module = $.extend(true, {}, item);
Bll.renderDialog("recommendContentFive-template");
Bll.toast(index, Bll.module);
}else if(item.contentData.template_name=='guangRqFloor'){
var more_ = item.contentData.data.more;
Bll.module = $.extend(true, {}, item);
Bll.renderDialog("guangRqFloor-template");
Bll.toast(index, Bll.module);
}else if(item.contentData.template_name =='divideImage'){
if (item.contentData.data.length!=0 && item.contentData.data[0].src!=''){
item.contentData.isDefault = '2'; //自定义
item.contentData.divideColour = '2'; // 切换的时候默认灰色
}
Bll.module = $.extend(true, {}, item);
Bll.renderDialog("divideImage-template");
Bll.toast(index, Bll.module);
}
else{
Bll.module = $.extend(true, {}, item);
Bll.toast(index, Bll.module);
}
});
/*根据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;
}
var item = addObj[arr.join("_")];
// 对于拼接图片的楼层,增加的图片默认有图片
if (arr[0] == 'splitJointImg'){
if (Bll.module.contentData.data.length >= 1){
if (Bll.module.contentData.data[0].src == ''){
common.util.__tip("请给第一行上传图片", "warning");
return;
}else{
item.src = Bll.module.contentData.data[0].src;
}
}
}
Bll.module.contentData.data.push(item);
} else {
if (Bll.module.contentData.data[arr[1]].length >= length) {
common.util.__tip("最多" + length + "条!", "warning");
return;
}
if(Bll.module.contentData.template_name == 'hotCategoryIndividualization'){
if(! Bll.module.contentData.data.list||! $.isArray(Bll.module.contentData.data.list)){
Bll.module.contentData.data.list = new Array();
}
Bll.module.contentData.data.list.push({
"sort": "",
"posNum": ""
});
}else{
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);
}
}
new common.dropDown({el: ".smallSortList"});
/*下拉选择*/
new common.dropDown({
el: ".shopsId"
});
});
$(document).on("click",".addSecBtn",function(){
//获得index
var index = $(this).data("index");
Bll.module.contentData.data[index].secList.push(addObj["textNavSec_data"]);
Bll.renderDialog("textNav-template");
});
$(document).on("click",".goResourceContent",function(){
var index = $(this).data("index");
var obj;
for(i=0;i<Bll.module.contentData.data.list.length;i++){
if(index==i){
obj = Bll.module.contentData.data.list[i];
break;
}
}
var indexCode = obj.code;
var indexUrl = "/resource/content/index/code_"+indexCode+"/platform_app/t_1/0";
code = indexCode;
window.open(indexUrl);
});
/*删除图片*/
$(document).on("click", ".delBtnFile", function () {
var arr = $(this).data("event").split(".");
Bll.module.contentData.data.bgSrc='';
Bll.renderDialog(arr[0] + "-template");
});
/*列表中删除图片*/
$(document).on("click", ".delBtnFileList", function () {
var arr = $(this).data("event").split(".");
var index = $(this).data("index");
if (Bll.module.contentData.data){
if (Bll.module.contentData.data[index].selectedBgSrc){
Bll.module.contentData.data[index].selectedBgSrc='';
}
if (Bll.module.contentData.data[index].noSelectedBgSrc){
Bll.module.contentData.data[index].noSelectedBgSrc='';
}
}
if (Bll.module.contentData.data){
if (Bll.module.contentData.data[index].img){
Bll.module.contentData.data[index].img='';
}
if (Bll.module.contentData.data[index].src){
Bll.module.contentData.data[index].src='';
}
}
Bll.renderDialog(arr[0] + "-template");
});
/*列表中删除图片*/
$(document).on("click", ".delBtnFileListImg", function () {
var arr = $(this).data("event").split(".");
var index = $(this).data("index");
var key = $(this).data("key") || 'img';
if (Bll.module.contentData.data){
if (Bll.module.contentData.data[index][key]){
Bll.module.contentData.data[index][key]='';
}
}
Bll.renderDialog(arr[0] + "-template");
});
/*删除行*/
$(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);
}
}
new common.dropDown({el: ".smallSortList"});
new common.dropDown({
el: ".shopsId"
});
});
$(document).on("click", ".delBtn2", function () {
//textNav-data index
var index = $(this).data("index");
//secList index
var idx = $(this).data("idx");
Bll.module.contentData.data[index].secList.splice(idx, 1);
Bll.renderDialog("textNav-template");
});
//输入领券码验证
$(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("change", '#guangType', function () {
var _guangType = $(this).val();
if(_guangType=='3'){
Bll.module.contentData.data.dataSize = 4;
}else{
Bll.module.contentData.data.dataSize = 10;
}
Bll.renderDialog("guangRqFloor-template");
});
$(document).on("change", '#guangShowType', function () {
var _guangShowType = $(this).val();
Bll.module.contentData.data.guangShowType = _guangShowType;
Bll.renderDialog("guangShowOrderFloor-template");
});
//*****************************************************************//
//*****************************************************************//
/*好店推荐*/
$(document).on("click", '.isShopRecommend', function () {
var _isShopRecommend = $(this).val();
Bll.module.contentData.isShopRecommend = _isShopRecommend;
//Bll.renderDialog("shopRecommend-template");
//切换到推荐
changeShopRecommendDivShow(_isShopRecommend)
});
$(document).on("click", '.guangRqSource', function () {
var _guangRqSource = $(this).val();
Bll.module.contentData.data.guangRqSource = _guangRqSource;
//Bll.renderDialog("shopRecommend-template");
//切换到推荐
changeGuangRqDivShow(_guangRqSource)
});
//人气商品列表
$(document).on("click", '.dataSource', function () {
var _dataSource = $(this).val();
Bll.module.contentData.data.dataSource = _dataSource;
if(_dataSource=='2') {
$(".activityShow").css('display', 'block');
}else{
$(".activityShow").css('display', 'none');
}
});
// 新商品列表
$(document).on("click", '.dataSourceNewProduct', function () {
var _dataSource = $(this).val();
Bll.module.contentData.data.dataSource = _dataSource;
Bll.renderDialog("newProductListMerge-template");
});
// 拼团商品列表 列表展示方向发生变化,需要重新刷新页面
$(document).on("change", '.layout_float', function () {
var _layout_float = $(this).val();
Bll.module.contentData.data.layout_float = _layout_float;
Bll.renderDialog("collageBuyPrdList-template");
});
// 新商品列表
$(document).on("click", '.showName', function () {
var showName = $(this).val();
Bll.module.contentData.data.showName = showName;
});
// 新商品列表
$(document).on("click", '.linkType', function () {
var linkType = $(this).val();
Bll.module.contentData.data.linkType = linkType;
});
// 新商品列表
$(document).on("click", '.showPrice', function () {
if ($(this).is(":checked")){
Bll.module.contentData.data.showPrice = "1";
}else{
Bll.module.contentData.data.showPrice = "";
}
});
// 新图片列表滚动态
$(document).on("click", '.progressBar', function () {
if ($(this).is(":checked")){
Bll.module.contentData.data.progressBar = "1";
}else{
Bll.module.contentData.data.progressBar = "";
}
});
// 拼团商品列表
$(document).on("click", '.showProductName', function () {
if ($(this).is(":checked")){
Bll.module.contentData.data.showProductName = "1";
}else{
Bll.module.contentData.data.showProductName = "";
}
});
// 拼团商品列表
$(document).on("click", '.showGroupPrice', function () {
if ($(this).is(":checked")){
Bll.module.contentData.data.showGroupPrice = "1";
}else{
Bll.module.contentData.data.showGroupPrice = "";
}
});
// 拼团商品列表
$(document).on("click", '.showGroupNum', function () {
if ($(this).is(":checked")){
Bll.module.contentData.data.showGroupNum = "1";
}else{
Bll.module.contentData.data.showGroupNum = "";
}
});
//分隔图
$(document).on("click", '.isDefault', function () {
var isDefault = $(this).val();
Bll.module.contentData.isDefault = isDefault;
Bll.renderDialog("divideImage-template");
// 默认模式
if(isDefault=='1') {
$("#divideDefinedDiv").find("input[type=file]").removeAttr("required");
Bll.module.contentData.imageHeight = '';
Bll.module.contentData.imageWidth = '';
Bll.module.contentData.data =[{
"url": {
"action": "",
"url": ""
},
"alt": "",
"src": ""
}];
}
// 图片模式
else{
$("#divideDefinedDiv").find("input[type=file]").removeAttr("required");
$("#divideDefinedDiv").find("input[type=file]").attr("required", true);
}
});
// 分割图颜色
$(document).on("click", '.divideColour', function () {
var divideColour = $(this).val();
Bll.module.contentData.divideColour = divideColour;
});
//发现好货,人气商品列表 显示内容
$(document).on("click", '.display_type', function () {
var _display_type = $(this).val();
Bll.module.contentData.data.display_type = _display_type;
});
//发现好货,人气商品列表 跳转类型 url_type
$(document).on("click", '.url_type', function () {
var _url_type = $(this).val();
Bll.module.contentData.data.url_type = _url_type;
});
//店铺列表
$(document).on("click", '.shopSource', function () {
var _shopSource = $(this).val();
Bll.module.contentData.data.shopSource = _shopSource;
if(_shopSource=='1' || _shopSource == '4' || _shopSource=='3') {
$(".shopIdShow").css('display', 'block');
$(".recommendChannelShow").css('display', 'none');
}else{
$(".recommendChannelShow").css('display', 'block');
$(".shopIdShow").css('display', 'none');
}
});
/*添加推荐*/
$(document).on("click", '.more_type', function () {
var more_type = $(this).val();
Bll.module.contentData.data.more.more_type = more_type;
//切换到名称,去掉图片
if(more_type=='1'){
Bll.module.contentData.data.more.src = "";
}else{
Bll.module.contentData.data.more.more_name = "";
//切换到图标,去掉名称
}
Bll.renderDialog("recommendContentFive-template");
});
/*编辑推荐*/
$(document).on("click", '.recommend-more_type', function () {
var more_type = $(this).val();
Bll.module.contentData.data.more.more_type = more_type;
//切换到名称,去掉图片
if(more_type=='1'){
Bll.module.contentData.data.more.src = "";
}else{
Bll.module.contentData.data.more.more_name = "";
//切换到图标,去掉名称
}
Bll.renderDialog("editorRecommendFloor-template");
});
$(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", '#recommend-is_show', function () {
Bll.module.contentData.data.title.is_show = 1 - Bll.module.contentData.data.title.is_show;
Bll.renderDialog("editorRecommendFloor-template");
});
$(document).on("change", '#productType_1', function () {
if ($(this).is(':checked')) {
Bll.module.contentData.data.productType_1 = 1;
}else{
Bll.module.contentData.data.productType_1 = '';
}
Bll.renderDialog("blkNewProductFloor-template");
});
$(document).on("change", '#productType_2', function () {
if ($(this).is(':checked')) {
Bll.module.contentData.data.productType_2 = 1;
}else{
Bll.module.contentData.data.productType_2 = '';
}
Bll.renderDialog("blkNewProductFloor-template");
});
$(document).on("change", '#productType_3', function () {
if ($(this).is(':checked')) {
Bll.module.contentData.data.productType_3 = 1;
}else{
Bll.module.contentData.data.productType_3 = '';
}
Bll.renderDialog("blkNewProductFloor-template");
});
$(document).on("change", '#sysHelp', function () {
if ($(this).is(':checked')) {
Bll.module.contentData.data.sysHelp = 1;
}else{
Bll.module.contentData.data.sysHelp = '';
}
Bll.renderDialog("guangRqFloor-template");
});
$(document).on("change", '.is_show_secondFloor', function () {
Bll.module.contentData.data.is_show_secondFloor = $(this).val();
var beginTime = Bll.module.contentData.begin_show_time;
var endTime = Bll.module.contentData.end_show_time;
if ((Bll.module.contentData.begin_show_time)&&(beginTime.indexOf(":")==-1)) {
Bll.module.contentData.begin_show_time = secondsToStrDate(Bll.module.contentData.begin_show_time);
}
if ((Bll.module.contentData.end_show_time) && (endTime.indexOf(":")==-1)) {
Bll.module.contentData.end_show_time = secondsToStrDate(Bll.module.contentData.end_show_time);
}
Bll.renderDialog("secondFloor-template");
});
$(document).on("change", '.is_show_homeEntrance', function () {
var homeEntranceVal = $(this).val();
//"is_show_homeEntrance":"",
// "enterBtn":"",
// "exitBtn":"",
// "url": {
// "action": "",
// "url": ""
//}
Bll.module.contentData.data.is_show_homeEntrance = homeEntranceVal;
if(homeEntranceVal=='Y'&&(Bll.module.contentData.data.enterBtn==''||Bll.module.contentData.data.exitBtn==''||
Bll.module.contentData.data.url.url=='' ||Bll.module.contentData.data.url.action=='')){
common.util.__tip('所有图片和链接完全维护才能开启。', 'warning');
Bll.module.contentData.data.is_show_homeEntrance = 'N';
}
Bll.renderDialog("homeEntrance-template");
});
//*****************************************************************//
/*焦点图*/
$(document).on("change", '#focus-select', function () {
Bll.module.contentData.focus_type = $(this).val();
Bll.renderDialog("focus-template");
});
$(document).on("change", '#categoryType', function () {
Bll.module.contentData.categoryType = $(this).val();
});
$(document).on("change", '#version_control', function () {
Bll.module.contentData.version_control = $(this).val();
Bll.renderDialog("splitJointImg-template");
});
$(document).on("change", '#img_version_control', function () {
Bll.module.contentData.version_control = $(this).val();
Bll.renderDialog("imageListFloor-template");
});
$(document).on("change", '#floorContent', function () {
Bll.module.contentData.floorContent = $(this).val();
Bll.renderDialog("floorMark-template");
});
$(document).on("change", '#splitJoint_leave_blank', function () {
Bll.module.contentData.leave_blank = $(this).val();
Bll.renderDialog("splitJointImg-template");
});
$(document).on("change", '#banner_leave_blank', function () {
Bll.module.contentData.leave_blank = $(this).val();
Bll.renderDialog("splitJointImgBanner-template");
});
$(document).on("change", '#position-select', function () {
Bll.module.contentData.data.ufo_position = $(this).val();
Bll.renderDialog("cpsShowBanner-template");
});
$(document).on("change", '#isNewFocus', function () {
if ($(this).is(':checked')) {
Bll.module.contentData.isNewFocus = 1;
}else{
Bll.module.contentData.isNewFocus = 0;
}
Bll.renderDialog("focus-template");
});
$(document).on("change", '#focus_image_height', function () {
Bll.module.contentData.image_height = $(this).val();
Bll.renderDialog("focus-template");
});
$(document).on("change", '#focus_image_width', function () {
Bll.module.contentData.image_width = $(this).val();
Bll.renderDialog("focus-template");
});
$(document).on("change", '#img_height', function () {
Bll.module.contentData.img_height = $(this).val();
Bll.renderDialog("splitJointImgBanner-template");
});
$(document).on("change", '#img_width', function () {
Bll.module.contentData.img_width = $(this).val();
Bll.renderDialog("splitJointImgBanner-template");
});
$(document).on("change", '#floorCategory', function () {
Bll.module.contentData.floorCategory = $(this).val();
Bll.module.contentData.floorCategoryName = $(this).find("option:selected").text();
});
$(document).on("change", '#split_image_height', function () {
Bll.module.contentData.image_height = $(this).val();
Bll.renderDialog("splitJointImg-template");
});
// 均分图片轮播图是几行几列
$(document).on("change", '#img_rows', function () {
Bll.module.contentData.img_rows = $(this).val();
Bll.renderDialog("splitJointImgBanner-template");
});
// 均分图片轮播图是几行几列
$(document).on("change", '#img_columns', function () {
Bll.module.contentData.img_columns = $(this).val();
Bll.renderDialog("splitJointImgBanner-template");
});
$(document).on("change", '#split_image_width', function () {
Bll.module.contentData.image_width = $(this).val();
Bll.renderDialog("splitJointImg-template");
});
$(document).on("change", '#divide_imageWidth', function () {
Bll.module.contentData.imageWidth = $(this).val();
});
$(document).on("change", '#divide_imageHeight', function () {
Bll.module.contentData.imageHeight = $(this).val();
});
$(document).on("change", '#focus-select', function () {
Bll.module.contentData.focus_type = $(this).val();
Bll.renderDialog("focus-template");
});
$(document).on("change", '#after_app_version_682', function () {
if ($(this).is(':checked')) {
Bll.module.contentData.after_app_version_682 = 1;
}else{
Bll.module.contentData.after_app_version_682 = 0;
}
Bll.renderDialog("focus-template");
});
$(document).on("change", '#is_extend', function () {
if ($(this).is(':checked')) {
Bll.module.contentData.is_extend = 1;
}else{
Bll.module.contentData.is_extend = 0;
}
Bll.renderDialog("splitJointImg-template");
});
$(document).on("change", '#banner_is_extend', function () {
if ($(this).is(':checked')) {
Bll.module.contentData.is_extend = 1;
}else{
Bll.module.contentData.is_extend = 0;
}
Bll.renderDialog("splitJointImgBanner-template");
});
$(document).on("change", '#focus_is_extend', function () {
if ($(this).is(':checked')) {
Bll.module.contentData.is_extend = 1;
}else{
Bll.module.contentData.is_extend = 0;
}
Bll.renderDialog("focus-template");
});
$(document).on("change", '#isNewUserFloor', function () {
if ($(this).is(':checked')) {
Bll.module.contentData.isNewUserFloor = 1;
}else{
Bll.module.contentData.isNewUserFloor = 0;
}
Bll.renderDialog("newUserFloor-template");
});
$(document).on("change", '#isNewCategory', function () {
if ($(this).is(':checked')) {
Bll.module.contentData.isNewCategory = 1;
}else{
Bll.module.contentData.isNewCategory = 0;
}
Bll.renderDialog("recommendContentFive-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", '.is_show_name_bigDataHotBrand', function () {
Bll.module.contentData.data.is_show_name = $(this).val();
Bll.renderDialog("bigDataHotBrand-template");
});
//竖向轮播楼层
$(document).on("change", '.vertical-carousel-floor-style', function () {
var cols = +$(this).val();
Bll.module.contentData.data.floorStyle = cols + '';
if (Bll.module.contentData.data.list.length >= cols) {
Bll.module.contentData.data.list.length = +cols;
} else {
for (var i = Bll.module.contentData.data.list.length; i < cols; i++) {
Bll.module.contentData.data.list.push([{
url: {
action: '',
url: '',
alt: ''
},
src: ''
}]);
}
}
Bll.renderDialog('verticalCarousel-template');
}).on('click', '.vertical-carousel-add-image', function() {
var index = $(this).data('index');
var list = Bll.module.contentData.data.list[index];
if (list.length > 10) {
common.util.__tip('轮播图片不能超过10张!', 'warning');
} else if (list) {} {
list.push({
url: {
action: '',
url: '',
alt: ''
},
src: ''
});
}
Bll.renderDialog('verticalCarousel-template');
}).on('click', '.vertical-carousel-delete-image', function() {
var index = $(this).data('index');
index = index.split('_');
if (index[1] > -1) {
var list = Bll.module.contentData.data.list[index[0]];
list.splice(index[1], 1);
if (list.length === 0) {
list.push({
url: {
action: '',
url: '',
alt: ''
},
src: ''
});
}
}
Bll.renderDialog('verticalCarousel-template');
});
//图标入口 一行显示个数
$(document).on("click", '.icon-number', function () {
Bll.module.contentData.number = $(this).val();
Bll.renderDialog("icon-template");
});
//清空背景图片
$(document).on("click",".delBackImage",function(){
Bll.module.contentData.back_image = "";
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) {
if(window.location.href.indexOf("#")!=-1){
var url = window.location.href;
console.log("location.href===",url);
window.location.href = url.substring(0,url.length-1);
}else{
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) {
if(window.location.href.indexOf("#")!=-1){
var url = window.location.href;
console.log("location.href===",url);
window.location.href = url.substring(0,url.length-1);
}else{
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) {
if(window.location.href.indexOf("#")!=-1){
var url = window.location.href;
console.log("location.href===",url);
window.location.href = url.substring(0,url.length-1);
}else{
window.location.href = window.location.href;
}
});
});
});
$(document).on("click", '.priceStyle', function () {
Bll.module.contentData.data.priceStyle = $(this).val();
Bll.renderDialog("tfGoodsList-template");
});
$(document).on("click", '.showType', function () {
Bll.module.contentData.data.showType = $(this).val();
Bll.renderDialog("blkNewProductFloor-template");
});
$(document).on("click", '.jumpType', function () {
Bll.module.contentData.data.jumpType = $(this).val();
Bll.renderDialog("tfGoodsList-template");
});
/*保存事件*/
$(document).on("click", "#sub_btn", function () {
if(!checkLockStatus()){
return false;
}
var data = {
"content": {},
"data_id": {},
"rId": ""
};
if(couponCodes.indexOf(code)>-1&&Bll.contentDatas[currIndex].length>200){
console.log("领券中心楼层不超过200个",Bll.contentDatas[currIndex].length);
common.util.__tip("领券中心楼层不超过200个,当前楼层数:"+Bll.contentDatas[currIndex].length);
return false;
}
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) {
if(window.location.href.indexOf("#")!=-1){
var url = window.location.href;
console.log("location.href===",url);
window.location.href = url.substring(0,url.length-1);
}else{
window.location.href = window.location.href;
}
});
});
var addSuffix = function (contentData) {
if(contentData && contentData.template_name && contentData.template_name == "lottiefiles"){
return 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] = 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,
sales_price:item.sales_price,
product_name:item.product_name,
product_skn:item.product_skn
}
})
// 线上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);
$('.hasDatepickerPlat').datetimepicker({
timeFormat: 'HH:mm:ss',
showSecond: 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","#activityId",function(){
var reg = /^[0-9]+$/;
var txt = $(this).val();
if(!reg.test(txt)){
$(this).val("");
}
});
//双击弹窗
$(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');
}
}
//切换guang人气推荐
function changeGuangRqDivShow(guangFlag){
if(guangFlag=='1'){
$(".guangRqSysShow").css('display','block');
$(".guangRqPersonalShow").css('display','none');
}else if(guangFlag=='2'){
$(".guangRqPersonalShow").css('display','block');
$(".guangRqSysShow").css('display','none');
}
}
/*好店推荐*/
$(document).on("click", '.sceneNum', function () {
var sceneNum = $(this).val();
Bll.module.contentData.sceneNum = sceneNum;
//Bll.renderDialog("shopRecommend-template");
//切换到推荐
NewSingleImageShow.change(sceneNum);
});
var NewSingleImageShow={
_sceneNum : null,
preData : null,
change : function(_sceneNum){
var _g = this;
switch(_sceneNum){
case "0":
_g._sceneNum = 0;
Bll.module.contentData.data.sceneNum = 0;
_g.cleanTable();
Bll.module.contentData.data.list = [];
break;
case "2":
_g._sceneNum = 2;
Bll.module.contentData.data.sceneNum = 2;
_g.cleanTable();
Bll.module.contentData.data.list = [];
break;
case "1":
_g._sceneNum = 1;
Bll.module.contentData.data.sceneNum = 1;
_g.cleanTable();
Bll.module.contentData.data.list = [];
var vipLevels = [0,1,2,3];
vipLevels.forEach(function (ele, i) {
var cell = {vipLevel: ele};
Bll.module.contentData.data.list.push(cell);
});
break;
}
$("#newSingleImage-common").children().remove();
$("#newSingleImage-common").html(common.util.__template2($("#template-singleImg-vipLevel").html(), Bll.module));
Bll.renderDialog("newSingleImage-template");
},
cleanTable : function(){
var _g = this;
var $delBtns = $("#newSingleImage-common").find(".delBtn");
if($delBtns && $delBtns.length>0){
$.each($delBtns, function(i,elem){
_g.deleteSingleTr($(elem));
});
}
},
deleteSingleTr : function(_$tr){
var arr = _$tr.data("event").split(".");
var index = _$tr.data("index");
if (arr[1] == "data") {
Bll.module.contentData.data.splice(index, 1);
} else {
Bll.module.contentData.data[arr[1]].splice(index, 1);
}
}
}
var LottiefilesView = {
init : function(){
var _g = this;
$(document).on("click", "#copySrc", _g.copySrc);
$(document).on("click", "#delFile", _g.delFile);
},
copySrc:function () {
var url = $("#jsonConfigsrc");
url.select(); // 选择对象
document.execCommand("Copy"); // 执行浏览器复制命令
edit.$tip("链接已复制", function () {}, 'growl-success');
},
delFile : function(){
Bll.module.contentData.data.configUrl.src = "";
$("#delFile").closest("tr").find("input[name='file']").val("");
$("#jsonConfigsrc").val("");
},
fillCopyView :function(_url){
$("#jsonConfigsrc").val(_url);
}
}
LottiefilesView.init();
var BT = [];
BT.push({
"channel":"app",
"buttonNames":['splitJointImg','splitJointImgBanner','twoPicture','newSingleImage','imageListFloor','divideImage','floorMark','focus','newUserFloor','imageListBanner',
'guessLike','newProductListFloor','headChannelSwitch','category',
'popularListFloor','newProductListMerge','singleColumnProduct','findGoodsListFloor','recommendContentFive','limitSaleListFloor','editorTalk',
'shopActivityListFloor','shopFloor','tabFloor','textNav','tfGoodsList','recommendGoodsGroup','guangRqFloor','guangShowOrderFloor','timeImage', 'verticalCarousel']
});
BT.push({
"channel":"pc",
"buttonNames":['recommendContentThree','text','singleImage','smallPic','focus','addfloor','textNav','hotCategory','link','appIconList','goods']
});
BT.push({
"channel":"h5",
"buttonNames":['focus','appIconList','divideImage','singleImage','recommendContentFive','appHotBrands','popularSingleProduct','newUserFloor']
});
BT.push({
"channel":"miniapp",
"buttonNames":['focus','recommendContentFive','imageListFloor','newSingleImage','newProductListFloor','popularListFloor','splitJointImg','splitJointImgBanner']
});
BT.push({
"channel":"blk",
"buttonNames":['newSingleImage','blkNewProductFloor','twoPicture','focus','recommendContentFive','textNav','tfGoodsList','blkCategory']
});
$(document).on("click", ".button-type a", function() {
Button_content = [];
var channel = $(this).data("channel");
if(channel=='all'){
Button_content = originButton;
Bll.__render(".contents", "template_content_btns", {btns: originButton});
}else{
var buttonMap = {};
for(var t=0;t<originButton.length;t++){
buttonMap[originButton[t].template_name] = originButton[t];
}
for(var i = 0; i < BT.length; i++) {
if(BT[i].channel==channel){
var buttonNames = BT[i].buttonNames;
for(var j=0; j<buttonNames.length; j++){
if (buttonMap[buttonNames[j]] != null){
Button_content.push(buttonMap[buttonNames[j]]);
}
}
}
}
Bll.__render(".contents", "template_content_btns", {btns: Button_content});
}
$(".button-type").removeClass("active");
$(".button-type a").each(function(index) {
if($(this).data("channel") == channel) {
$(this).parent().addClass("active");
}
});
});