12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php defined('InShopNC') or exit('Access Invalid!');?>
- <div class="page">
- <div class="fixed-bar">
- <div class="item-title">
- <h3><?php echo $lang['nc_web_index'];?></h3>
- <ul class="tab-base">
- <li><a href="JavaScript:void(0);" class="current"><span><?php echo '板块区';?></span></a></li>
- <li><a href="index.php?act=web_api&op=focus_edit"><span><?php echo '焦点区';?></span></a></li>
- <li><a href="index.php?act=web_api&op=sale_edit&use=web"><span><?php echo '促销区';?></span></a></li>
- <li><a href="index.php?act=web_api&op=sale_edit&use=mobile"><span><?php echo '手机促销区';?></span></a></li>
- </ul>
- </div>
- </div>
- <div class="fixed-empty"></div>
- <table class="table tb-type2" id="prompt">
- <tbody>
- <tr class="space odd">
- <th colspan="12"><div class="title"><h5><?php echo $lang['nc_prompts'];?></h5><span class="arrow"></span></div></th>
- </tr>
- <tr>
- <td>
- <ul>
- <li><?php echo $lang['web_config_index_help1'];?></li>
- <li><?php echo $lang['web_config_index_help2'];?></li>
- <li><?php echo $lang['web_config_index_help3'];?></li>
- </ul></td>
- </tr>
- </tbody>
- </table>
- <table class="table tb-type2 nobdb">
- <thead>
- <tr class="thead">
- <th><?php echo $lang['nc_sort'];?></th>
- <th><?php echo $lang['web_config_web_name'];?></th>
- <th><?php echo $lang['web_config_style_name'];?></th>
- <th class="align-center"><?php echo $lang['web_config_update_time'];?></th>
- <th class="align-center"><?php echo $lang['nc_display'];?></th>
- <th class="align-center"><?php echo $lang['nc_handle'];?></th>
- </tr>
- </thead>
- <tbody>
- <?php if(!empty($output['web_list']) && is_array($output['web_list'])){ ?>
- <?php foreach($output['web_list'] as $k => $v){ ?>
- <tr class="hover">
- <td class="w48 sort"><?php echo $v['web_sort'];?></td>
- <td><?php echo $v['web_name'];?></td>
- <td><?php echo $output['style_array'][$v['style_name']];?></td>
- <td class="w150 align-center"><?php echo date('Y-m-d H:i:s',$v['update_time']);?></td>
- <td class="w150 align-center"><?php echo $v['web_show']==1 ? $lang['nc_yes'] : $lang['nc_no'];?></td>
- <td class="w150 align-center"><a href="index.php?act=web_config&op=web_edit&web_id=<?php echo $v['web_id'];?>"><?php echo $lang['web_config_web_edit'];?></a> |
- <a href="index.php?act=web_config&op=code_edit&web_id=<?php echo $v['web_id'];?>"><?php echo $lang['web_config_code_edit'];?></a></td>
- </tr>
- <?php } ?>
- <?php }else { ?>
- <tr class="no_data">
- <td colspan="15"><?php echo $lang['nc_no_record'];?></td>
- </tr>
- <?php } ?>
- </tbody>
- <tfoot>
- <?php if(!empty($output['web_list']) && is_array($output['web_list'])){ ?>
- <tr class="tfoot">
- <td colspan="16">
- <div class="pagination"> <?php echo $output['page'];?> </div></td>
- </tr>
- <?php } ?>
- </tfoot>
- </table>
- </div>
|