list.php 40.2 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
<?php

$this->title = $this->params['main_title'].'-'.$this->params['sub_title'];
?>

<div class="panel panel-default">
    <div class="panel-body">
        <form aciton="" method="GET" class="form-inline">
            <div>
                <span id="filterForm1">
                  
                    <div class="form-group">
                      <label class="control-label">SKN编号:</label>
                      
                        <input type="text" class="form-control" name="filter[product_skn]" id="filter_product_skn">
                      
                    </div>
                  
                  
                    <div class="form-group">
                      <label class="control-label">库存情况:</label>
                      
                        <span class="ckbox ckbox-default">
                          <input type="checkbox" value="1" name="filter[stock_status][]" id="filter_stock_status_0">
                          <label for="filter_stock_status_0">有库存</label>
                        <span class="ckbox ckbox-default">
                          <input type="checkbox" value="2" name="filter[stock_status][]" id="filter_stock_status_1">
                          <label for="filter_stock_status_1">无库存</label>
                      
                      
                    </div>
                  
                  
                    <br>
                  
                    <br>
                  
                    <div class="form-group">
                      <label class="control-label">商品名称:</label>
                      
                        <input type="text" class="form-control" name="filter[product_name]" id="filter_product_name">
                      
                    </div>
                  
                  
                    <br>
                  
                    <br>
                  
                    <div class="form-group">
                      <label class="control-label">全球购隐藏:</label>
                      
                        <span class="rdio rdio-default">
                          <input type="radio" value="2" name="filter[is_hide]" id="filter_is_hide_0">
                          <label for="filter_is_hide_0"></label>
                        <span class="rdio rdio-default">
                          <input type="radio" value="1" name="filter[is_hide]" id="filter_is_hide_1">
                          <label for="filter_is_hide_1"></label>
                      
                      
                    </div>
                  
                  
                    <input type="submit" class="btn btn-primary btn-sm mr5" value="查询" id="filter_submit">
                  
                  
                    <input type="reset" onclick="filterReset(this)" class="btn btn-primary btn-sm mr5" value="重置" id="filter_reset">
                  
                  <input type="hidden" value="1" name="filter[filterFormCount]">
              </div>
        </form> 
    </div>
</div>
<form aciton="" method="GET" class="form-inline">
    <div>
        <div class="form-group">
            <span class="rdio rdio-default">
                <input type="radio" checked="checked" value="" id="radioDefault1" name="condition[status]">
                <label for="radioDefault1">全部 ( <span style="color:blue" id="total_all">11090</span> )</label>
            </span>
            <span class="rdio rdio-default">
                <input type="radio" value="1" id="radioDefault2" name="condition[status]">
                <label for="radioDefault2">暂存 ( <span style="color:blue" id="total_storage">18</span> )</label>
            </span>
            <span class="rdio rdio-default">
                <input type="radio" value="2" id="radioDefault3" name="condition[status]">
                <label for="radioDefault3">待审核 ( <span style="color:blue" id="total_submit">130</span> )</label>
            </span>
            <span class="rdio rdio-default">
                <input type="radio" value="3" id="radioDefault4" name="condition[status]">
                <label for="radioDefault4">待上架 ( <span style="color:blue" id="total_wait">0</span> )</label>
            </span>
            <span class="rdio rdio-default">
                <input type="radio" value="4" id="radioDefault5" name="condition[status]">
                <label for="radioDefault5">已上架 ( <span style="color:blue" id="total_on">4051</span> )</label>
            </span>
            <span class="rdio rdio-default">
                <input type="radio" value="5" id="radioDefault6" name="condition[status]">
                <label for="radioDefault6">已下架 ( <span style="color:blue" id="total_off">6891</span> )</label>
            </span>
        </div>
    </div>
</form>

<div class="form-group">
    <label>
        <button onclick="set_shelf($('input[name^=product_skn]:checked'), 'on')" class="btn btn-success">批量上架</button>
    </label>
    <label>
        <button onclick="set_shelf($('input[name^=product_skn]:checked'), 'off')" class="btn btn-danger">批量下架</button>
    </label>
</div>

