f8b675fdb373939f3ce7e4f3e53475df.php 111 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
<?php return function ($in, $debugopt = 1) {
    $cx = array(
        'flags' => array(
            'jstrue' => false,
            'jsobj' => false,
            'spvar' => true,
            'prop' => false,
            'method' => false,
            'mustlok' => true,
            'echo' => false,
            'debug' => $debugopt,
        ),
        'constants' => array(),
        'helpers' => array(),
        'blockhelpers' => array(),
        'hbhelpers' => array(),
        'partials' => array(),
        'scopes' => array(),
        'sp_vars' => array('root' => $in),
        'lcrun' => 'Plugin\LCRun3',

    );
    
    return ''.'<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="Cache-Control" content="no-siteapp" /> 
    <meta name="renderer" content="webkit">
    <meta name="keywords" content="'.Plugin\LCRun3::debug('[keywords]', 'encq', $cx, Plugin\LCRun3::debug('[keywords]', 'v', $cx, $in, array('keywords'))).'">
    <meta name="description" content="'.Plugin\LCRun3::debug('[description]', 'encq', $cx, Plugin\LCRun3::debug('[description]', 'v', $cx, $in, array('description'))).'">
    <title>'.Plugin\LCRun3::debug('[title]', 'encq', $cx, Plugin\LCRun3::debug('[title]', 'v', $cx, $in, array('title'))).'</title>
    <link rel="dns-prefetch" href="//cdn.yoho.cn">
    <link rel="dns-prefetch" href="//static.yohobuy.com">
    <link rel="dns-prefetch" href="//img10.static.yhbimg.com">
    <link rel="dns-prefetch" href="//img11.static.yhbimg.com">
    <link rel="dns-prefetch" href="//img12.static.yhbimg.com">
    <link rel="dns-prefetch" href="//img13.static.yhbimg.com">
'.Plugin\LCRun3::debug('if [rlsEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[rlsEnv]', 'v', $cx, $in, array('rlsEnv')), $in, function($cx, $in) {return '    <link rel="stylesheet" href="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/index.css">
';}).''.Plugin\LCRun3::debug('if [preEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[preEnv]', 'v', $cx, $in, array('preEnv')), $in, function($cx, $in) {return '    <link rel="stylesheet" href="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/index.css">
';}).''.Plugin\LCRun3::debug('if [testEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[testEnv]', 'v', $cx, $in, array('testEnv')), $in, function($cx, $in) {return '    <link rel="stylesheet" href="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/index.css">
';}).''.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '    <link rel="stylesheet" href="http://webstatic.dev.yohobuy.com/css/index.css">
';}).'</head>
<body>
'.''.Plugin\LCRun3::debug('[headerdata]', 'sec', $cx, Plugin\LCRun3::debug('[headerdata]', 'v', $cx, $in, array('headerdata')), $in, false, function($cx, $in) {return '    <div class="yoho-header">
        <div class="header-topwrapper clearfix">
            <div class="header-top">
                <div class="leftpart float-left">
                    <span class="icon-hamburger"></span>
                    <a href="http://www.yohobuy.com" class="header-yoho" >YOHO!有货</a>
                    <ul class="yohoproducts-list">
                        <li class="yohoproducts-item">
                            <a href="http://www.yoho.cn" class="yohogroup" en="YOHO!" cn="集团官网">YOHO!</a>
                        </li>
                        <li class="yohoproducts-item">
                            <a href="http://www.yohoboys.com" class="yohogroup" en="YOHO!BOYS" cn="男生潮流">YOHO!BOYS</a>
                        </li>
                        <li class="yohoproducts-item">
                            <a href="http://www.yohogirls.com" class="yohogroup" en="YOHO!GIRLS" cn="女生潮流">YOHO!GIRLS</a>
                        </li>
                        <li class="yohoproducts-item">
                            <a href="http://www.yohoshow.com" class="yohogroup" en="YOHO!SHOW" cn="物趣分享">YOHO!SHOW</a>
                        </li>
                        <li class="yohoproducts-item">
                            <a href="http://www.yohood.cn" class="yohogroup" en="YO\'HOOD" cn="潮流嘉年华">YO\'HOOD</a>
                        </li>
                    </ul>
                </div>
                <div class="rightpart">
                    <div id="loginBox" class="float-left">
                        <span class="hi">Hi~</span>
                        <a href="http://www.yohobuy.com/signin.html" class="loginbar">[请登录]</a>
                        <a href="http://www.yohobuy.com/reg.html" class="registbar">[免费注册]</a>
                    </div>
                    <div class="tag-list-wrapper">
                        <ul class="tag-list">
                            <li class="tag-item myyoho" id="myYohoBox">
                                <span class="tag-seprate"></span>
                                <a href="http://www.yohobuy.com/home?t=1453340799.4986">MY有货</a>
                                <span class="icon-bottomarrow"></span>
                                <div class="myyoho-info"></div>
                            </li>
                            <li class="tag-item myorder">
                                <span class="tag-seprate"></span>
                                <span class="icon-papers"></span>
                                <a href="http://www.yohobuy.com/home/orders?t=1453168898.0176">我的订单</a>
                            </li>
                            <li class="tag-item mycollect">
                                <span class="tag-seprate"></span>
                                <span class="icon-heart"></span>
                                <a href="http://www.yohobuy.com/home/favorite?t=1453168898.0176">我的收藏</a>
                            </li>
                            <li class="tag-item message">
                                <span class="tag-seprate"></span>
                                <span class="icon-mail"></span>
                                <a href="http://www.yohobuy.com/home/message?t=1453168898.0176">消息</a>
                            </li>
                            <li class="tag-item phone">
                                <span class="tag-seprate"></span>
                                <span class="icon-iphone"></span>
                                <a href="http://www.yohobuy.com/download/app">手机版</a>
                                <div class="qr">
                                    <div class="qr-img"></div>
                                    <h3 class="qr-words">扫描二维码</h3>
                                    <h3 class="qr-words">下载有货手机客户端</h3>
                                    <h3 class="qr-more">
                                        <a href="http://www.yohobuy.com/download/app">更多客户端下载</a>
                                    </h3>
                                </div>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
        <div class="header-navwrapper clearfix">
            <div class="header-navcontent">
                <ul class="first-nav-list float-left">
'.Plugin\LCRun3::debug('[navbars]', 'sec', $cx, Plugin\LCRun3::debug('[navbars]', 'v', $cx, $in, array('navbars')), $in, false, function($cx, $in) {return '                    <li class="first-nav-item '.Plugin\LCRun3::debug('[classname]', 'encq', $cx, Plugin\LCRun3::debug('[classname]', 'v', $cx, $in, array('classname'))).'">
                        <h3 class="name-cn">
                            <a href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'">'.Plugin\LCRun3::debug('[name_cn]', 'encq', $cx, Plugin\LCRun3::debug('[name_cn]', 'v', $cx, $in, array('name_cn'))).'</a>
                        </h3>
                        <h3 class="name-en">
                            <a href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'">'.Plugin\LCRun3::debug('[name_en]', 'encq', $cx, Plugin\LCRun3::debug('[name_en]', 'v', $cx, $in, array('name_en'))).'</a>
                        </h3>
                        <div class=\'sub-nav-wrapper\'>
                            <ul class="sub-nav-list">
'.Plugin\LCRun3::debug('[subnav]', 'sec', $cx, Plugin\LCRun3::debug('[subnav]', 'v', $cx, $in, array('subnav')), $in, false, function($cx, $in) {return '                                <li class="sub-nav-item">
                                    <a  href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'">'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).' 
'.Plugin\LCRun3::debug('if [is_new]', 'ifv', $cx, Plugin\LCRun3::debug('[is_new]', 'v', $cx, $in, array('is_new')), $in, function($cx, $in) {return '                                        <span class="newlogo"></span>
';}).'                                    </a>
'.Plugin\LCRun3::debug('if [thirdnav]', 'ifv', $cx, Plugin\LCRun3::debug('[thirdnav]', 'v', $cx, $in, array('thirdnav')), $in, function($cx, $in) {return '                                    <div class="third-nav-wrapper">
                                        <div class="third-nav">
                                            <div class="categorywrapper" id="category'.Plugin\LCRun3::debug('../[index_main]', 'encq', $cx, Plugin\LCRun3::debug('../[index_main]', 'v', $cx, $cx['scopes'][count($cx['scopes'])-1], array('index_main'))).''.Plugin\LCRun3::debug('[index_sub]', 'encq', $cx, Plugin\LCRun3::debug('[index_sub]', 'v', $cx, $in, array('index_sub'))).'">
                                                <div class="category">
'.Plugin\LCRun3::debug('[thirdnav]', 'sec', $cx, Plugin\LCRun3::debug('[thirdnav]', 'v', $cx, $in, array('thirdnav')), $in, false, function($cx, $in) {return '                                                    <div class="thirdnavlist">
                                                        <h1 class="category-title thirdnavbar"><a href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'">'.Plugin\LCRun3::debug('[title]', 'encq', $cx, Plugin\LCRun3::debug('[title]', 'v', $cx, $in, array('title'))).'</a> </h1>
                                                        <ul class="category-list">
'.Plugin\LCRun3::debug('[branditems]', 'sec', $cx, Plugin\LCRun3::debug('[branditems]', 'v', $cx, $in, array('branditems')), $in, false, function($cx, $in) {return '                                                            <li class="category-
                                                            item thirdnavbar">
                                                                <a href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'" hot='.Plugin\LCRun3::debug('[hot]', 'encq', $cx, Plugin\LCRun3::debug('[hot]', 'v', $cx, $in, array('hot'))).' >'.Plugin\LCRun3::debug('[brandname]', 'encq', $cx, Plugin\LCRun3::debug('[brandname]', 'v', $cx, $in, array('brandname'))).'</a>
                                                            </li>
';}).'                                                        </ul>
                                                    </div>
';}).'                                                </div>
                                            </div>
                                            <div class="showdetail" data-code="'.Plugin\LCRun3::debug('[content_code]', 'encq', $cx, Plugin\LCRun3::debug('[content_code]', 'v', $cx, $in, array('content_code'))).'">
                                                <a href="http://list.yohobuy.com/?gender=1,3&amp;msort=8">
                                                    <img src="data:image/gif;base64,R0lGODlhAQABAJEAAAAAAP///93d3f///yH5BAEAAAMALAAAAAABAAEAAAICVAEAOw==" alt="" style=""></a>
                                                <a class="title" href="http://list.yohobuy.com/?gender=1,3&amp;msort=8">热门小物优选</a>
                                            </div>
                                        </div>
                                    </div>
';}).'                                </li>
';}).'                            </ul>
                        </div>
                    </li>
';}).'                </ul>
                <div class="icon-logo"><a href="http://www.yohobuy.com/" class="main-link"></a></div>
                <div class="header-tool float-right">
                    <div class="search float-left '.Plugin\LCRun3::debug('[searchcate]', 'encq', $cx, Plugin\LCRun3::debug('[searchcate]', 'v', $cx, $in, array('searchcate'))).'" >
                        <form action="http://search.yohobuy.com" method="get" id="searchForm">
                            <span class="searchspan">
                                <input type="hidden" id="defaultsearch">
                                <input class="searchinput" type="text" name="query" id="query_key" autocomplete="off" x-webkit-speech="" lang="zh-CN" x-webkit-grammar="builtin:translate" value="" onfocus="if(this.value==this.defaultValue){this.value=\'\';this.style.color=\'#333\'}" onblur="if(this.value==\'\'){this.value=this.defaultValue;this.style.color=\'#999\'}" maxlength="30"></span>
                            <a class="icon-search" href="javascript:submitSearch();"></a>
                            <ul class="search-list"></ul>
                        </form>
                    </div>
                    <div class="gobuy float-left '.Plugin\LCRun3::debug('[gobytype]', 'encq', $cx, Plugin\LCRun3::debug('[gobytype]', 'v', $cx, $in, array('gobytype'))).'" id="miniCartBox">
                       
                        <span class="ic-infomation">0</span>
                        <div class="gobuy-wrapper"></div>
                    
                    </div>
                </div>
            </div>
        </div>
    </div>
    <div id="goodcartempwarpper">
        <script type="text/html" id="mini-cart-tpl">
        \\{\\{#carData\\}\\}
        <div class="gobuy-notempty">
          <div class="goods-list-wrapper">
            <ul class="goods-list">
                \\{\\{#main_goods\\}\\}
                    {{#notzero buy_number}}
                        <li class="goods-item">
                            <a href="\\{\\{product_url\\}\\}">
                                <img src="\\{\\{default_img\\}\\}" alt="" class="goods-img" />
                            </a>
                            <div class="goods-detail float-left">
                                <h3 class="content"><a href="\\{\\{product_url\\}\\}">\\{\\{product_name\\}\\}</a></h3>
                                <h3 class="style">
                                    颜色:
                                    <span class="color">\\{\\{color_name\\}\\}</span>
                                    尺码:
                                    <span class="size">\\{\\{size_name\\}\\}</span>
                                </h3>
                            </div>
                            <div class="goods-price float-left">
                                <h3 class="priceandnum">
                                    <span class="price">\\{\\{show_price\\}\\}</span>
                                    x
                                    <span class="num">\\{\\{buy_number\\}\\}</span>
                                </h3>
                                <a href="javascript:void(0)" class="delete goodscardelete" goodsid=\\{\\{goods_incart_id\\}\\} cheapest=\\{\\{is_cheapest_free\\}\\}>删除</a>
                            </div>
                        </li>
                    {{/notzero}}
                \\{\\{/main_goods\\}\\}
                \\{\\{#advance_goods\\}\\}
                    {{#notzero buy_number}}
                        <li class="goods-item">
                            <a href="\\{\\{product_url\\}\\}">
                                <img src="\\{\\{default_img\\}\\}" alt="" class="goods-img"></a>
                            <div class="goods-detail float-left">
                                <h3 class="content"><a href="\\{\\{product_url\\}\\}">\\{\\{product_name\\}\\}</a></h3>
                                <h3 class="style">
                                    颜色:
                                    <span class="color">\\{\\{color_name\\}\\}</span>
                                    尺码:
                                    <span class="size">\\{\\{size_name\\}\\}</span>
                                </h3>
                            </div>
                            <div class="goods-price float-left">
                                <h3 class="priceandnum">
                                    <span class="price">\\{\\{show_price\\}\\}</span>
                                    x
                                    <span class="num">\\{\\{buy_number\\}\\}</span>
                                </h3>
                                <a href="javascript:void(0)" class="delete goodscardelete" goodsid=\\{\\{goods_incart_id\\}\\} cheapest=\\{\\{is_cheapest_free\\}\\}>删除</a>
                            </div>
                        </li>
                    {{/notzero}}
                \\{\\{/advance_goods\\}\\}
                \\{\\{# outlet_goods\\}\\}
                    {{#notzero buy_number}}
                        <li class="goods-item">
                            <a href="\\{\\{product_url\\}\\}">
                                <img src="\\{\\{default_img\\}\\}" alt="" class="goods-img"></a>
                            <div class="goods-detail float-left">
                                <h3 class="content"><a href="\\{\\{product_url\\}\\}">\\{\\{product_name\\}\\}</a></h3>
                                <h3 class="style">
                                    颜色:
                                    <span class="color">\\{\\{color_name\\}\\}</span>
                                    尺码:
                                    <span class="size">\\{\\{size_name\\}\\}</span>
                                </h3>
                            </div>
                            <div class="goods-price float-left">
                                <h3 class="priceandnum">
                                    <span class="price">\\{\\{show_price\\}\\}</span>
                                    x
                                    <span class="num">\\{\\{buy_number\\}\\}</span>
                                </h3>
                                <a href="javascript:void(0)" class="delete goodscardelete" goodsid=\\{\\{goods_incart_id\\}\\} cheapest=\\{\\{is_cheapest_free\\}\\}>删除</a>
                            </div>
                        </li>
                    {{/notzero}}
                \\{\\{/outlet_goods\\}\\}
                \\{\\{#gift_goods\\}\\}
                    {{#notzero buy_number}}
                        <li class="goods-item">
                            <a href="\\{\\{product_url\\}\\}">
                                <img src="\\{\\{default_img\\}\\}" alt="" class="goods-img"></a>
                            <div class="goods-detail float-left">
                                <h3 class="content"><a href="\\{\\{product_url\\}\\}">\\{\\{product_name\\}\\}</a></h3>
                                <h3 class="style">
                                    颜色:
                                    <span class="color">\\{\\{color_name\\}\\}</span>
                                    尺码:
                                    <span class="size">\\{\\{size_name\\}\\}</span>
                                </h3>
                            </div>
                            <div class="goods-price float-left">
                                <h3 class="priceandnum">
                                    <span class="price">\\{\\{show_price\\}\\}</span>
                                    x
                                    <span class="num">\\{\\{buy_number\\}\\}</span>
                                </h3>
                                <a href="javascript:void(0)" class="delete goodscardelete" goodsid=\\{\\{goods_incart_id\\}\\} cheapest=\\{\\{is_cheapest_free\\}\\}>删除</a>
                            </div>
                        </li>
                    {{/notzero}}
                \\{\\{/gift_goods\\}\\}
                \\{\\{#need_pay_gifts\\}\\}
                    {{#notzero buy_number}}
                        <li class="goods-item">
                            <a href="\\{\\{product_url\\}\\}">
                                <img src="\\{\\{default_img\\}\\}" alt="" class="goods-img"></a>
                            <div class="goods-detail float-left">
                                <h3 class="content"><a href="\\{\\{product_url\\}\\}">\\{\\{product_name\\}\\}</a></h3>
                                <h3 class="style">
                                    颜色:
                                    <span class="color">\\{\\{color_name\\}\\}</span>
                                    尺码:
                                    <span class="size">\\{\\{size_name\\}\\}</span>
                                </h3>
                            </div>
                            <div class="goods-price float-left">
                                <h3 class="priceandnum">
                                    <span class="price">\\{\\{show_price\\}\\}</span>
                                    x
                                    <span class="num">\\{\\{buy_number\\}\\}</span>
                                </h3>
                                <a href="javascript:void(0)" class="delete goodscardelete" goodsid=\\{\\{goods_incart_id\\}\\} cheapest=\\{\\{is_cheapest_free\\}\\}>删除</a>
                            </div>
                        </li>
                    {{/notzero}}
                \\{\\{/need_pay_gifts\\}\\}
            </ul>
            <ul class="activity-list">
                {{#if has_promotion\\}\\}
                <li class="activity-item">
                    <span class="activity-name">活动</span>
                    <h3 class="activity-content">
                        \\{\\{#if fit_outlet_promotion \\}\\}购outlet商品,满¥1999再享9折
                        \\{\\{/if\\}\\}
                        \\{\\{#if has_other_promotion\\}\\}
                            <span class="mycart_i_down" title="更多" ></span>
                        \\{\\{/if\\}\\}
                        \\{\\{#if has_first_promotion\\}\\}
                            \\{\\{first_promotions.promotion_title\\}\\}
                        \\{\\{/if\\}\\}
                    </h3>
                </li>
                \\{\\{/if\\}\\}
                \\{\\{#if fit_free_shipping \\}\\}
                <li  class="activity-item">
                    <span class="activity-name">免运费</span>
                    <h3 class="activity-content">全场满 ¥\\{\\{fit_free_shipping\\}\\}免运费</h3>
                </li>
                \\{\\{/if\\}\\}
            </ul>
        </div>
        <div class="gobuy-notempty-footer">
            <h3>
                <a href="http://www.yohobuy.com/shopping/cart">去购物车结算</a>
            </h3>
        </div>
        \\{\\{/carData\\}\\}
        </script>
        <script type="text/html" id="tmpl-my-login-new">
          <div class="myyoho-info-header clearfix">
            <div class="myyoho-photo" ><img src="\\{\\{headerimg head_ico\\}\\}" alt="" data-url =""></div>
            <h3 class="user-email"><a href="http://www.yohobuy.com/home?t=\\{\\{random\\}\\}">\\{\\{profile_name\\}\\}</a></h3>
            <h3 class="user-level">
                VIP:
                <span class="leveldetail">\\{\\{vip.curVipInfo.title\\}\\}</span>
            </h3>
            \\{\\{#unless vip3 \\}\\}
            <div class="levelinfo">
                <div class="levelwrapper float-left">
                    <div class="levelspan">
                        \\{\\{vip.curYearCost\\}\\}/\\{\\{vip.nextVipInfo.needCost\\}\\}
                    </div>
                    <p class="\\{\\{#if vip.curYearCostPer\\}\\}integrate\\{\\{/if\\}\\}" style="width: \\{\\{vip.curYearCostPer\\}\\}%;"></p>
                </div>
                <span class="cardcate float-left">\\{\\{vip.nextVipInfo.title\\}\\}</span>
            </div>
            \\{\\{/unless\\}\\}
          </div>
          <ul class="myyoho-info-content">
            <li class="item">
                <span class="itemdetail float-left">
                    <a href="http://www.yohobuy.com/home/orders?t=\\{\\{timestamp\\}\\}">待处理的订单</a>
                </span>
                <span class="itemnum float-right">\\{\\{orderCount\\}\\}</span>
            </li>
            <li class="item">
                <span class="itemdetail float-left">
                    <a href="http://www.yohobuy.com/home/favorite?t=\\{\\{timestamp\\}\\}">我的收藏</a>
                </span>
                <span class="itemnum float-right"></span>
            </li>
            <li class="item">
                <span class="itemdetail float-left">
                    <a href="http://www.yohobuy.com/home/coupons?t=\\{\\{timestamp\\}\\}">我的优惠券</a>
                </span>
                <span class="itemnum float-right">\\{\\{couponCount\\}\\}</span>
            </li>
            <li class="item">
                <span class="itemdetail float-left">
                    <a href="http://www.yohobuy.com/home/currency?t=\\{\\{timestamp\\}\\}">我的YOHO币</a>
                </span>
                <span class="itemnum float-right">\\{\\{YohocoinCount\\}\\}</span>
            </li>
            <li class="item">
                <span class="itemdetail float-left">
                    <a href="http://www.yohobuy.com/home/returns?t=\\{\\{timestamp\\}\\}">我的退货换货</a>
                </span>
                <span class="itemnum float-right">\\{\\{refundCount\\}\\}</span>
            </li>
          </ul>
          <div class="myyoho-info-footer">
            <a href="http://www.yohobuy.com/home/user?t=\\{\\{timestamp\\}\\}">完善资料</a>
          </div>
        </script>
    </div>
    <input id="api-domain" type="hidden" value="'.Plugin\LCRun3::debug('[apiDomain]', 'encq', $cx, Plugin\LCRun3::debug('[apiDomain]', 'v', $cx, $in, array('apiDomain'))).'">
';}).'    
'.'    '.''.Plugin\LCRun3::debug('[simpleHeader]', 'sec', $cx, Plugin\LCRun3::debug('[simpleHeader]', 'v', $cx, $in, array('simpleHeader')), $in, false, function($cx, $in) {return '<div class="simple-header">
    <div class="header-inner clearfix">
'.Plugin\LCRun3::debug('[logo]', 'sec', $cx, Plugin\LCRun3::debug('[logo]', 'v', $cx, $in, array('logo')), $in, false, function($cx, $in) {return '        <h1 class="logo">
            <a href="'.Plugin\LCRun3::debug('[url]', 'encq', $cx, Plugin\LCRun3::debug('[url]', 'v', $cx, $in, array('url'))).'">
                <img src="'.Plugin\LCRun3::debug('[img]', 'encq', $cx, Plugin\LCRun3::debug('[img]', 'v', $cx, $in, array('img'))).'" alt="">
            </a>
        </h1>
';}).'        <ul class="header-tool clearfix">
'.Plugin\LCRun3::debug('[tool]', 'sec', $cx, Plugin\LCRun3::debug('[tool]', 'v', $cx, $in, array('tool')), $in, false, function($cx, $in) {return '            <li>
                <span>Hi~</span>
'.Plugin\LCRun3::debug('[user]', 'sec', $cx, Plugin\LCRun3::debug('[user]', 'v', $cx, $in, array('user')), $in, false, function($cx, $in) {return '                <a href="'.Plugin\LCRun3::debug('[userCenter]', 'encq', $cx, Plugin\LCRun3::debug('[userCenter]', 'v', $cx, $in, array('userCenter'))).'">'.Plugin\LCRun3::debug('this', 'encq', $cx, $in).'</a>
';}).'
'.Plugin\LCRun3::debug('[loginHref]', 'sec', $cx, Plugin\LCRun3::debug('[loginHref]', 'v', $cx, $in, array('loginHref')), $in, false, function($cx, $in) {return '                <a href="'.Plugin\LCRun3::debug('this', 'encq', $cx, $in).'">[请登录]</a>
';}).'
'.Plugin\LCRun3::debug('[logoutHref]', 'sec', $cx, Plugin\LCRun3::debug('[logoutHref]', 'v', $cx, $in, array('logoutHref')), $in, false, function($cx, $in) {return '                <a href="'.Plugin\LCRun3::debug('this', 'encq', $cx, $in).'">[退出]</a>
';}).'
'.Plugin\LCRun3::debug('[registerHref]', 'sec', $cx, Plugin\LCRun3::debug('[registerHref]', 'v', $cx, $in, array('registerHref')), $in, false, function($cx, $in) {return '                <a href="'.Plugin\LCRun3::debug('this', 'encq', $cx, $in).'">[免费注册]</a>
';}).'            </li>
            <li class="tool-options">
                <span><a href="'.Plugin\LCRun3::debug('[userCenter]', 'encq', $cx, Plugin\LCRun3::debug('[userCenter]', 'v', $cx, $in, array('userCenter'))).'">MY有货</a></span>
                <i class="options-icon down iconfont">&#xe604;</i>
                <i class="options-icon up iconfont">&#xe603;</i>
                <div class="tool-select">
                    <a href="'.Plugin\LCRun3::debug('[favoriteHref]', 'encq', $cx, Plugin\LCRun3::debug('[favoriteHref]', 'v', $cx, $in, array('favoriteHref'))).'">我的收藏</a>
                    <a href="'.Plugin\LCRun3::debug('[couponHref]', 'encq', $cx, Plugin\LCRun3::debug('[couponHref]', 'v', $cx, $in, array('couponHref'))).'">优惠券</a>
                </div>
            </li>
            <li>         
                <a href="'.Plugin\LCRun3::debug('[orderHref]', 'encq', $cx, Plugin\LCRun3::debug('[orderHref]', 'v', $cx, $in, array('orderHref'))).'">订单中心</a>
            </li>
            <li>         
                <a href="'.Plugin\LCRun3::debug('[helpHref]', 'encq', $cx, Plugin\LCRun3::debug('[helpHref]', 'v', $cx, $in, array('helpHref'))).'">帮助中心</a>
            </li>
            <li>
                <i class="tell-icon iconfont">&#xe61c;</i>
                <span>400-9889-9646</span>
            </li>
';}).'        </ul>
    </div>
    <input id="api-domain" type="hidden" value="'.Plugin\LCRun3::debug('[apiDomain]', 'encq', $cx, Plugin\LCRun3::debug('[apiDomain]', 'v', $cx, $in, array('apiDomain'))).'">
</div>
';}).''.''.'<div class="order-ensure-page shop-cart yoho-page clearfix">
    <div class="order-edit order-cart" id="cart-page">
        <div class="order-title cart-page-title">
            <ul>
                <li class="first active">查看购物车</li>
                <li>填写订单</li>
                <li class="end">付款,完成购买</li>
            </ul>
        </div>
'.Plugin\LCRun3::debug('[cartEnsure].[loginUrl]', 'sec', $cx, Plugin\LCRun3::debug('[cartEnsure].[loginUrl]', 'v', $cx, $in, array('cartEnsure','loginUrl')), $in, false, function($cx, $in) {return '            <div class="cartnew-tips">
                <div class="tipsbox" id="tipsbox">
                    <a href="javascript:void(0);" class="btn_close" title="关闭"></a>
                    <strong>温馨提示:</strong>亲爱的顾客,您还没有 <a href="'.Plugin\LCRun3::debug('[cartEnsure].[loginUrl]', 'encq', $cx, Plugin\LCRun3::debug('[cartEnsure].[loginUrl]', 'v', $cx, $in, array('cartEnsure','loginUrl'))).'" class="a_eu">登录</a> 哦,所有商品价格、活动信息以登录后显示为准.
                </div>
            </div> 
';}, function($cx, $in) {return '            <div class="cartnew-tips">
                <div class="tipsbox" id="tipsbox">
                    <a href="javascript:void(0);" class="btn_close" title="关闭"></a>
                    <strong>温馨提示:</strong>1. 选购单中的商品不保留库存,请及时结算。 2. 商品的价格、相关活动信息及库存以订单提交时为准。
                </div>
            </div>    
';}).'        <div class="order-pay">
'.Plugin\LCRun3::debug('if [cartEnsure].[isEmpty]', 'ifv', $cx, Plugin\LCRun3::debug('[cartEnsure].[isEmpty]', 'v', $cx, $in, array('cartEnsure','isEmpty')), $in, function($cx, $in) {return '                <div class="pay-wapper">
                    <table>
                        <thead>
                        <tr>
                            <th style="width:40%;">
                                商品信息
                            </th>
                            <th style="width:13%;">单价(元)</th>
                            <th style="width:7%;">返YOHO币</th>
                            <th style="width:10%;">数量</th>
                            <th style="width:10%;">小计(元)</th>
                            <th style="width:20%;">操作</th>
                        </tr>
                        </thead>
                        <tbody>            
                        <tr class="pre-sell-box">
                            <td colspan="6" class="cart-empty">
                            <a href="'.Plugin\LCRun3::debug('[cartEnsure].[guangUrl]', 'encq', $cx, Plugin\LCRun3::debug('[cartEnsure].[guangUrl]', 'v', $cx, $in, array('cartEnsure','guangUrl'))).'">选购商品</a>
                            <a href="'.Plugin\LCRun3::debug('[cartEnsure].[viewOrderUrl]', 'encq', $cx, Plugin\LCRun3::debug('[cartEnsure].[viewOrderUrl]', 'v', $cx, $in, array('cartEnsure','viewOrderUrl'))).'">查看订单</a>
                            </td>
                        </tr>
                        </tbody>
                    </table>
                </div>
                <div class="dev-revocation '.Plugin\LCRun3::debug('unless [cartEnsure].[deleteShop]', 'unl', $cx, Plugin\LCRun3::debug('[cartEnsure].[deleteShop]', 'v', $cx, $in, array('cartEnsure','deleteShop')), $in, function($cx, $in) {return 'none';}).'">
                    <table>
'.Plugin\LCRun3::debug('[cartEnsure].[deleteShop]', 'sec', $cx, Plugin\LCRun3::debug('[cartEnsure].[deleteShop]', 'v', $cx, $in, array('cartEnsure','deleteShop')), $in, false, function($cx, $in) {return '                    <tr data-productnum="'.Plugin\LCRun3::debug('[productNum]', 'encq', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum'))).'" data-productsku="'.Plugin\LCRun3::debug('[productSku]', 'encq', $cx, Plugin\LCRun3::debug('[productSku]', 'v', $cx, $in, array('productSku'))).'">
                        <td style="width:40%; text-align: left;">成功删除<a class="title" href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'" target="_blank">'.Plugin\LCRun3::debug('[productTitle]', 'encq', $cx, Plugin\LCRun3::debug('[productTitle]', 'v', $cx, $in, array('productTitle'))).'</a></td>
                        <td style="width:10%;"><span class="productPrice">'.Plugin\LCRun3::debug('[productPrice]', 'encq', $cx, Plugin\LCRun3::debug('[productPrice]', 'v', $cx, $in, array('productPrice'))).'</span></td>
                        <td style="width:10%;"></td>
                        <td style="width:10%;">'.Plugin\LCRun3::debug('[productNum]', 'encq', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum'))).'件</td>
                        <td style="width:10%;"></td>
                        <td style="width:20%; border-right: none; text-align: right;">
                            <a href="javascript:void(0);"><span class="goBack">撤销本次删除</span></a>
                        </td>
                    </tr>
';}).'                </table>
                </div>
';}, function($cx, $in) {return '                <!-- 购物车商品列表      -->
'.Plugin\LCRun3::debug('[cartEnsure]', 'sec', $cx, Plugin\LCRun3::debug('[cartEnsure]', 'v', $cx, $in, array('cartEnsure')), $in, false, function($cx, $in) {return '                <div class="pay-wapper">
                    <table>
                        <thead>
                        <tr>
                            <th style="width:40%;">
                                商品信息
                            </th>
                            <th style="width:13%;">单价(元)</th>
                            <th style="width:7%;">返YOHO币</th>
                            <th style="width:10%;">数量</th>
                            <th style="width:10%;">小计(元)</th>
                            <th style="width:20%;">操作</th>
                        </tr>
                        </thead>
                        <tbody>
                    <!-- 预售商品   -->
'.Plugin\LCRun3::debug('[preSell]', 'sec', $cx, Plugin\LCRun3::debug('[preSell]', 'v', $cx, $in, array('preSell')), $in, false, function($cx, $in) {return '                        <tr class="pre-sell">
                            <td colspan="6" class="per-list pre-sell-title cart-product-num">
                                <input class="" type="checkbox" name="" id="" '.Plugin\LCRun3::debug('if [isChecked]', 'ifv', $cx, Plugin\LCRun3::debug('[isChecked]', 'v', $cx, $in, array('isChecked')), $in, function($cx, $in) {return 'checked';}).'/>
                                预售商品<span>('.Plugin\LCRun3::debug('[cartProductNum]', 'encq', $cx, Plugin\LCRun3::debug('[cartProductNum]', 'v', $cx, $in, array('cartProductNum'))).')</span>预售商品不参加活动,不可使用优惠券,不同上市期的商品我们将为您先到先发。
                            </td>
                        </tr>
'.Plugin\LCRun3::debug('[productItem]', 'sec', $cx, Plugin\LCRun3::debug('[productItem]', 'v', $cx, $in, array('productItem')), $in, false, function($cx, $in) {return '                        <tr class="pre-sell-box" '.Plugin\LCRun3::debug('if [pid]', 'ifv', $cx, Plugin\LCRun3::debug('[pid]', 'v', $cx, $in, array('pid')), $in, function($cx, $in) {return 'data-pid="'.Plugin\LCRun3::debug('[pid]', 'encq', $cx, Plugin\LCRun3::debug('[pid]', 'v', $cx, $in, array('pid'))).'"';}).' '.Plugin\LCRun3::debug('if [id]', 'ifv', $cx, Plugin\LCRun3::debug('[id]', 'v', $cx, $in, array('id')), $in, function($cx, $in) {return 'data-id="'.Plugin\LCRun3::debug('[id]', 'encq', $cx, Plugin\LCRun3::debug('[id]', 'v', $cx, $in, array('id'))).'"';}).' '.Plugin\LCRun3::debug('if [skn]', 'ifv', $cx, Plugin\LCRun3::debug('[skn]', 'v', $cx, $in, array('skn')), $in, function($cx, $in) {return 'data-skn="'.Plugin\LCRun3::debug('[skn]', 'encq', $cx, Plugin\LCRun3::debug('[skn]', 'v', $cx, $in, array('skn'))).'"';}).' '.Plugin\LCRun3::debug('if [sku]', 'ifv', $cx, Plugin\LCRun3::debug('[sku]', 'v', $cx, $in, array('sku')), $in, function($cx, $in) {return 'data-sku="'.Plugin\LCRun3::debug('[sku]', 'encq', $cx, Plugin\LCRun3::debug('[sku]', 'v', $cx, $in, array('sku'))).'"';}).' '.Plugin\LCRun3::debug('if [productNum]', 'ifv', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum')), $in, function($cx, $in) {return 'data-productnum="'.Plugin\LCRun3::debug('[productNum]', 'encq', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum'))).'"';}).' '.Plugin\LCRun3::debug('if [goodsType]', 'ifv', $cx, Plugin\LCRun3::debug('[goodsType]', 'v', $cx, $in, array('goodsType')), $in, function($cx, $in) {return 'data-goodstype="'.Plugin\LCRun3::debug('[goodsType]', 'encq', $cx, Plugin\LCRun3::debug('[goodsType]', 'v', $cx, $in, array('goodsType'))).'"';}).'>
                            <td>
                                <div class="pay-pro">
                                    <input class="cart-item-check" type="checkbox" name="" id="" data-goodstype="'.Plugin\LCRun3::debug('[goodsType]', 'encq', $cx, Plugin\LCRun3::debug('[goodsType]', 'v', $cx, $in, array('goodsType'))).'"  '.Plugin\LCRun3::debug('if [isChecked]', 'ifv', $cx, Plugin\LCRun3::debug('[isChecked]', 'v', $cx, $in, array('isChecked')), $in, function($cx, $in) {return 'checked';}).'/>
                                    <a class="pay-pro-icon" href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'" target="_blank">
                                        <img src="'.Plugin\LCRun3::debug('[imgCover]', 'encq', $cx, Plugin\LCRun3::debug('[imgCover]', 'v', $cx, $in, array('imgCover'))).'">
                                        <span class="incentive">预售</span>
                                    </a>
                                    <p class="pay-pro-info">
                                        <a href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'" target="_blank">'.Plugin\LCRun3::debug('[productTitle]', 'encq', $cx, Plugin\LCRun3::debug('[productTitle]', 'v', $cx, $in, array('productTitle'))).'</a>
                                        <span>颜色:'.Plugin\LCRun3::debug('[productColor]', 'encq', $cx, Plugin\LCRun3::debug('[productColor]', 'v', $cx, $in, array('productColor'))).' 尺码:'.Plugin\LCRun3::debug('[productSize]', 'encq', $cx, Plugin\LCRun3::debug('[productSize]', 'v', $cx, $in, array('productSize'))).'</span>
                                        <span class="presell">上市期:'.Plugin\LCRun3::debug('[preSellDate]', 'encq', $cx, Plugin\LCRun3::debug('[preSellDate]', 'v', $cx, $in, array('preSellDate'))).'</span>
                                    </p>
                                </div>
                            </td>
                            <td class="productPrice">¥'.Plugin\LCRun3::debug('[productPrice]', 'encq', $cx, Plugin\LCRun3::debug('[productPrice]', 'v', $cx, $in, array('productPrice'))).'</td>
                            <td>'.Plugin\LCRun3::debug('[yohoIcon]', 'encq', $cx, Plugin\LCRun3::debug('[yohoIcon]', 'v', $cx, $in, array('yohoIcon'))).'</td>
                            <td class="adjust-cart-num">
'.Plugin\LCRun3::debug('if [isGift]', 'ifv', $cx, Plugin\LCRun3::debug('[isGift]', 'v', $cx, $in, array('isGift')), $in, function($cx, $in) {return '                                    <div>'.Plugin\LCRun3::debug('[productNum]', 'encq', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum'))).'</div>
';}, function($cx, $in) {return ''.Plugin\LCRun3::debug('if [isPriceGift]', 'ifv', $cx, Plugin\LCRun3::debug('[isPriceGift]', 'v', $cx, $in, array('isPriceGift')), $in, function($cx, $in) {return '                                        <div>'.Plugin\LCRun3::debug('[productNum]', 'encq', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum'))).'</div>
';}, function($cx, $in) {return '                                         <span class="minus"></span>
                                        <input type="text" value="'.Plugin\LCRun3::debug('[productNum]', 'encq', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum'))).'" readonly="readonly"/>
                                        <span class="plus"></span>
                                        <p class="tip-message '.Plugin\LCRun3::debug('[isTipNoStore]', 'sec', $cx, Plugin\LCRun3::debug('[isTipNoStore]', 'v', $cx, $in, array('isTipNoStore')), $in, false, function($cx, $in) {return 'tipNoStore';}).'">'.Plugin\LCRun3::debug('[tipMessage]', 'encq', $cx, Plugin\LCRun3::debug('[tipMessage]', 'v', $cx, $in, array('tipMessage'))).'</p>
';}).'';}).'                            </td>
                            <td class="sub-total">¥'.Plugin\LCRun3::debug('[productSubtotal]', 'encq', $cx, Plugin\LCRun3::debug('[productSubtotal]', 'v', $cx, $in, array('productSubtotal'))).'</td>
                            <td class="cart-operation">
                                <span class="cart-del-btn"><span>删除</span></span>
                            </td>
                        </tr>
';}).'';}).'                    <!--普通商品-->
'.Plugin\LCRun3::debug('[commonSell]', 'sec', $cx, Plugin\LCRun3::debug('[commonSell]', 'v', $cx, $in, array('commonSell')), $in, false, function($cx, $in) {return '                        <tr>
                            <td colspan="6" class="common-list cart-product-num">
                                <input class="" type="checkbox" name="" id="" '.Plugin\LCRun3::debug('if [isChecked]', 'ifv', $cx, Plugin\LCRun3::debug('[isChecked]', 'v', $cx, $in, array('isChecked')), $in, function($cx, $in) {return 'checked';}).'/>
                                普通商品('.Plugin\LCRun3::debug('[cartProductNum]', 'encq', $cx, Plugin\LCRun3::debug('[cartProductNum]', 'v', $cx, $in, array('cartProductNum'))).')
                            </td>
                        </tr>
'.Plugin\LCRun3::debug('[productItem]', 'sec', $cx, Plugin\LCRun3::debug('[productItem]', 'v', $cx, $in, array('productItem')), $in, false, function($cx, $in) {return '                        <tr  class="common-sell-box" '.Plugin\LCRun3::debug('if [pid]', 'ifv', $cx, Plugin\LCRun3::debug('[pid]', 'v', $cx, $in, array('pid')), $in, function($cx, $in) {return 'data-pid="'.Plugin\LCRun3::debug('[pid]', 'encq', $cx, Plugin\LCRun3::debug('[pid]', 'v', $cx, $in, array('pid'))).'"';}).' '.Plugin\LCRun3::debug('if [id]', 'ifv', $cx, Plugin\LCRun3::debug('[id]', 'v', $cx, $in, array('id')), $in, function($cx, $in) {return 'data-id="'.Plugin\LCRun3::debug('[id]', 'encq', $cx, Plugin\LCRun3::debug('[id]', 'v', $cx, $in, array('id'))).'"';}).' '.Plugin\LCRun3::debug('if [skn]', 'ifv', $cx, Plugin\LCRun3::debug('[skn]', 'v', $cx, $in, array('skn')), $in, function($cx, $in) {return 'data-skn="'.Plugin\LCRun3::debug('[skn]', 'encq', $cx, Plugin\LCRun3::debug('[skn]', 'v', $cx, $in, array('skn'))).'"';}).' '.Plugin\LCRun3::debug('if [sku]', 'ifv', $cx, Plugin\LCRun3::debug('[sku]', 'v', $cx, $in, array('sku')), $in, function($cx, $in) {return 'data-sku="'.Plugin\LCRun3::debug('[sku]', 'encq', $cx, Plugin\LCRun3::debug('[sku]', 'v', $cx, $in, array('sku'))).'"';}).' '.Plugin\LCRun3::debug('if [productNum]', 'ifv', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum')), $in, function($cx, $in) {return 'data-productnum="'.Plugin\LCRun3::debug('[productNum]', 'encq', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum'))).'"';}).'  '.Plugin\LCRun3::debug('if [promotionId]', 'ifv', $cx, Plugin\LCRun3::debug('[promotionId]', 'v', $cx, $in, array('promotionId')), $in, function($cx, $in) {return 'data-promotionid="'.Plugin\LCRun3::debug('[promotionId]', 'encq', $cx, Plugin\LCRun3::debug('[promotionId]', 'v', $cx, $in, array('promotionId'))).'"';}).' '.Plugin\LCRun3::debug('if [goodsType]', 'ifv', $cx, Plugin\LCRun3::debug('[goodsType]', 'v', $cx, $in, array('goodsType')), $in, function($cx, $in) {return 'data-goodstype="'.Plugin\LCRun3::debug('[goodsType]', 'encq', $cx, Plugin\LCRun3::debug('[goodsType]', 'v', $cx, $in, array('goodsType'))).'"';}).'>
                            <td>
                                <div class="pay-pro">
                                        <input class="cart-item-check '.Plugin\LCRun3::debug('if [isGift]', 'ifv', $cx, Plugin\LCRun3::debug('[isGift]', 'v', $cx, $in, array('isGift')), $in, function($cx, $in) {return 'none';}).'"  type="checkbox" name="" id="" '.Plugin\LCRun3::debug('if [isChecked]', 'ifv', $cx, Plugin\LCRun3::debug('[isChecked]', 'v', $cx, $in, array('isChecked')), $in, function($cx, $in) {return 'checked';}).'/>
                                    <a class="pay-pro-icon '.Plugin\LCRun3::debug('if [isGift]', 'ifv', $cx, Plugin\LCRun3::debug('[isGift]', 'v', $cx, $in, array('isGift')), $in, function($cx, $in) {return 'giftInfo';}).'" href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'" target="_blank">
                                        <img src="'.Plugin\LCRun3::debug('[imgCover]', 'encq', $cx, Plugin\LCRun3::debug('[imgCover]', 'v', $cx, $in, array('imgCover'))).'">
'.Plugin\LCRun3::debug('[isPriceGift]', 'sec', $cx, Plugin\LCRun3::debug('[isPriceGift]', 'v', $cx, $in, array('isPriceGift')), $in, false, function($cx, $in) {return '                                        <span class="incentive">加价购</span>
';}).''.Plugin\LCRun3::debug('[isGift]', 'sec', $cx, Plugin\LCRun3::debug('[isGift]', 'v', $cx, $in, array('isGift')), $in, false, function($cx, $in) {return '                                        <span class="gift">赠品</span>
';}).'                                    </a>
                                    <p class="pay-pro-info">
                                        <a href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'" target="_blank">'.Plugin\LCRun3::debug('[productTitle]', 'encq', $cx, Plugin\LCRun3::debug('[productTitle]', 'v', $cx, $in, array('productTitle'))).'<br /></a>
                                        <span>颜色:'.Plugin\LCRun3::debug('[productColor]', 'encq', $cx, Plugin\LCRun3::debug('[productColor]', 'v', $cx, $in, array('productColor'))).' 尺码:'.Plugin\LCRun3::debug('[productSize]', 'encq', $cx, Plugin\LCRun3::debug('[productSize]', 'v', $cx, $in, array('productSize'))).'</span>
                                    </p>
                                </div>
                            </td>
                            <td><span class="productPrice">¥'.Plugin\LCRun3::debug('[productPrice]', 'encq', $cx, Plugin\LCRun3::debug('[productPrice]', 'v', $cx, $in, array('productPrice'))).'</span>
'.Plugin\LCRun3::debug('[isVipPrice]', 'sec', $cx, Plugin\LCRun3::debug('[isVipPrice]', 'v', $cx, $in, array('isVipPrice')), $in, false, function($cx, $in) {return '                                    <span class="vipPrice">(VIP)</span>
';}).'                            </td>
                            <td>'.Plugin\LCRun3::debug('[yohoIcon]', 'encq', $cx, Plugin\LCRun3::debug('[yohoIcon]', 'v', $cx, $in, array('yohoIcon'))).'</td>
                            <td class="adjust-cart-num">
'.Plugin\LCRun3::debug('if [isGift]', 'ifv', $cx, Plugin\LCRun3::debug('[isGift]', 'v', $cx, $in, array('isGift')), $in, function($cx, $in) {return '                                    <div>'.Plugin\LCRun3::debug('[productNum]', 'encq', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum'))).'</div>
';}, function($cx, $in) {return ''.Plugin\LCRun3::debug('if [isPriceGift]', 'ifv', $cx, Plugin\LCRun3::debug('[isPriceGift]', 'v', $cx, $in, array('isPriceGift')), $in, function($cx, $in) {return '                                        <div>'.Plugin\LCRun3::debug('[productNum]', 'encq', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum'))).'</div>
';}, function($cx, $in) {return '                                         <span class="minus"></span>
                                        <input type="text" value="'.Plugin\LCRun3::debug('[productNum]', 'encq', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum'))).'" readonly="readonly"/>
                                        <span class="plus"></span>
                                        <p class="tip-message '.Plugin\LCRun3::debug('[isTipNoStore]', 'sec', $cx, Plugin\LCRun3::debug('[isTipNoStore]', 'v', $cx, $in, array('isTipNoStore')), $in, false, function($cx, $in) {return 'tipNoStore';}).'">'.Plugin\LCRun3::debug('[tipMessage]', 'encq', $cx, Plugin\LCRun3::debug('[tipMessage]', 'v', $cx, $in, array('tipMessage'))).'</p>
';}).'';}).'                            </td>
                            <td class="sub-total">
'.Plugin\LCRun3::debug('if [xForOne]', 'ifv', $cx, Plugin\LCRun3::debug('[xForOne]', 'v', $cx, $in, array('xForOne')), $in, function($cx, $in) {return '                                <del>¥'.Plugin\LCRun3::debug('[productSubtotal]', 'encq', $cx, Plugin\LCRun3::debug('[productSubtotal]', 'v', $cx, $in, array('productSubtotal'))).'</del>
                                <span class="free"></span>
';}, function($cx, $in) {return '                                ¥'.Plugin\LCRun3::debug('[productSubtotal]', 'encq', $cx, Plugin\LCRun3::debug('[productSubtotal]', 'v', $cx, $in, array('productSubtotal'))).'
';}).'                            </td>
                            <td class="cart-operation">
                                <a href="javascript:void(0);" '.Plugin\LCRun3::debug('if [isGift]', 'ifv', $cx, Plugin\LCRun3::debug('[isGift]', 'v', $cx, $in, array('isGift')), $in, function($cx, $in) {return 'data-gift="1"';}).' class="cart-del-btn"><span>删除</span></a>
                            </td>
                        </tr>
';}).'';}).'                           </tbody>
                        </table>
                    </div>
                    <div class="order-pay">
                        <!-- 加价购,赠品列表 -->
'.Plugin\LCRun3::debug('[subjoinItem]', 'sec', $cx, Plugin\LCRun3::debug('[subjoinItem]', 'v', $cx, $in, array('subjoinItem')), $in, false, function($cx, $in) {return '                        <div class="pay-wapper  '.Plugin\LCRun3::debug('if [isShowGift]', 'ifv', $cx, Plugin\LCRun3::debug('[isShowGift]', 'v', $cx, $in, array('isShowGift')), $in, function($cx, $in) {return 'gift-wrapper';}).'">
                        <div class="cart-product-num">
                            <strong>'.Plugin\LCRun3::debug('[subjoinType]', 'encq', $cx, Plugin\LCRun3::debug('[subjoinType]', 'v', $cx, $in, array('subjoinType'))).'</strong>
'.Plugin\LCRun3::debug('if [isShowGift]', 'ifv', $cx, Plugin\LCRun3::debug('[isShowGift]', 'v', $cx, $in, array('isShowGift')), $in, function($cx, $in) {return '                                <i class="icon-zp"></i>
                                <div data-pageall="'.Plugin\LCRun3::debug('[subjoinPageNum]', 'encq', $cx, Plugin\LCRun3::debug('[subjoinPageNum]', 'v', $cx, $in, array('subjoinPageNum'))).'" class="cart-unfold cart-page">
                                    <p><span class="f-red">1</span>/<span class="subjoinPageNum">'.Plugin\LCRun3::debug('[subjoinPageNum]', 'encq', $cx, Plugin\LCRun3::debug('[subjoinPageNum]', 'v', $cx, $in, array('subjoinPageNum'))).'</span></p>
                                    <i class="cart-btn-pre"></i>
                                    <i class="cart-btn-next"></i>
                                </div>
';}, function($cx, $in) {return ''.Plugin\LCRun3::debug('if [isFold]', 'ifv', $cx, Plugin\LCRun3::debug('[isFold]', 'v', $cx, $in, array('isFold')), $in, function($cx, $in) {return '                                <i class="icon-minusCart none"></i>
                                <i class="icon-addCart"></i>
                                <div class="cart-unfold unfold-color">
                                    <span>[展开]</span>
                                </div>
                                <div data-pageall="'.Plugin\LCRun3::debug('[subjoinPageNum]', 'encq', $cx, Plugin\LCRun3::debug('[subjoinPageNum]', 'v', $cx, $in, array('subjoinPageNum'))).'" class="cart-unfold cart-page none">
                                    <p><span class="f-red">1</span>/<span class="subjoinPageNum">'.Plugin\LCRun3::debug('[subjoinPageNum]', 'encq', $cx, Plugin\LCRun3::debug('[subjoinPageNum]', 'v', $cx, $in, array('subjoinPageNum'))).'</span></p>
                                    <i class="cart-btn-pre"></i>
                                    <i class="cart-btn-next"></i>
                                </div>
';}, function($cx, $in) {return '                                <i class="icon-minusCart"></i>
                                <i class="icon-addCart none"></i>
                                <div class="cart-unfold unfold-color none">
                                    <span>[展开]</span>
                                </div>
                                <div data-pageall="'.Plugin\LCRun3::debug('[subjoinPageNum]', 'encq', $cx, Plugin\LCRun3::debug('[subjoinPageNum]', 'v', $cx, $in, array('subjoinPageNum'))).'" class="cart-unfold cart-page">
                                    <p><span class="f-red">1</span>/<span class="subjoinPageNum">'.Plugin\LCRun3::debug('[subjoinPageNum]', 'encq', $cx, Plugin\LCRun3::debug('[subjoinPageNum]', 'v', $cx, $in, array('subjoinPageNum'))).'</span></p>
                                    <i class="cart-btn-pre"></i>
                                    <i class="cart-btn-next"></i>
                                </div>
';}).'';}).'                        </div>
                        <div class="'.Plugin\LCRun3::debug('[isFold]', 'sec', $cx, Plugin\LCRun3::debug('[isFold]', 'v', $cx, $in, array('isFold')), $in, false, function($cx, $in) {return 'fold';}).'" >
'.Plugin\LCRun3::debug('[subjoinPage]', 'sec', $cx, Plugin\LCRun3::debug('[subjoinPage]', 'v', $cx, $in, array('subjoinPage')), $in, false, function($cx, $in) {return '                            <table class="'.Plugin\LCRun3::debug('[isHide]', 'sec', $cx, Plugin\LCRun3::debug('[isHide]', 'v', $cx, $in, array('isHide')), $in, false, function($cx, $in) {return 'none';}).'" data-promotion='.Plugin\LCRun3::debug('[promotionId]', 'encq', $cx, Plugin\LCRun3::debug('[promotionId]', 'v', $cx, $in, array('promotionId'))).'>
'.Plugin\LCRun3::debug('[subjoinInfo]', 'sec', $cx, Plugin\LCRun3::debug('[subjoinInfo]', 'v', $cx, $in, array('subjoinInfo')), $in, false, function($cx, $in) {return '                                <tr>
                                    <td style="width:40%;">
                                        <div class="pay-pro">
                                            <a class="pay-pro-icon" href="'.Plugin\LCRun3::debug('[subjoinLink]', 'encq', $cx, Plugin\LCRun3::debug('[subjoinLink]', 'v', $cx, $in, array('subjoinLink'))).'" target="_blank">
                                                <img src="'.Plugin\LCRun3::debug('[imgCover]', 'encq', $cx, Plugin\LCRun3::debug('[imgCover]', 'v', $cx, $in, array('imgCover'))).'">
'.Plugin\LCRun3::debug('[isPriceGift]', 'sec', $cx, Plugin\LCRun3::debug('[isPriceGift]', 'v', $cx, $in, array('isPriceGift')), $in, false, function($cx, $in) {return '                                                <span class="incentive">加价购</span>
';}).''.Plugin\LCRun3::debug('[isGift]', 'sec', $cx, Plugin\LCRun3::debug('[isGift]', 'v', $cx, $in, array('isGift')), $in, false, function($cx, $in) {return '                                                <span class="gift">赠品</span>
';}).'                                            </a>
                                            <p class="pay-pro-info">
                                                <a href="'.Plugin\LCRun3::debug('[subjoinLink]', 'encq', $cx, Plugin\LCRun3::debug('[subjoinLink]', 'v', $cx, $in, array('subjoinLink'))).'" target="_blank">'.Plugin\LCRun3::debug('[subjoinTitle]', 'encq', $cx, Plugin\LCRun3::debug('[subjoinTitle]', 'v', $cx, $in, array('subjoinTitle'))).'</a>
                                            </p>
                                        </div>
                                    </td>
                                    <td style="width:13%;">
                                        <del class="wapper-price" style="margin-right: 5px;">¥'.Plugin\LCRun3::debug('[marketPrice]', 'encq', $cx, Plugin\LCRun3::debug('[marketPrice]', 'v', $cx, $in, array('marketPrice'))).'</del>
                                        <span class="subjoin-price">¥'.Plugin\LCRun3::debug('[subjoinPrice]', 'encq', $cx, Plugin\LCRun3::debug('[subjoinPrice]', 'v', $cx, $in, array('subjoinPrice'))).'</span>
                                    </td>
                                    <td style="width:7%;">'.Plugin\LCRun3::debug('[yohoIcon]', 'encq', $cx, Plugin\LCRun3::debug('[yohoIcon]', 'v', $cx, $in, array('yohoIcon'))).'</td>
                                    <td style="width:10%;">1</td>
                                    <td style="width:10%;">¥'.Plugin\LCRun3::debug('[subjoinPrice]', 'encq', $cx, Plugin\LCRun3::debug('[subjoinPrice]', 'v', $cx, $in, array('subjoinPrice'))).'</td>
                                    <td style="width:20%; border-right: none;">
'.Plugin\LCRun3::debug('[isPriceGift]', 'sec', $cx, Plugin\LCRun3::debug('[isPriceGift]', 'v', $cx, $in, array('isPriceGift')), $in, false, function($cx, $in) {return '                                            <a href="javascript:void(0);" data-id="'.Plugin\LCRun3::debug('[id]', 'encq', $cx, Plugin\LCRun3::debug('[id]', 'v', $cx, $in, array('id'))).'" class="cart-add-btn order"><span></span></a>
';}).''.Plugin\LCRun3::debug('[isGift]', 'sec', $cx, Plugin\LCRun3::debug('[isGift]', 'v', $cx, $in, array('isGift')), $in, false, function($cx, $in) {return '                                            <a href="javascript:void(0);" data-id="'.Plugin\LCRun3::debug('[id]', 'encq', $cx, Plugin\LCRun3::debug('[id]', 'v', $cx, $in, array('id'))).'" class="cart-add-btn zp"><span></span></a>
';}).'                                    </td>
                                </tr>
';}).'                            </table>
';}).'                        </div>
                        </div>
';}).'                    </div>
                    <div class="dev-revocation '.Plugin\LCRun3::debug('unless [deleteShop]', 'unl', $cx, Plugin\LCRun3::debug('[deleteShop]', 'v', $cx, $in, array('deleteShop')), $in, function($cx, $in) {return 'none';}).'">
                        <table>
'.Plugin\LCRun3::debug('[deleteShop]', 'sec', $cx, Plugin\LCRun3::debug('[deleteShop]', 'v', $cx, $in, array('deleteShop')), $in, false, function($cx, $in) {return '                        <tr data-productnum="'.Plugin\LCRun3::debug('[productNum]', 'encq', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum'))).'" data-productsku="'.Plugin\LCRun3::debug('[productSku]', 'encq', $cx, Plugin\LCRun3::debug('[productSku]', 'v', $cx, $in, array('productSku'))).'" data-promotionid="'.Plugin\LCRun3::debug('[promotionId]', 'encq', $cx, Plugin\LCRun3::debug('[promotionId]', 'v', $cx, $in, array('promotionId'))).'">
                            <td style="width:40%; text-align: left;">成功删除<a class="title" href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'" target="_blank">'.Plugin\LCRun3::debug('[productTitle]', 'encq', $cx, Plugin\LCRun3::debug('[productTitle]', 'v', $cx, $in, array('productTitle'))).'</a></td>
                            <td style="width:10%;"><span class="productPrice">'.Plugin\LCRun3::debug('[productPrice]', 'encq', $cx, Plugin\LCRun3::debug('[productPrice]', 'v', $cx, $in, array('productPrice'))).'</span></td>
                            <td style="width:10%;"></td>
                            <td style="width:10%;">'.Plugin\LCRun3::debug('[productNum]', 'encq', $cx, Plugin\LCRun3::debug('[productNum]', 'v', $cx, $in, array('productNum'))).'件</td>
                            <td style="width:10%;"></td>
                            <td style="width:20%; border-right: none; text-align: right;">
                                <a href="javascript:void(0);"><span class="goBack">撤销本次删除</span></a>
                            </td>
                        </tr>
';}).'                    </table>
                    </div>
';}).''.Plugin\LCRun3::debug('[cartEnsure].[salesPromotion]', 'sec', $cx, Plugin\LCRun3::debug('[cartEnsure].[salesPromotion]', 'v', $cx, $in, array('cartEnsure','salesPromotion')), $in, false, function($cx, $in) {return '                <div class="salesPromotion">
                    <p>
'.Plugin\LCRun3::debug('if [salesTitle]', 'ifv', $cx, Plugin\LCRun3::debug('[salesTitle]', 'v', $cx, $in, array('salesTitle')), $in, function($cx, $in) {return '                            <b>'.Plugin\LCRun3::debug('[salesTitle]', 'encq', $cx, Plugin\LCRun3::debug('[salesTitle]', 'v', $cx, $in, array('salesTitle'))).'</b>
';}).'                        '.Plugin\LCRun3::debug('[salesMessage]', 'encq', $cx, Plugin\LCRun3::debug('[salesMessage]', 'v', $cx, $in, array('salesMessage'))).'</p>
                    <span><i></i>已参与</span>
                </div>
';}).'                <!-- 总价计算 -->
                <div class="cartnew-sum">
'.Plugin\LCRun3::debug('unless [cartEnsure].[isEmpty]', 'unl', $cx, Plugin\LCRun3::debug('[cartEnsure].[isEmpty]', 'v', $cx, $in, array('cartEnsure','isEmpty')), $in, function($cx, $in) {return '                    <div class="left batch_div">
                        <a href="javascript:void(0);" class="btn_h" style="display:none;"><span>清空商品</span></a>
                        <input type="checkbox" id="cbSelAllGoods" '.Plugin\LCRun3::debug('if [cartEnsure].[isCheckedAll]', 'ifv', $cx, Plugin\LCRun3::debug('[cartEnsure].[isCheckedAll]', 'v', $cx, $in, array('cartEnsure','isCheckedAll')), $in, function($cx, $in) {return 'checked="checked"';}).'>
                        <span>全选</span>
                        <a class="delAll" href="javascript:void(0);">批量删除</a>
                        <a class="removeAll" href="javascript:void(0);">批量移入收藏夹</a>
                    </div>
';}).'                    <div class="right">
                        <p class="sum">商品总价(¥'.Plugin\LCRun3::debug('[cartEnsure].[productAmmount]', 'encq', $cx, Plugin\LCRun3::debug('[cartEnsure].[productAmmount]', 'v', $cx, $in, array('cartEnsure','productAmmount'))).')- 活动(¥'.Plugin\LCRun3::debug('[cartEnsure].[activeSale]', 'encq', $cx, Plugin\LCRun3::debug('[cartEnsure].[activeSale]', 'v', $cx, $in, array('cartEnsure','activeSale'))).')= 商品金额总计(¥'.Plugin\LCRun3::debug('[cartEnsure].[productAllA]', 'encq', $cx, Plugin\LCRun3::debug('[cartEnsure].[productAllA]', 'v', $cx, $in, array('cartEnsure','productAllA'))).')</p>
                        <p>获赠YOHO币:'.Plugin\LCRun3::debug('[cartEnsure].[getYoho]', 'encq', $cx, Plugin\LCRun3::debug('[cartEnsure].[getYoho]', 'v', $cx, $in, array('cartEnsure','getYoho'))).'个 商品总价(不含运费):<strong>¥'.Plugin\LCRun3::debug('[cartEnsure].[productAllA]', 'encq', $cx, Plugin\LCRun3::debug('[cartEnsure].[productAllA]', 'v', $cx, $in, array('cartEnsure','productAllA'))).'</strong> 元</p>
                    </div>
                </div>
                <div class="cartnew-submit" id="payDiv">
                    <a href="'.Plugin\LCRun3::debug('[cartEnsure].[searchUrl]', 'encq', $cx, Plugin\LCRun3::debug('[cartEnsure].[searchUrl]', 'v', $cx, $in, array('cartEnsure','searchUrl'))).'" class="btn_continue">再逛逛</a>
                    <a href="javascript:void(0);" class="btn_account" style="display: none;">去结算</a>
                    <a href="javascript:void(0);" class="btn_account_disabled" style="display: none;">去结算</a>
                    <div class="go_cash_tips" id="cannotPayNotice" style="display: none;">
                        <span>请将普通商品与预售商品分开结算,普通商品订单我们将为您优先发货。</span>
                    </div>
                </div>  
';}).'        </div>
    </div>
<!--凑单商品模板-->
<div class="together"></div>
<div class="histroy"></div>
'.'<!-- 凑单,最近浏览商品记录 -->
<script id="togetherProduct" type="text/x-handlebars-template">
    <div class="cartnew-goodslist cartnew-goodslist-open" id="orderProduct">
        <div class="title">
            <h2>
                <i class="icon-minus"></i>
                <i class="icon-add none"></i>
                {{header}}
            </h2>
            <div class="right" id="orderProductPage">
                {{#if hasPrev}}
                <span class="pageprev btn_type1"><a href="javascript:void(0);" title="上一页"><span></span></a></span>
                {{/if}}
                {{#if hasNext}}
                <span class="pagenext btn_type1"><a href="javascript:void(0);" title="下一页"><span></span></a></span>
                {{/if}}
            </div>
        </div>
        <div class="main">
            <ul>
                {{# item}}
                <li>
                    <div class="list">
                        <div class="thumb">
                            <a href="{{href}}" title="{{title}}" target="_blank">
                                <img src="{{img}}" alt="{{alt}}">
                            </a>
                        </div>
                        <div class="name">
                            <a href="{{href}}" target="_blank">
                                <h3>{{title}}</h3>
                            </a>
                        </div>
                        <div class="price">
                        {{#if marketPrice}}
                            <del>¥{{marketPrice}}</del>

                        {{/if}}
                            ¥{{price}}</div>
                        <div class="op">
                            <a href="javascript:void(0);" data-id="{{id}}" class="btn_view_s"></a>
                        </div>
                    </div>
                </li>
                {{/ item}}
            </ul>
        </div>
    </div>
</script>'.'<!-- 商品信息详情 -->
    <div class="goods-detail"></div>
    <div class="loading"><span></span>请稍后...</div>
</div>
<!-- 商品详细信息窗口 -->

<script type="text/javascript"> 
(function (d) {	 
window.bd_cpro_rtid="P1fsPWc";	 
var s = d.createElement("script");s.type = "text/javascript";s.async = true;s.src = location.protocol + "//cpro.baidu.com/cpro/ui/rt.js";	 
var s0 = d.getElementsByTagName("script")[0];s0.parentNode.insertBefore(s, s0); 
})(document);	 
</script>
<script type="text/javascript" src="http://static.criteo.net/js/ld/ld.js" async="true"></script>
<script type="text/javascript">
window.criteo_q = window.criteo_q || [];
window.criteo_q.push(
{event:"setAccount", account: 16184},
{event:"setCustomerId", id: "'.Plugin\LCRun3::debug('[uid]', 'encq', $cx, Plugin\LCRun3::debug('[uid]', 'v', $cx, $in, array('uid'))).'"},
{event:"setSiteType", type: "d"}, 
{event:"viewBasket", item: '.Plugin\LCRun3::debug('[cartEnsure].[criteo]', 'raw', $cx, Plugin\LCRun3::debug('[cartEnsure].[criteo]', 'v', $cx, $in, array('cartEnsure','criteo'))).' }
);
</script>
<!-- 聚效 -->
<script type="text/javascript">
var _mvq = window._mvq || []; 
window._mvq = _mvq;
_mvq.push([\'$setAccount\', \'m-23428-1\']);
_mvq.push([\'$setGeneral\', \'cartview\', \'\', /*用户名*/ \'\', \''.Plugin\LCRun3::debug('[uid]', 'encq', $cx, Plugin\LCRun3::debug('[uid]', 'v', $cx, $in, array('uid'))).'\']);
_mvq.push([\'$logConversion\']);
_mvq.push([\'$addItem\', \'\', /*商品id*/ \''.Plugin\LCRun3::debug('[cartEnsure].[ids]', 'encq', $cx, Plugin\LCRun3::debug('[cartEnsure].[ids]', 'v', $cx, $in, array('cartEnsure','ids'))).'\', \'\', \'\']);
_mvq.push([\'$logData\']);
</script>
<script>
!function(w,d,e){
var _money=\''.Plugin\LCRun3::debug('[cartEnsure].[ipinyouAmount]', 'encq', $cx, Plugin\LCRun3::debug('[cartEnsure].[ipinyouAmount]', 'v', $cx, $in, array('cartEnsure','ipinyouAmount'))).'\';
var _productList=\''.Plugin\LCRun3::debug('[cartEnsure].[ipinyou]', 'encq', $cx, Plugin\LCRun3::debug('[cartEnsure].[ipinyou]', 'v', $cx, $in, array('cartEnsure','ipinyou'))).'\';
var b=location.href,c=d.referrer,f,s,g=d.cookie,h=g.match(/(^|;)\\s*ipycookie=([^;]*)/),i=g.match(/(^|;)\\s*ipysession=([^;]*)/);if (w.parent!=w){f=b;b=c;c=f;};u=\'//stats.ipinyou.com/cvt?a=\'+e(\'MC.Ok.7NFMIlCH_F_LE2riRlF2r_\')+\'&c=\'+e(h?h[2]:\'\')+\'&s=\'+e(i?i[2].match(/jump\\%3D(\\d+)/)[1]:\'\')+\'&u=\'+e(b)+\'&r=\'+e(c)+\'&rd=\'+(new Date()).getTime()+\'&Money=\'+e(_money)+\'&ProductList=\'+e(_productList)+\'&e=\';
function _(){if(!d.body){setTimeout(_(),100);}else{s= d.createElement(\'script\');s.src = u;d.body.insertBefore(s,d.body.firstChild);}}_();
}(window,document,encodeURIComponent);
</script>
'.''.'    <div class="yoho-footer">
'.Plugin\LCRun3::debug('if [footerTop]', 'ifv', $cx, Plugin\LCRun3::debug('[footerTop]', 'v', $cx, $in, array('footerTop')), $in, function($cx, $in) {return '            <div class="footertop">
                <div class="index-foot">
                    <dl class="center-content clearfix">
                        <dd>
                            <div class="foot-panel">
                                <div class="title">
                                    <div class="title-line"></div>
                                    <div class="text">
                                        <span>有货SERVICES</span>
                                    </div>
                                </div>
                                <div id="foot-services">
                                    <ul class="two-dim clearfix">
                                        <li class="left">
'.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '                                                <img class="dim-img lazy" data-original="http://webstatic.dev.yohobuy.com/img/index/qr-app.png">
';}, function($cx, $in) {return '                                                <img class="dim-img lazy" data-original="http://cdn.yoho.cn/yohobuy/assets/img/index/qr-app.png">
';}).'                                            <p>YOHO!有货</p>
                                        </li>
                                        <li class="left">
'.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '                                                <img class="dim-img lazy" data-original="http://webstatic.dev.yohobuy.com/img/index/qr-weixin.png">
';}, function($cx, $in) {return '                                                <img class="dim-img lazy" data-original="http://cdn.yoho.cn/yohobuy/assets/img/index/qr-app.png">
';}).'                                            <p>微信</p>
                                        </li>
                                        <li class="left">
'.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '                                                <img class="dim-img lazy" data-original="http://webstatic.dev.yohobuy.com/img/index/qr-weibo.png">
';}, function($cx, $in) {return '                                                <img class="dim-img lazy" data-original="http://cdn.yoho.cn/yohobuy/assets/img/index/qr-app.png">
';}).'                                            <p>微博</p>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                            <p class="item-nav center">
                                <span class="iconfont cur" key="0">&#xe619;</span>
                            </p>
                        </dd>
                        <dd>
                            <div id="feed-back-box-list" class="foot-panel">
                                <div class="title">
                                    <div class="title-line"></div>
                                    <div class="text">
                                        <span>意见反馈</span>
                                    </div>
                                </div>
                                <ul class="vote clearfix">
                                    <li key="0">
                                        <form class="feed-back-form" action="#">
                                            <div>您喜欢有货的新版吗?</div>
                                            <div class="vote-item clearfix">
                                                <p>
                                                    <input type="radio" name="solution" value="33">非常喜欢
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="34">喜欢
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="35">一般般
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="36">不喜欢
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="37">非常不喜欢
                                                </p>
                                            </div>
                                            <div>
                                                <span class="feed-back-btn button">提交</span>
                                            </div>
                                            <input class="question-id" type="hidden" name="question_id" value="38">
                                            <input class="feedback-id" type="hidden" name="feedback_id" value="5">
                                        </form>
                                    </li>
                                    <li class="hide" key="1">
                                        <form class="feed-back-form" action="#">
                                            <div>您可以方便的找到想查看的内容吗?</div>
                                            <div class="vote-item clearfix">
                                                <p>
                                                    <input type="radio" name="solution" value="38">非常方便
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="39">方便
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="40">一般般
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="41">不方便
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="42">非常不方便
                                                </p>
                                            </div>
                                            <div>
                                                <span class="feed-back-btn button">提交</span>
                                            </div>
                                            <input class="question-id" type="hidden" value="39">
                                            <input class="feedback-id" type="hidden" value="5">
                                        </form>
                                    </li>
                                    <li class="hide" key="2">
                                        <form class="feed-back-form" action="#">
                                            <div>您对新版还有哪些意见或建议?</div>
                                            <textarea name="answer" id="feedback-answer" class="feedback-answer"></textarea>
                                            <div>
                                                <span class="feed-back-btn button">提交</span>
                                            </div>
                                            <input class="question-id" type="hidden" value="37">
                                            <input class="feedback-id" type="hidden" value="5">
                                        </form>
                                    </li>
                                </ul>
                            </div>
                            <p id="feed-back-page" class="item-nav center">
                                <span class="iconfont cur">&#xe619;</span>
                                <span class="iconfont ">&#xe619;</span>
                                <span class="iconfont ">&#xe619;</span>
                            </p>
                        </dd>
                        <dd class="last">
                            <div class="foot-panel">
                                <div class="title">
                                    <div class="title-line"></div>
                                    <div class="text">
                                        <span>更多 YOHO!产品</span>
                                    </div>
                                </div>
                                <div id="foot-mobile">
                                    <ul class="mobile clearfix">
                                        <li>
                                            <a href="http://www.yohomars.com/" target="_blank">
'.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '                                                    <img class="lazy" data-original="http://webstatic.dev.yohobuy.com/img/index/mars.png">
';}, function($cx, $in) {return '                                                    <img class="lazy" data-original="http://cdn.yoho.cn/yohobuy/assets/img/index/mars.png">
';}).'                                            </a>
                                        </li>
                                        <li>
                                            <a href="http://app.yohoshow.com/" target="_blank">
'.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '                                                    <img class="lazy" data-original="http://webstatic.dev.yohobuy.com/img/index/show.png">
';}, function($cx, $in) {return '                                                    <img class="lazy" data-original="http://cdn.yoho.cn/yohobuy/assets/img/index/show.png">
';}).'                                            </a>
                                        </li>
                                        <li>
                                            <a href="http://www.yoho.cn/product#yoho" target="_blank">
'.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '                                                    <img class="lazy" data-original="http://webstatic.dev.yohobuy.com/img/index/yoho.png">
';}, function($cx, $in) {return '                                                    <img class="lazy" data-original="http://cdn.yoho.cn/yohobuy/assets/img/index/yoho.png">
';}).'                                            </a>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                            <p class="item-nav center">
                                <span class="iconfont cur">&#xe619;</span>
                            </p>
                        </dd>
                    </dl>
                </div>
            </div>
';}).'        <div class="footerbottom">
            <div class="promise">
                <div class="center-content clearfix">
                    <div class="left">
                        <span class="iconfont rgbf">&#xe63d;</span>
                        <span class="red">100%</span>
                        <span class="rgbf">品牌正品</span>
                    </div>
                    <div class="left">
                        <span class="iconfont rgbf">&#xe63c;</span>
                        <span class="red">7天</span>
                        <span class="rgbf">无理由退换货</span>
                    </div>
                    <div class="left">
                        <span class="iconfont rgbf">&#xe63b;</span>
                        <span class="red">便捷</span>
                        <span class="rgbf">在线客服</span>
                    </div>
                    <div class="right subscribe footer-right">
                        <input id="subscriber-box"  class="rgb6 top" name="subscriberBox"value="订阅我们的邮件">
                        <a id="subscriber-btn"  href="javascript:void(0);" class="iconfont rgbf">&#xe61b;</a>
                    </div>
                </div>
            </div>
            <div class="footer-help">
                <div class="center-content clearfix">
                    <div class="left">
                        <ul class="clearfix">
                            <li class="left">
                                <p>
                                    <span>新手指南</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=81#help_b00reg" target="_blank">注册登录</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=83" target="_blank">选购商品</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=103" target="_blank">订单支付</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=85" target="_blank">收货退款</a>
                                </p>
                            </li>
                            <li class="left">
                                <p>
                                    <span>会员中心</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=87" target="_blank">YOHO币</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=91" target="_blank">会员制度</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=89" target="_blank">账户管理</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=93" target="_blank">密码管理</a>
                                </p>
                            </li>
                            <li class="left">
                                <p>
                                    <span>购物指南</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=95" target="_blank">全球购专区</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=97" target="_blank">尺码选择</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=99" target="_blank">发票</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=101" target="_blank">商品咨询</a>
                                </p>
                            </li>
                            <li class="left">
                                <p>
                                    <span>支付方式</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=105" target="_blank">在线支付</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=107" target="_blank">货到付款</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=109" target="_blank">优惠券</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=111" target="_blank">YOHO币支付</a>
                                </p>
                            </li>
                            <li class="left">
                                <p>
                                    <span>配送方式</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=113" target="_blank">配送时间</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=115" target="_blank">配送范围</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=119" target="_blank">顺丰速运</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=117" target="_blank">商品验收与签收</a>
                                </p>
                            </li>
                            <li class="left">
                                <p>
                                    <span>售后服务</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=121" target="_blank">退换货政策</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=123" target="_blank">退换货流程</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=125" target="_blank">退款方式与时效</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=127" target="_blank">投诉与建议</a>
                                </p>
                            </li>
                            <li class="left">
                                <p>
                                    <span>APP常见问题</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=133" target="_blank">IPhone版</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=135" target="_blank">Android版</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=137" target="_blank">wap版</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=139" target="_blank">IPAD版</a>
                                </p>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
            <div class="footer-link">
                <div class="center-content clearfix">
                    <div class="left right-flag">
                        <a href="https://ss.knet.cn/verifyseal.dll?sn=e14021832010046477dka7000000&amp;ct=df&amp;a=1&amp;pa=0.5902942178957805" target="_blank" rel="nofollow">
                            <img src="http://static.yohobuy.com/images/v3/icon/credit-flag3.png">
                        </a>
                        <a href="http://www.isc.org.cn/" target="_blank" rel="nofollow">
                            <img src="http://static.yohobuy.com/images/v3/icon/isc2.png">
                        </a>
                    </div>
                    <div class="left about-us">
                        <p>
                            <a href="http://www.yohobuy.com">返回首页</a>
                            <span>|</span>
                            <a href="http://www.yohobuy.com">YOHO!有货</a>
                            <span>|</span>
                            <a href="http://www.yohobuy.com/newpower.html">新力传媒</a>
                            <span>|</span>
                            <a href="http://www.yohobuy.com/contact.html">联系我们</a>
                            <span>|</span>
                            <a href="http://shop.yohobuy.com/settled">商家入驻</a>
                            <span>|</span>
                            <a href="http://www.yohobuy.com/privacy.html">隐私条款</a>
                            <span>|</span>
                            <a href="http://www.yohobuy.com/link.html">友情链接</a>
                        </p>
                        <p>
                            CopyRight © 2007-2016 南京新与力文化传播有限公司
                            <a class="rbg6" href="http://www.miibeian.gov.cn/" target="_blank">苏ICP备09011225号</a>
                            NewPower Co. 版权所有 经营许可证编号:苏B2-20120395
                        </p>
                    </div>
    
                </div>
            </div>
        </div>
        <div class="return-top hide">
            <span class="iconfont">&#xe610;</span>
        </div>
    </div>'.'    
'.Plugin\LCRun3::debug('if [rlsEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[rlsEnv]', 'v', $cx, $in, array('rlsEnv')), $in, function($cx, $in) {return '    <script src="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/lib.js"></script>
    <script src="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/index.js"></script>
';}).''.Plugin\LCRun3::debug('if [preEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[preEnv]', 'v', $cx, $in, array('preEnv')), $in, function($cx, $in) {return '    <script src="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/lib.js"></script>
    <script src="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/index-debug.js"></script>
';}).''.Plugin\LCRun3::debug('if [testEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[testEnv]', 'v', $cx, $in, array('testEnv')), $in, function($cx, $in) {return '    <script src="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/lib.js"></script>
    <script src="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/index-debug.js"></script>
';}).''.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '    <script src="http://localhost:8001/static/js/sea.js?nowrap"></script>
    <script>
        seajs.config({
            base: \'http://localhost:8001/\'
        });
    </script>
';}).''.'    <script>
        seajs.use(\'js/common\');
    </script>
'.Plugin\LCRun3::debug('[headerdata]', 'sec', $cx, Plugin\LCRun3::debug('[headerdata]', 'v', $cx, $in, array('headerdata')), $in, false, function($cx, $in) {return '    <script>
        seajs.use(\'js/header\');
    </script>
';}).''.Plugin\LCRun3::debug('[simpleHeader]', 'sec', $cx, Plugin\LCRun3::debug('[simpleHeader]', 'v', $cx, $in, array('simpleHeader')), $in, false, function($cx, $in) {return '    <script>
        seajs.use(\'js/simple-header\');
    </script>
';}).''.Plugin\LCRun3::debug('if [boysHomePage]', 'ifv', $cx, Plugin\LCRun3::debug('[boysHomePage]', 'v', $cx, $in, array('boysHomePage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/index/index\');
    </script>
';}).''.Plugin\LCRun3::debug('if [searchListPage]', 'ifv', $cx, Plugin\LCRun3::debug('[searchListPage]', 'v', $cx, $in, array('searchListPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/product/brand\');
        seajs.use([\'js/product/list\', \'js/product/product\'], function (list, product) {
            product.init(5);
            window.onresize = function () {
                setTimeout(function () {
                    product.init(5);
                }, 300);
            };
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [brandPage]', 'ifv', $cx, Plugin\LCRun3::debug('[brandPage]', 'v', $cx, $in, array('brandPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/product/brand\');
        seajs.use([\'js/product/list\', \'js/product/product\'], function (list, product) {
            product.init(4);
            window.onresize = function () {
                setTimeout(function () {
                    product.init(4);
                }, 300);
            };
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [productListPage]', 'ifv', $cx, Plugin\LCRun3::debug('[productListPage]', 'v', $cx, $in, array('productListPage')), $in, function($cx, $in) {return '    <script>
        seajs.use([\'js/product/list\', \'js/product/product\'], function (list, product) {
            product.init(4);
            window.onresize = function () {
                setTimeout(function () {
                    product.init(4);
                }, 300);
            };
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [productDetailPage]', 'ifv', $cx, Plugin\LCRun3::debug('[productDetailPage]', 'v', $cx, $in, array('productDetailPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/product/item\');
    </script>
';}).''.Plugin\LCRun3::debug('if [guangIndexPage]', 'ifv', $cx, Plugin\LCRun3::debug('[guangIndexPage]', 'v', $cx, $in, array('guangIndexPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/guang/index\');
    </script>
';}).''.Plugin\LCRun3::debug('if [guangDetailPage]', 'ifv', $cx, Plugin\LCRun3::debug('[guangDetailPage]', 'v', $cx, $in, array('guangDetailPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/guang/detail\');
    </script>
';}).''.Plugin\LCRun3::debug('if [guangListPage]', 'ifv', $cx, Plugin\LCRun3::debug('[guangListPage]', 'v', $cx, $in, array('guangListPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/guang/list\');
    </script>
';}).''.Plugin\LCRun3::debug('if [saleIndexPage]', 'ifv', $cx, Plugin\LCRun3::debug('[saleIndexPage]', 'v', $cx, $in, array('saleIndexPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/sale/index\');
    </script>
';}).''.Plugin\LCRun3::debug('if [saleListPage]', 'ifv', $cx, Plugin\LCRun3::debug('[saleListPage]', 'v', $cx, $in, array('saleListPage')), $in, function($cx, $in) {return '    <script>
        seajs.use([\'js/product/list\', \'js/product/product\', \'js/sale/banner\'], function (list, product) {
            product.init(4);
            window.onresize = function () {
                setTimeout(function () {
                    product.init(4);
                }, 300);
            };
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [saleCatPage]', 'ifv', $cx, Plugin\LCRun3::debug('[saleCatPage]', 'v', $cx, $in, array('saleCatPage')), $in, function($cx, $in) {return '    <script>
        seajs.use([\'js/product/list\', \'js/product/product\', \'js/sale/banner\'], function (list, product) {
            product.init(4);
            window.onresize = function () {
                setTimeout(function () {
                    product.init(4);
                }, 300);
            };
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [loginPage]', 'ifv', $cx, Plugin\LCRun3::debug('[loginPage]', 'v', $cx, $in, array('loginPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/login\');
    </script>
';}).''.Plugin\LCRun3::debug('if [thirdLogin]', 'ifv', $cx, Plugin\LCRun3::debug('[thirdLogin]', 'v', $cx, $in, array('thirdLogin')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/thirdlogin\');
    </script>
';}).''.Plugin\LCRun3::debug('if [enablePerfectInformation]', 'ifv', $cx, Plugin\LCRun3::debug('[enablePerfectInformation]', 'v', $cx, $in, array('enablePerfectInformation')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/third-pwd\');
    </script>
';}).''.Plugin\LCRun3::debug('if [thirdRelatePage]', 'ifv', $cx, Plugin\LCRun3::debug('[thirdRelatePage]', 'v', $cx, $in, array('thirdRelatePage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/relate\');
    </script>
';}).''.Plugin\LCRun3::debug('if [registerPage]', 'ifv', $cx, Plugin\LCRun3::debug('[registerPage]', 'v', $cx, $in, array('registerPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/reg\', function (reg) {
            reg.init(\'reg\');
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [thirdPage]', 'ifv', $cx, Plugin\LCRun3::debug('[thirdPage]', 'v', $cx, $in, array('thirdPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/reg\', function (reg) {
            reg.init(\'third\');
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [backPage]', 'ifv', $cx, Plugin\LCRun3::debug('[backPage]', 'v', $cx, $in, array('backPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/back\');
    </script>
';}).''.Plugin\LCRun3::debug('if [resetPage]', 'ifv', $cx, Plugin\LCRun3::debug('[resetPage]', 'v', $cx, $in, array('resetPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/reset\');
    </script>
';}).''.Plugin\LCRun3::debug('if [vertificationPage]', 'ifv', $cx, Plugin\LCRun3::debug('[vertificationPage]', 'v', $cx, $in, array('vertificationPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/vertification\');
    </script>
';}).''.Plugin\LCRun3::debug('if [hotrankPage]', 'ifv', $cx, Plugin\LCRun3::debug('[hotrankPage]', 'v', $cx, $in, array('hotrankPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/product/hotrank\');
    </script>
';}).''.Plugin\LCRun3::debug('if [brandsHomePage]', 'ifv', $cx, Plugin\LCRun3::debug('[brandsHomePage]', 'v', $cx, $in, array('brandsHomePage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/brand/index\');
    </script>
';}).''.Plugin\LCRun3::debug('if [orderEnsurePage]', 'ifv', $cx, Plugin\LCRun3::debug('[orderEnsurePage]', 'v', $cx, $in, array('orderEnsurePage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/order/ensure\');
    </script>
';}).''.Plugin\LCRun3::debug('if [meIndexPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meIndexPage]', 'v', $cx, $in, array('meIndexPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/index\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meOrdersPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meOrdersPage]', 'v', $cx, $in, array('meOrdersPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/orders\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meFavoritePage]', 'ifv', $cx, Plugin\LCRun3::debug('[meFavoritePage]', 'v', $cx, $in, array('meFavoritePage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/favorite\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meCurrencyPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meCurrencyPage]', 'v', $cx, $in, array('meCurrencyPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/currency\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meReturnsPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meReturnsPage]', 'v', $cx, $in, array('meReturnsPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/returns\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meCommentPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meCommentPage]', 'v', $cx, $in, array('meCommentPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/comment\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meComplaintsPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meComplaintsPage]', 'v', $cx, $in, array('meComplaintsPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/complaints\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meMessagePage]', 'ifv', $cx, Plugin\LCRun3::debug('[meMessagePage]', 'v', $cx, $in, array('meMessagePage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/message\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meEditPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meEditPage]', 'v', $cx, $in, array('meEditPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/edit\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meGiftPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meGiftPage]', 'v', $cx, $in, array('meGiftPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/gift\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meValidatePage]', 'ifv', $cx, Plugin\LCRun3::debug('[meValidatePage]', 'v', $cx, $in, array('meValidatePage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/validate\');
            seajs.use(\'js/passport/mail-phone-regx\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meAddressPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meAddressPage]', 'v', $cx, $in, array('meAddressPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/address\');
            seajs.use(\'js/home/common-address\');
        </script>
';}).''.Plugin\LCRun3::debug('if [helpSearchPage]', 'ifv', $cx, Plugin\LCRun3::debug('[helpSearchPage]', 'v', $cx, $in, array('helpSearchPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/help/search\');
        </script>
';}).''.Plugin\LCRun3::debug('if [cartEnsurePage]', 'ifv', $cx, Plugin\LCRun3::debug('[cartEnsurePage]', 'v', $cx, $in, array('cartEnsurePage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/cart/cart\');
        </script>
';}).'    
'.Plugin\LCRun3::debug('if [payPage]', 'ifv', $cx, Plugin\LCRun3::debug('[payPage]', 'v', $cx, $in, array('payPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/shopping/pay\');
        </script>
';}).'    
'.Plugin\LCRun3::debug('if [wechatqrcodePage]', 'ifv', $cx, Plugin\LCRun3::debug('[wechatqrcodePage]', 'v', $cx, $in, array('wechatqrcodePage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/pay/wechatqrcode\');
        </script>
';}).'    
'.Plugin\LCRun3::debug('if [settledPage]', 'ifv', $cx, Plugin\LCRun3::debug('[settledPage]', 'v', $cx, $in, array('settledPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/about/settled\');
        </script>
    ';}).''.''.'    <!-- Google Tag Manager -->
    <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-W958MG" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
    <script>
    var _hmt = _hmt || [];
    var _gaq = _gaq || [];
    (function() {
        function async_load(){
            (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':
                new Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],
                j=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=
                \'//www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);
            })(window,document,\'script\',\'dataLayer\',\'GTM-W958MG\');
            (function() {
                _gaq.push([\'_setAccount\', \'UA-48997038-32\']);
                _gaq.push([\'_trackPageview\']);
                var ga = document.createElement(\'script\'); 
                ga.type = \'text/javascript\'; ga.async = true;
                ga.src = (\'https:\' == document.location.protocol ? \'https://ssl\' : \'http://www\') + \'.google-analytics.com/ga.js\';
                var s = document.getElementsByTagName(\'script\')[0]; s.parentNode.insertBefore(ga, s);
            })();
            (function() {
                var hm = document.createElement("script");
                hm.src = "//hm.baidu.com/hm.js?c6ee7218b8321cb65fb2e98f284d8311";
                hm.async = 1;
                var s = document.getElementsByTagName("script")[0];
                s.parentNode.insertBefore(hm, s);
            })();
            (function() {
                var hm = document.createElement("script");
                hm.src = "//hm.baidu.com/hm.js?65dd99e0435a55177ffda862198ce841";
                hm.async = 1;
                var s = document.getElementsByTagName("script")[0];
                s.parentNode.insertBefore(hm, s);
            })();
            (function() {
                var hm = document.createElement("script");
                hm.src = "http://static.yohobuy.com/js/analytics/analysis.js";
                hm.async = 1;
                var s = document.getElementsByTagName("script")[0];
                s.parentNode.insertBefore(hm, s);
            })();
            (function() {
                var hm = document.createElement("script");
                hm.src = "http://static.criteo.net/js/ld/ld.js";
                hm.async = 1;
                var s = document.getElementsByTagName("script")[0];
                s.parentNode.insertBefore(hm, s);
                var u = _ozuid || "";
                u = (u == 0) ? "" : u;
                window.criteo_q = window.criteo_q || [];
                window.criteo_q.push({event: "setAccount", account: 16184 },{event: "setCustomerId", id: u},{event: "setSiteType", type: "d" },{event: "viewHome" });
            })();
        }
        if (window.addEventListener) {
            window.addEventListener(\'load\', async_load, false);
        } else if (window.attachEvent) {
           window.attachEvent(\'onload\', async_load);
        }
    })();
    </script>
    <script>
        window._py = window._py||[];
        window._py.push([\'a\', \'MC..o8vMMWxEXDCiqYckD81lUX\']);
        window._py.push([\'domain\',\'stats.ipinyou.com\']);
        window._py.push([\'e\',\'\']);
        if(typeof _goodsData!=\'undefined\'){
            window._py.push([\'pi\',_goodsData]);
        }
        -function(d){
            var f = \'https:\' == d.location.protocol;var c = d.createElement(\'script\');c.type=\'text/javascript\';c.async=1;
            c.src=(f ? \'https\' : \'http\') + \'://\'+(f?\'fm.ipinyou.com\':\'fm.p0y.cn\')+\'/j/t/adv.js\';
            var h = d.getElementsByTagName("script")[0];h.parentNode.insertBefore(c, h);
        }(document);
    </script>
    <script src="http://static.yohobuy.com/js/v3/o_code.js?v=20150420" async="async"></script>
'.'    </body>
</html>
'.'';
}
?>