songxingwei 3 年之前
父节点
当前提交
a00445793e

+ 0 - 65
application/store/controller/LeaveMessage.php

@@ -1,65 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\store\controller;
-
-use library\Controller;
-
-/**
- * 留言管理
- * Class Message
- * @package app\store\controller
- */
-class LeaveMessage extends Controller
-{
-    /**
-     * 绑定数据表
-     * @var string
-     */
-    protected $table = 'q_message';
-
-    /**
-     * 留言管理
-     * @auth true
-     * @menu true
-     * @throws \think\Exception
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     * @throws \think\exception\PDOException
-     */
-    public function index()
-    {
-        $this->title = '留言管理';
-        $query = $this->_query($this->table)->alias('a')
-            ->join('q_user b','a.user_id=b.id')
-            ->field('a.*,b.phone,b.name,b.headimg')
-            ->like('phone,content');
-        $query->where('a.is_del',0)->timeBetween('a.create_at')->order('a.id desc')->page();
-    }
-
-    /**
-     * 删除记录
-     * @auth true
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function remove()
-    {
-       // $this->_delete($this->table);
-        $this->_save($this->table, ['is_del' => '1']);
-    }
-
-}

+ 0 - 44
application/store/view/leave_message/index.html

@@ -1,44 +0,0 @@
-{extend name='admin@main'}
-
-{block name="content"}
-<div class="think-box-shadow">
-    {include file='leave_message/index_search'}
-    <table class="layui-table margin-top-10" lay-skin="line">
-        {notempty name='list'}
-        <thead>
-        <tr>
-
-            <th class='text-left nowrap'>会员信息</th>
-            <th class='text-left nowrap'>内容</th>
-            <th class='text-left nowrap'>时间</th>
-            <th></th>
-        </tr>
-        </thead>
-        {/notempty}
-        <tbody>
-        {foreach $list as $key=>$vo}
-        <tr>
-
-            <td>
-                {notempty name='vo.headimg'}
-                <img data-tips-image style="width:40px;height:40px" src="{$vo.headimg|default=''}" class="margin-right-5 text-top">
-                {/notempty}
-                <div class="inline-block">
-                    会员昵称:{$vo.nickname|default='--'}&nbsp;(ID:{$vo.user_id})<br>
-                    会员手机:{$vo.phone|default='--'}<br>
-                </div>
-            </td>
-            <td>{$vo.content|default=''}</td>
-            <td>{$vo.create_at|format_datetime|default=''}<br></td>
-            <td>
-                {if auth("store/member/remove")}
-                <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除数据吗?" data-action="{:url('remove')}" data-value="id#{$vo.id}">删 除</a>
-                {/if}
-            </td>
-        </tr>
-        {/foreach}
-        </tbody>
-    </table>
-    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
-</div>
-{/block}

+ 0 - 28
application/store/view/leave_message/index_search.html

@@ -1,28 +0,0 @@
-<fieldset>
-    <legend>条件搜索</legend>
-    <form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get" autocomplete="off">
-        <div class="layui-form-item layui-inline">
-            <label class="layui-form-label">手机</label>
-            <div class="layui-input-inline">
-                <input name="mobile" value="{$Think.get.mobile|default=''}" placeholder="请输入手机" class="layui-input">
-            </div>
-        </div>
-        <div class="layui-form-item layui-inline">
-            <label class="layui-form-label">内容</label>
-            <div class="layui-input-inline">
-                <input name="content" value="{$Think.get.content|default=''}" placeholder="请输入内容" class="layui-input">
-            </div>
-        </div>
-        <div class="layui-form-item layui-inline">
-            <label class="layui-form-label">时间</label>
-            <div class="layui-input-inline">
-                <input name="create_at" value="{$Think.get.create_at|default=''}" placeholder="请选择时间" class="layui-input">
-            </div>
-        </div>
-        <div class="layui-form-item layui-inline">
-            <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
-            <button type="button" data-export-list class="layui-btn layui-btn-primary layui-hide"><i class="layui-icon layui-icon-export"></i> 导 出</button>
-        </div>
-    </form>
-    <script>window.laydate.render({range: true, elem: '[name="create_at"]'})</script>
-</fieldset>