<div class="row">
    <div class="col-md-12">
        <div class="table-responsive">
            <table class="table mb30">
                <thead>
                    <tr style="white-space:nowrap">
                        <th><input type="checkbox" onclick="checkall(this)">选择</th>
                        <th>图片</th>
                        <th>SKN编号</th>
                        <th>商品名称</th>
                        <th>品牌</th>
                        <th>分类</th>
                        <th>商品来源</th>
                        <th>所属网站</th>
                        <th>国家编号</th>
                        <th>更新时间</th>
                        <th>操作人</th>
                        <th>库存</th>
                        <th>爬虫链接状态</th>
                        <th>限量款</th>
                        <th>上架属性</th>
                        <th>排序</th>
                        <th>状态</th>
                        <th>操作</th>
                    </tr>
                </thead>
                <tbody>
                    <tr data-stock="1" data-source="1" data-status="2" data-id="5011880">
                        <td><input type="checkbox" value="5011880" name="product_skn[]"></td>
                        <td><img height="70" alt="商品封面图片" src="http://img13.static.yhbimg.com/global/2016/08/09/17/02c4f32295d862be8d7d332ecf9b42337d.jpg"></td>
                        <td>5011880</td>
                        <td>Obey 黑色快干短袖运动T恤</td>
                        <td>Obey</td>
                        <td>成人 / 上衣 / T恤 / T恤</td>
                        <td style="white-space:nowrap">海外网站爬取</td>
                        <td>ASOS英国</td>
                        <td>44:英国</td>
                        <td>2016-08-09 17:52:38</td>
                        <td>super_admin</td>
                        <td></td>
                        <td type="urlName">
                            <span type="urlName">生效</span>
                            <span type="close" style="display:none">/</span>
                        </td>
                        <td></td>
                        <td>自动上架</td>

                        <td type="order">
                            <span>/</span>
                            <input type="text" value="0" placeholder="回车保存" class="form-control" name="order" style="display:none;">
                        </td>

                        <td type="statusName">
                            <span>待审核</span>
                            <span type="close" style="display:none">已下架</span>
                            <span type="open" style="display:none">已上架</span>
                            <span type="ever_off" style="display:none">永久下架</span>
                        </td>
                        <td>

                            <button onclick="modalRemote('/product/info/view?product_skn=5011880', '#detail-info', 'get');" class="btn btn-white btn-metro">查看</button>

                            <a href="javascript:void(0)" class="btn btn-default btn-metro not-allowed">编辑商品</a>

                            <a href="javascript:void(0)" class="btn btn-default btn-metro not-allowed">编辑链接</a>

                            <span type="status">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed">上架</button>
                                <button type="close" onclick="set_shelf('5011880', 'off')" class="btn btn-danger btn-metro" style="display:none">下架</button>
                                <button type="open" onclick="set_shelf('5011880', 'on')" class="btn btn-success btn-metro" style="display:none">上架</button>
                            </span>

                            <span type="ever_off">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed">永久下架</button>
                                <button type="ever_off" onclick="set_shelf('5011880', 'ever_off')" class="btn btn-danger btn-metro" style="display:none">永久下架</button>
                            </span>                            
                        </td>
                    </tr>
                    <tr data-stock="1" data-source="1" data-status="2" data-id="5011879">
                        <td><input type="checkbox" value="5011879" name="product_skn[]"></td>
                        <td><img height="70" alt="商品封面图片" src="http://img11.static.yhbimg.com/global/2016/08/09/17/01163f0455a97d6c4d43c55fd929931e88.jpg"></td>
                        <td>5011879</td>
                        <td>Obey 墨绿色快干短袖运动T恤</td>
                        <td>Obey</td>
                        <td>成人 / 上衣 / T恤 / T恤</td>
                        <td style="white-space:nowrap">海外网站爬取</td>
                        <td>ASOS英国</td>
                        <td>44:英国</td>
                        <td>2016-08-09 17:51:39</td>
                        <td>super_admin</td>
                        <td></td>
                        <td type="urlName">
                            <span type="urlName">生效</span>
                            <span type="close" style="display:none">/</span>
                        </td>
                        <td></td>
                        <td>自动上架</td>

                        <td type="order">
                            <span>/</span>
                            <input type="text" value="0" placeholder="回车保存" class="form-control" name="order" style="display:none;">
                        </td>

                        <td type="statusName">
                            <span>待审核</span>
                            <span type="close" style="display:none">已下架</span>
                            <span type="open" style="display:none">已上架</span>
                            <span type="ever_off" style="display:none">永久下架</span>
                        </td>
                        <td>

                            <button onclick="modalRemote('/product/info/view?product_skn=5011879', '#detail-info', 'get');" class="btn btn-white btn-metro">查看</button>

                            <a href="javascript:void(0)" class="btn btn-default btn-metro not-allowed">编辑商品</a>

                            <a href="javascript:void(0)" class="btn btn-default btn-metro not-allowed">编辑链接</a>

                            <span type="status">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed">上架</button>
                                <button type="close" onclick="set_shelf('5011879', 'off')" class="btn btn-danger btn-metro" style="display:none">下架</button>
                                <button type="open" onclick="set_shelf('5011879', 'on')" class="btn btn-success btn-metro" style="display:none">上架</button>
                            </span>

                            <span type="ever_off">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed">永久下架</button>
                                <button type="ever_off" onclick="set_shelf('5011879', 'ever_off')" class="btn btn-danger btn-metro" style="display:none">永久下架</button>
                            </span>                            
                        </td>
                    </tr>
                    <tr data-stock="1" data-source="1" data-status="2" data-id="5011878">
                        <td><input type="checkbox" value="5011878" name="product_skn[]"></td>
                        <td><img height="70" alt="商品封面图片" src="http://img12.static.yhbimg.com/global/2016/08/09/17/02d209bcf97ecd5acc9420715ce8034fed.jpg"></td>
                        <td>5011878</td>
                        <td>Obey 浅褐色快干短袖运动T恤</td>
                        <td>Obey</td>
                        <td>成人 / 上衣 / T恤 / T恤</td>
                        <td style="white-space:nowrap">海外网站爬取</td>
                        <td>ASOS英国</td>
                        <td>44:英国</td>
                        <td>2016-08-09 17:49:22</td>
                        <td>super_admin</td>
                        <td></td>
                        <td type="urlName">
                            <span type="urlName">生效</span>
                            <span type="close" style="display:none">/</span>
                        </td>
                        <td></td>
                        <td>自动上架</td>

                        <td type="order">
                            <span>/</span>
                            <input type="text" value="0" placeholder="回车保存" class="form-control" name="order" style="display:none;">
                        </td>

                        <td type="statusName">
                            <span>待审核</span>
                            <span type="close" style="display:none">已下架</span>
                            <span type="open" style="display:none">已上架</span>
                            <span type="ever_off" style="display:none">永久下架</span>
                        </td>
                        <td>

                            <button onclick="modalRemote('/product/info/view?product_skn=5011878', '#detail-info', 'get');" class="btn btn-white btn-metro">查看</button>

                            <a href="javascript:void(0)" class="btn btn-default btn-metro not-allowed">编辑商品</a>

                            <a href="javascript:void(0)" class="btn btn-default btn-metro not-allowed">编辑链接</a>

                            <span type="status">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed">上架</button>
                                <button type="close" onclick="set_shelf('5011878', 'off')" class="btn btn-danger btn-metro" style="display:none">下架</button>
                                <button type="open" onclick="set_shelf('5011878', 'on')" class="btn btn-success btn-metro" style="display:none">上架</button>
                            </span>

                            <span type="ever_off">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed">永久下架</button>
                                <button type="ever_off" onclick="set_shelf('5011878', 'ever_off')" class="btn btn-danger btn-metro" style="display:none">永久下架</button>
                            </span>                            
                        </td>
                    </tr>
                    <tr data-stock="1" data-source="1" data-status="4" data-id="5011877">
                        <td><input type="checkbox" value="5011877" name="product_skn[]"></td>
                        <td><img height="70" alt="商品封面图片" src="http://img10.static.yhbimg.com/global/2016/08/09/00/01e4d9bea54bb37dd6f1c033bcd4d9dc3a.jpg"></td>
                        <td>5011877</td>
                        <td>Brixton 棕色棉质带装饰软呢帽</td>
                        <td>Brixton</td>
                        <td>成人 / 服配 / 帽子 / 礼帽</td>
                        <td style="white-space:nowrap">海外网站爬取</td>
                        <td>ASOS英国</td>
                        <td>44:英国</td>
                        <td>2016-08-09 16:12:43</td>
                        <td>super_admin</td>
                        <td></td>
                        <td type="urlName">
                            <span type="urlName" style="display: inline;">生效</span>
                            <span type="close" style="display:none">/</span>
                        </td>
                        <td></td>
                        <td>自动上架</td>

                        <td type="order">
                            <span style="display: none;">/</span>
                            <input type="text" value="0" placeholder="回车保存" class="form-control" name="order" style="">
                        </td>

                        <td type="statusName">
                            <span style="display: none;">已上架</span>
                            <span type="close" style="display:none">已下架</span>
                            <span type="open" style="">已上架</span>
                            <span type="ever_off" style="display:none">永久下架</span>
                        </td>
                        <td>

                            <button onclick="modalRemote('/product/info/view?product_skn=5011877', '#detail-info', 'get');" class="btn btn-white btn-metro">查看</button>

                            <a href="/product/info/update?product_skn=5011877&amp;step=1" class="btn btn-primary btn-metro">编辑商品</a>

                            <a href="/product/info/update?product_skn=5011877&amp;step=2" class="btn btn-primary btn-metro">编辑链接</a>

                            <span type="status">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">上架</button>
                                <button type="close" onclick="set_shelf('5011877', 'off')" class="btn btn-danger btn-metro" style="">下架</button>
                                <button type="open" onclick="set_shelf('5011877', 'on')" class="btn btn-success btn-metro" style="display:none">上架</button>
                            </span>

                            <span type="ever_off">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">永久下架</button>
                                <button type="ever_off" onclick="set_shelf('5011877', 'ever_off')" class="btn btn-danger btn-metro" style="">永久下架</button>
                            </span>                            
                        </td>
                    </tr>
                    <tr data-stock="1" data-source="1" data-status="4" data-id="5011876">
                        <td><input type="checkbox" value="5011876" name="product_skn[]"></td>
                        <td><img height="70" alt="商品封面图片" src="http://img10.static.yhbimg.com/global/2016/08/09/09/0140e7ebcf65f96e787025cb215bb8d873.jpg"></td>
                        <td>5011876</td>
                        <td>Brixton 宽檐撞色皮质带装饰呢帽</td>
                        <td>Brixton</td>
                        <td>成人 / 服配 / 帽子 / 礼帽</td>
                        <td style="white-space:nowrap">海外网站爬取</td>
                        <td>ASOS英国</td>
                        <td>44:英国</td>
                        <td>2016-08-09 16:03:30</td>
                        <td>super_admin</td>
                        <td></td>
                        <td type="urlName">
                            <span type="urlName" style="display: inline;">生效</span>
                            <span type="close" style="display:none">/</span>
                        </td>
                        <td></td>
                        <td>自动上架</td>

                        <td type="order">
                            <span style="display: none;">/</span>
                            <input type="text" value="0" placeholder="回车保存" class="form-control" name="order" style="">
                        </td>

                        <td type="statusName">
                            <span style="display: none;">已上架</span>
                            <span type="close" style="display:none">已下架</span>
                            <span type="open" style="">已上架</span>
                            <span type="ever_off" style="display:none">永久下架</span>
                        </td>
                        <td>

                            <button onclick="modalRemote('/product/info/view?product_skn=5011876', '#detail-info', 'get');" class="btn btn-white btn-metro">查看</button>

                            <a href="/product/info/update?product_skn=5011876&amp;step=1" class="btn btn-primary btn-metro">编辑商品</a>

                            <a href="/product/info/update?product_skn=5011876&amp;step=2" class="btn btn-primary btn-metro">编辑链接</a>

                            <span type="status">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">上架</button>
                                <button type="close" onclick="set_shelf('5011876', 'off')" class="btn btn-danger btn-metro" style="">下架</button>
                                <button type="open" onclick="set_shelf('5011876', 'on')" class="btn btn-success btn-metro" style="display:none">上架</button>
                            </span>

                            <span type="ever_off">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">永久下架</button>
                                <button type="ever_off" onclick="set_shelf('5011876', 'ever_off')" class="btn btn-danger btn-metro" style="">永久下架</button>
                            </span>                            
                        </td>
                    </tr>
                    <tr data-stock="1" data-source="1" data-status="4" data-id="5011875">
                        <td><input type="checkbox" value="5011875" name="product_skn[]"></td>
                        <td><img height="70" alt="商品封面图片" src="http://img12.static.yhbimg.com/global/2016/08/09/00/02dffd1e547eadb98ab5b0134d9cbbae51.jpg"></td>
                        <td>5011875</td>
                        <td>Brixton Matador黑色皮质带装饰呢帽</td>
                        <td>Brixton</td>
                        <td>成人 / 服配 / 帽子 / 礼帽</td>
                        <td style="white-space:nowrap">海外网站爬取</td>
                        <td>ASOS英国</td>
                        <td>44:英国</td>
                        <td>2016-08-09 17:49:30</td>
                        <td>super_admin</td>
                        <td></td>
                        <td type="urlName">
                            <span type="urlName" style="display: inline;">生效</span>
                            <span type="close" style="display:none">/</span>
                        </td>
                        <td></td>
                        <td>自动上架</td>

                        <td type="order">
                            <span style="display: none;">/</span>
                            <input type="text" value="0" placeholder="回车保存" class="form-control" name="order" style="">
                        </td>

                        <td type="statusName">
                            <span style="display: none;">已上架</span>
                            <span type="close" style="display:none">已下架</span>
                            <span type="open" style="">已上架</span>
                            <span type="ever_off" style="display:none">永久下架</span>
                        </td>
                        <td>

                            <button onclick="modalRemote('/product/info/view?product_skn=5011875', '#detail-info', 'get');" class="btn btn-white btn-metro">查看</button>

                            <a href="/product/info/update?product_skn=5011875&amp;step=1" class="btn btn-primary btn-metro">编辑商品</a>

                            <a href="/product/info/update?product_skn=5011875&amp;step=2" class="btn btn-primary btn-metro">编辑链接</a>

                            <span type="status">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">上架</button>
                                <button type="close" onclick="set_shelf('5011875', 'off')" class="btn btn-danger btn-metro" style="">下架</button>
                                <button type="open" onclick="set_shelf('5011875', 'on')" class="btn btn-success btn-metro" style="display:none">上架</button>
                            </span>

                            <span type="ever_off">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">永久下架</button>
                                <button type="ever_off" onclick="set_shelf('5011875', 'ever_off')" class="btn btn-danger btn-metro" style="">永久下架</button>
                            </span>                            
                        </td>
                    </tr>
                    <tr data-stock="1" data-source="1" data-status="4" data-id="5011874">
                        <td><input type="checkbox" value="5011874" name="product_skn[]"></td>
                        <td><img height="70" alt="商品封面图片" src="http://img12.static.yhbimg.com/global/2016/08/09/09/0271377dc21dfce9163546abe409861e24.jpg"></td>
                        <td>5011874</td>
                        <td>Brixton 流苏带宽檐黑色呢帽</td>
                        <td>Brixton</td>
                        <td>成人 / 服配 / 帽子 / 礼帽</td>
                        <td style="white-space:nowrap">海外网站爬取</td>
                        <td>ASOS英国</td>
                        <td>44:英国</td>
                        <td>2016-08-09 17:51:46</td>
                        <td>super_admin</td>
                        <td></td>
                        <td type="urlName">
                            <span type="urlName" style="display: inline;">生效</span>
                            <span type="close" style="display:none">/</span>
                        </td>
                        <td></td>
                        <td>自动上架</td>

                        <td type="order">
                            <span style="display: none;">/</span>
                            <input type="text" value="0" placeholder="回车保存" class="form-control" name="order" style="">
                        </td>

                        <td type="statusName">
                            <span style="display: none;">已上架</span>
                            <span type="close" style="display:none">已下架</span>
                            <span type="open" style="">已上架</span>
                            <span type="ever_off" style="display:none">永久下架</span>
                        </td>
                        <td>

                            <button onclick="modalRemote('/product/info/view?product_skn=5011874', '#detail-info', 'get');" class="btn btn-white btn-metro">查看</button>

                            <a href="/product/info/update?product_skn=5011874&amp;step=1" class="btn btn-primary btn-metro">编辑商品</a>

                            <a href="/product/info/update?product_skn=5011874&amp;step=2" class="btn btn-primary btn-metro">编辑链接</a>

                            <span type="status">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">上架</button>
                                <button type="close" onclick="set_shelf('5011874', 'off')" class="btn btn-danger btn-metro" style="">下架</button>
                                <button type="open" onclick="set_shelf('5011874', 'on')" class="btn btn-success btn-metro" style="display:none">上架</button>
                            </span>

                            <span type="ever_off">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">永久下架</button>
                                <button type="ever_off" onclick="set_shelf('5011874', 'ever_off')" class="btn btn-danger btn-metro" style="">永久下架</button>
                            </span>                            
                        </td>
                    </tr>
                    <tr data-stock="1" data-source="1" data-status="4" data-id="5011873">
                        <td><input type="checkbox" value="5011873" name="product_skn[]"></td>
                        <td><img height="70" alt="商品封面图片" src="http://img12.static.yhbimg.com/global/2016/08/09/00/02428dc77d4f304de513198b0789cf7890.jpg"></td>
                        <td>5011873</td>
                        <td>Brixton 黑色皮质带装饰软呢帽</td>
                        <td>Brixton</td>
                        <td>成人 / 服配 / 帽子 / 礼帽</td>
                        <td style="white-space:nowrap">海外网站爬取</td>
                        <td>ASOS英国</td>
                        <td>44:英国</td>
                        <td>2016-08-09 17:36:27</td>
                        <td>super_admin</td>
                        <td></td>
                        <td type="urlName">
                            <span type="urlName" style="display: inline;">生效</span>
                            <span type="close" style="display:none">/</span>
                        </td>
                        <td></td>
                        <td>自动上架</td>

                        <td type="order">
                            <span style="display: none;">/</span>
                            <input type="text" value="0" placeholder="回车保存" class="form-control" name="order" style="">
                        </td>

                        <td type="statusName">
                            <span style="display: none;">已上架</span>
                            <span type="close" style="display:none">已下架</span>
                            <span type="open" style="">已上架</span>
                            <span type="ever_off" style="display:none">永久下架</span>
                        </td>
                        <td>

                            <button onclick="modalRemote('/product/info/view?product_skn=5011873', '#detail-info', 'get');" class="btn btn-white btn-metro">查看</button>

                            <a href="/product/info/update?product_skn=5011873&amp;step=1" class="btn btn-primary btn-metro">编辑商品</a>

                            <a href="/product/info/update?product_skn=5011873&amp;step=2" class="btn btn-primary btn-metro">编辑链接</a>

                            <span type="status">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">上架</button>
                                <button type="close" onclick="set_shelf('5011873', 'off')" class="btn btn-danger btn-metro" style="">下架</button>
                                <button type="open" onclick="set_shelf('5011873', 'on')" class="btn btn-success btn-metro" style="display:none">上架</button>
                            </span>

                            <span type="ever_off">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">永久下架</button>
                                <button type="ever_off" onclick="set_shelf('5011873', 'ever_off')" class="btn btn-danger btn-metro" style="">永久下架</button>
                            </span>                            
                        </td>
                    </tr>
                    <tr data-stock="1" data-source="1" data-status="4" data-id="5011872">
                        <td><input type="checkbox" value="5011872" name="product_skn[]"></td>
                        <td><img height="70" alt="商品封面图片" src="http://img12.static.yhbimg.com/global/2016/08/09/00/02679eecb73a61b151725d59e1039afe7c.jpg"></td>
                        <td>5011872</td>
                        <td>Brixton 灰色棉质带装饰软呢帽</td>
                        <td>Brixton</td>
                        <td>成人 / 服配 / 帽子 / 礼帽</td>
                        <td style="white-space:nowrap">海外网站爬取</td>
                        <td>ASOS英国</td>
                        <td>44:英国</td>
                        <td>2016-08-09 16:12:52</td>
                        <td>super_admin</td>
                        <td></td>
                        <td type="urlName">
                            <span type="urlName" style="display: inline;">生效</span>
                            <span type="close" style="display:none">/</span>
                        </td>
                        <td></td>
                        <td>自动上架</td>

                        <td type="order">
                            <span style="display: none;">/</span>
                            <input type="text" value="0" placeholder="回车保存" class="form-control" name="order" style="">
                        </td>

                        <td type="statusName">
                            <span style="display: none;">已上架</span>
                            <span type="close" style="display:none">已下架</span>
                            <span type="open" style="">已上架</span>
                            <span type="ever_off" style="display:none">永久下架</span>
                        </td>
                        <td>

                            <button onclick="modalRemote('/product/info/view?product_skn=5011872', '#detail-info', 'get');" class="btn btn-white btn-metro">查看</button>

                            <a href="/product/info/update?product_skn=5011872&amp;step=1" class="btn btn-primary btn-metro">编辑商品</a>

                            <a href="/product/info/update?product_skn=5011872&amp;step=2" class="btn btn-primary btn-metro">编辑链接</a>

                            <span type="status">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">上架</button>
                                <button type="close" onclick="set_shelf('5011872', 'off')" class="btn btn-danger btn-metro" style="">下架</button>
                                <button type="open" onclick="set_shelf('5011872', 'on')" class="btn btn-success btn-metro" style="display:none">上架</button>
                            </span>

                            <span type="ever_off">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">永久下架</button>
                                <button type="ever_off" onclick="set_shelf('5011872', 'ever_off')" class="btn btn-danger btn-metro" style="">永久下架</button>
                            </span>                            
                        </td>
                    </tr>
                    <tr data-stock="1" data-source="1" data-status="4" data-id="5011871">
                        <td><input type="checkbox" value="5011871" name="product_skn[]"></td>
                        <td><img height="70" alt="商品封面图片" src="http://img11.static.yhbimg.com/global/2016/08/09/09/0195bb4616904c5fe9b0c35fe167f625c5.jpg"></td>
                        <td>5011871</td>
                        <td>Brixton 皮质带装饰软呢帽</td>
                        <td>Brixton</td>
                        <td>成人 / 服配 / 帽子 / 礼帽</td>
                        <td style="white-space:nowrap">海外网站爬取</td>
                        <td>ASOS英国</td>
                        <td>44:英国</td>
                        <td>2016-08-09 16:03:39</td>
                        <td>super_admin</td>
                        <td></td>
                        <td type="urlName">
                            <span type="urlName" style="display: inline;">生效</span>
                            <span type="close" style="display:none">/</span>
                        </td>
                        <td></td>
                        <td>自动上架</td>

                        <td type="order">
                            <span style="display: none;">/</span>
                            <input type="text" value="0" placeholder="回车保存" class="form-control" name="order" style="">
                        </td>

                        <td type="statusName">
                            <span style="display: none;">已上架</span>
                            <span type="close" style="display:none">已下架</span>
                            <span type="open" style="">已上架</span>
                            <span type="ever_off" style="display:none">永久下架</span>
                        </td>
                        <td>

                            <button onclick="modalRemote('/product/info/view?product_skn=5011871', '#detail-info', 'get');" class="btn btn-white btn-metro">查看</button>

                            <a href="/product/info/update?product_skn=5011871&amp;step=1" class="btn btn-primary btn-metro">编辑商品</a>

                            <a href="/product/info/update?product_skn=5011871&amp;step=2" class="btn btn-primary btn-metro">编辑链接</a>

                            <span type="status">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">上架</button>
                                <button type="close" onclick="set_shelf('5011871', 'off')" class="btn btn-danger btn-metro" style="">下架</button>
                                <button type="open" onclick="set_shelf('5011871', 'on')" class="btn btn-success btn-metro" style="display:none">上架</button>
                            </span>

                            <span type="ever_off">
                                <button type="disable" onclick="javascript:void(0)" class="btn btn-default btn-metro not-allowed" style="display: none;">永久下架</button>
                                <button type="ever_off" onclick="set_shelf('5011871', 'ever_off')" class="btn btn-danger btn-metro" style="">永久下架</button>
                            </span>                            
                        </td>
                    </tr>
                </tbody>
            </table>
        </div>
        <!-- table-responsive -->
        <span>共11090条记录</span><ul class="pagination pagination-metro pagination-split nomargin"><li class="disabled"><a href="javascript:void(0)"><i class="fa fa-angle-left"></i></a></li><li class="active"><a href="javascript:void(0)">1</a></li><li><a href="?page=2">2</a></li><li><a href="?page=3">3</a></li><li><a href="?page=4">4</a></li><li><a href="?page=5">5</a></li><li><a href="?page=1109">1109</a></li><li><a href="?page=2"><i class="fa fa-angle-right"></i></a></li></ul>    </div>
    <!-- col-md-12 -->
</div>
<div id="detail-info" role="dialog" tabindex="-1" class="modal fade bs-example-modal-lg">
    <div class="modal-dialog modal-lg">
        <div style="width:1080px" class="modal-content"></div>
    </div>
</div>

<script src="/js/My97DatePicker/WdatePicker.js" type="text/javascript"></script>
<style>
    .not-allowed{
        cursor:not-allowed;
    }
</style>