| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <?php if (!defined('THINK_PATH')) exit(); /*a:3:{s:87:"C:\phpStudy\PHPTutorial\WWW\aqm-web\public/../application/admin\view\product\index.html";i:1557480234;s:75:"C:\phpStudy\PHPTutorial\WWW\aqm-web\application\admin\view\layout\home.html";i:1557480234;s:82:"C:\phpStudy\PHPTutorial\WWW\aqm-web\application\admin\view\layout\admin_items.html";i:1557480234;}*/ ?>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>安全猫官网</title>
- <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
- <!-- Bootstrap 3.3.7 -->
- <link rel="stylesheet" href="<?php echo PLUGINS_SITE_ROOT; ?>/layui/css/layui.css">
- <link rel="stylesheet" href="<?php echo ADMIN_SITE_ROOT; ?>/css/admin.css">
- <link rel="stylesheet" href="<?php echo ADMIN_SITE_ROOT; ?>/iconfont/iconfont.css">
- <script src="<?php echo PLUGINS_SITE_ROOT; ?>/jquery-2.1.4.min.js"></script>
- <script src="<?php echo ADMIN_SITE_ROOT; ?>/js/admin.js"></script>
- <script type="text/javascript" src="<?php echo PLUGINS_SITE_ROOT; ?>/layui/layui.js"></script>
- <script type="text/javascript">
- var BASESITEROOT = "<?php echo BASE_SITE_ROOT; ?>";
- var ADMINSITEROOT = "<?php echo ADMIN_SITE_ROOT; ?>";
- var BASESITEURL = "<?php echo BASE_SITE_URL; ?>";
- var HOMESITEURL = "<?php echo HOME_SITE_URL; ?>";
- var ADMINSITEURL = "<?php echo ADMIN_SITE_URL; ?>";
- layui.use('layer', function () {
- var layer = layui.layer;
- });
- </script>
- </head>
- <body>
-
- <div class="layui-tab layui-tab-card">
- <?php if($admin_item): ?>
- <ul class="layui-tab-title">
- <?php if(is_array($admin_item) || $admin_item instanceof \think\Collection || $admin_item instanceof \think\Paginator): if( count($admin_item)==0 ) : echo "" ;else: foreach($admin_item as $key=>$item): if(array_intersect(explode(" ",str_replace("/", ".",substr($item['url'],7,-5))),$allpower) || array_intersect(explode(" ",str_replace("/", ".",substr($item['url'],31,-16))),$allpower)): ?>
- <li <?php if($item['name'] == $curitem): ?>class="layui-this" <?php endif; ?>>
- <a href="<?php echo $item['url']; ?>"><?php echo $item['text']; ?></a>
- <?php endif; ?>
- </li>
- <?php endforeach; endif; else: echo "" ;endif; ?>
- <div class="tool-btns">
- <a href="javascript:location.reload();" title="刷新当前页面" class="iconfont icon-reload"></i></a>
- </div>
- </ul>
- <?php endif; ?>
- <div class="layui-tab-content page-tab-content">
- <!-- 搜索框开始 -->
- <div class="search-form">
- <form class="" method="post">
- <div class="layui-form-item">
- <div class="layui-inline">
- <input type="text" name="product_keywords" placeholder="输入关键字" autocomplete="off" class="layui-input">
- </div>
- <div class="layui-inline">
- <select name="product_type" lay-verify="" class="layui-select layui-unselect layui-form-select">
- <option value="">请选择类别</option>
- <option value="1">客服常用语</option>
- <option value="2">客户常用问题</option>
- <option value="3">客服快捷回复</option>
- <option value="4">自动回复</option>
- <option value="5">新闻</option>
- </select>
- </div>
- <div class="layui-inline">
- <button type="submit" class="layui-btn search-subBtn">搜索</button>
- </div>
- </div>
- </form>
- </div>
- <!-- 搜索框结束 -->
- <table class="layui-table lay-even">
- <colgroup>
- <col width="150">
- <col width="200">
- <col width="100">
- <col width="100">
- <col width="100">
- <col>
- </colgroup>
- <thead>
- <tr>
- <th><?php echo \think\Lang::get('product_title'); ?></th>
- <th>副标题</th>
- <th>内容</th>
- <th>关键字</th>
- <th>创建时间</th>
- <th>所属公司</th>
- <th>所属类别</th>
- <th>是否跳转</th>
- <th>状态</th>
- <th><?php echo \think\Lang::get('ds_operation'); ?></th>
- </tr>
- </thead>
- <tbody>
- <?php if($product_list && $gsname_list): if(is_array($product_list) || $product_list instanceof \think\Collection || $product_list instanceof \think\Paginator): $kk = 0; $__LIST__ = $product_list;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$product): $mod = ($kk % 2 );++$kk;?>
- <tr>
- <td><?php echo $product['product_title']; ?></td>
- <td><?php echo $product['product_ctitle']; ?></td>
- <td><?php echo $conlist[$kk-1]; ?></td>
- <td><?php echo $product['product_keywords']; ?></td>
- <td style="width:80px;"><?php echo date('Y-m-d ',$product['product_addtime']); ?></td>
- <td><?php echo $gsname_list[$kk-1]['member_name']; ?></td>
- <td><?php if($product['product_type']==1): ?>客服常用语<?php elseif($product['product_type']==2): ?>客户常用问题<?php elseif($product['product_type']==3): ?>客服快捷回复<?php elseif($product['product_type']==4): ?>自动回复<?php else: ?>新闻<?php endif; ?></td>
- <td><?php if($product['product_isjump']==1): ?>跳转<?php else: ?>不跳转<?php endif; ?></td>
- <td><?php if($product['product_status']==1): ?>使用中<?php else: ?>未使用<?php endif; ?></td>
- <td>
- <a href="<?php echo url('product/edit',['product_id'=>$product['product_id']]); ?>" class="layui-btn layui-btn-xs"><i class="layui-icon layui-icon-edit"></i><?php echo \think\Lang::get('ds_edit'); ?></a>
- <a class="layui-btn layui-btn-danger layui-btn-xs" href="javascript:dsLayerConfirm('<?php echo url('product/del',['product_id'=>$product['product_id']]); ?>','<?php echo \think\Lang::get('ds_confirm_cancel'); ?>')"><i class="layui-icon layui-icon-delete"></i><?php echo \think\Lang::get('ds_del'); ?></a>
- </td>
- </tr>
- <?php endforeach; endif; else: echo "" ;endif; else: ?>
- <td>无数据</td>
- <?php endif; ?>
- </tbody>
- </table>
- <?php echo $show_page; ?>
- </div>
- </div>
- <script type="text/javascript" src="<?php echo ADMIN_SITE_ROOT; ?>/js/jquery.edit.js"></script>
- </body>
- </html>
|