王新凯 пре 3 година
родитељ
комит
893305ce10

+ 11 - 0
application/api/controller/Index.php

@@ -25,6 +25,13 @@ class Index extends Api
 {
 
 
+    protected $arr=[
+        '一年内'=>[0,13],
+        '1~2年'=>[11,25],
+        '2~3年'=>[23,37],
+        '3年以上'=>[35,999999],
+    ];
+
     public function lists(){
 
 
@@ -95,6 +102,10 @@ class Index extends Api
         $this->success('操作成功',$list);
     }
 
+    public function tm(){
+        $this->success('操作成功',$this->arr);
+    }
+
 
 
 

+ 233 - 0
application/store/controller/Rule.php

@@ -0,0 +1,233 @@
+<?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;
+use library\tools\Data;
+use think\Db;
+
+/**
+ * 汽车管理
+ * Class Goods
+ * @package app\store\controller
+ */
+class Rule extends Controller
+{
+    /**
+     * 指定数据表
+     * @var string
+     */
+    protected $table = 'p_car';
+
+    /**
+     * 汽车管理
+     * @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)->equal('status,cate_id')->like('title');
+        $query->where(['is_deleted' => '0'])->order('id desc')->page();
+    }
+
+    /**
+     * 数据列表处理
+     * @param array $data
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     */
+    protected function _index_page_filter(&$data)
+    {
+        foreach ($data as $k=>&$v){
+            $v['chexing']=Db::name('p_car_chexing')->whereIn('id',$v['chexing'])->value('name');
+            $v['pinpai']=Db::name('p_car_pinpai')->whereIn('id',$v['pinpai'])->value('name');
+        }
+
+
+    }
+
+
+    /**
+     * 添加汽车
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function add()
+    {
+        $this->title = '添加汽车';
+        $this->isAddMode = '1';
+        $this->_form($this->table, 'form');
+    }
+
+    /**
+     * 编辑汽车
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function edit()
+    {
+        $this->title = '编辑汽车';
+        $this->isAddMode = '0';
+        $this->_form($this->table, 'form');
+    }
+
+    /**
+     * 表单数据处理
+     * @param array $data
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    protected function _form_filter(&$data)
+    {
+        if ($this->request->isGet()) {
+
+        }
+
+        if ($this->request->isPost()) {
+
+            if(!$this->request->post('id')){
+                $data['create_at']=date('Y-m-d');
+            }
+            // 用户权限处理
+            $data['chexing_id'] = (isset($data['chexing_id']) && is_array($data['chexing_id'])) ? join(',', $data['chexing_id']) : '';
+
+            $chexing=Db::name('p_car_chexing')->where(['is_deleted' => '0'])->order('id desc')->where('id',$data['chexing'])->value('name');
+            $pinpai=Db::name('p_car_pinpai')->where(['is_deleted' => '0'])->order('id desc')->where('id',$data['pinpai'])->value('name');
+            $data['search']=$chexing.' '. $pinpai;
+
+        } else {
+            $data['chexing_id'] = explode(',', isset($data['chexing_id']) ? $data['chexing_id'] : '');
+            $this->chexing_ids = Db::name('p_car_chexing')->where(['is_deleted' => '0'])->order('id desc')->select();
+            $this->pinpai = Db::name('p_car_pinpai')->where(['is_deleted' => '0'])->order('id desc')->select();
+        }
+
+    }
+
+
+        /**
+         * 表单结果处理
+         * @param boolean $result
+         */
+        protected function _form_result($result)
+    {
+        if ($result && $this->request->isPost()) {
+            $this->success('汽车编辑成功!', 'javascript:history.back()');
+        }
+    }
+    /**
+     * 商品库存入库
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function stock()
+    {
+        if ($this->request->isGet()) {
+            $biaoqian=['爆款','准新车','急租'];
+            $car=Db::table($this->table)->where('id',$this->request->get('id'))->value('biaoqian');
+            $car_biaoqian=explode(',', isset($car) ? $car : '');
+            $this->fetch('', ['biaoqian' => $biaoqian,'car_biaoqian'=>$car_biaoqian]);
+        } else {
+
+            $data['biaoqian']=implode(',',$this->request->post('biaoqian'));
+            Db::table($this->table)->where('id',$this->request->get('id'))->update($data);
+            $this->success('操作成功');
+
+        }
+    }
+
+    /**
+     * 商品推荐
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function tuijian()
+    {
+        if ($this->request->isGet()) {
+
+            $car=Db::table($this->table)->where('id',$this->request->get('id'))->find();
+
+            $this->fetch('', ['vo' => $car]);
+        } else {
+
+            $data['tuijian_remark']=$this->request->post('tuijian_remark');
+            $data['is_tuijian']=1;
+            Db::table($this->table)->where('id',$this->request->get('id'))->update($data);
+            $this->success('操作成功');
+
+        }
+    }
+
+
+    /**
+     * 禁用汽车
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function forbid()
+    {
+        $this->_save($this->table, ['status' => '0']);
+    }
+
+    /**
+     * 启用汽车
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function resume()
+    {
+        $this->_save($this->table, ['status' => '1']);
+    }
+
+    /**
+     * 删除汽车
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function remove()
+    {
+        $this->_delete($this->table);
+    }
+
+}

+ 254 - 0
application/store/view/rule/form.html

@@ -0,0 +1,254 @@
+{extend name='admin@main'}
+
+{block name="content"}
+
+{include file='store@goods/form_style'}
+
+<form onsubmit="return false;" id="GoodsForm" data-auto="true" method="post" class='layui-form layui-card' autocomplete="off">
+
+    <div class="layui-card-body think-box-shadow padding-left-40">
+
+        <div class="layui-form-item layui-row layui-col-space15">
+
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">类型</span>
+                <div class="block">
+                    {foreach ['买','卖'] as $k=>$pro}
+                    <label class="think-radio">
+                        {if isset($vo['type']) && $vo['type'] eq $k}
+                        <input checked type="radio" name="type" value="{$k}" lay-ignore> {$pro}
+                        {else}
+                        <input type="radio" name="type" value="{$k}" lay-ignore> {$pro}
+                        {/if}
+                    </label>
+                    {/foreach}
+                </div>
+            </label>
+
+
+        </div>
+
+        <div class="layui-form-item layui-row layui-col-space15">
+
+
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">车型</span>
+                <select class="layui-select" required name="chexing" lay-search>
+                    {foreach $chexing_ids as $cate}
+                    {if isset($vo.chexing) and $vo.chexing eq $cate.id}
+                    <option selected value="{$cate.id}">{$cate.id} - {$cate.name|default=''}</option>
+                    {else}
+                    <option value="{$cate.id}">{$cate.id} - {$cate.name|default=''}</option>
+                    {/if}
+                    {/foreach}
+                </select>
+            </label>
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">品牌</span>
+                <select class="layui-select" required name="pinpai" lay-search>
+                    {foreach $pinpai as $cate}
+                    {if isset($vo.pinpai) and $vo.pinpai eq $cate.id}
+                    <option selected value="{$cate.id}">{$cate.id} - {$cate.name|default=''}</option>
+                    {else}
+                    <option value="{$cate.id}">{$cate.id} - {$cate.name|default=''}</option>
+                    {/if}
+                    {/foreach}
+                </select>
+            </label>
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">车辆编号</span>
+                <input name="cheliangbiaohao"  required class="layui-input"  placeholder="请输入车辆编号" value="{$vo.cheliangbiaohao|default=''}">
+            </label>
+        </div>
+
+
+
+
+        <div class="layui-form-item">
+            <span class="color-green label-required-prev">轮播图</span>
+            <table class="layui-table">
+                <thead>
+                <tr>
+
+                    <th class="text-left">展示图片</th>
+                </tr>
+                <tr>
+                    <td width="auto" class="text-left"><input name="image" type="hidden" value="{$vo.image|default=''}"></td>
+                </tr>
+                </thead>
+            </table>
+            <script>$('[name="image"]').uploadMultipleImage()</script>
+        </div>
+
+        <div class="layui-form-item layui-row layui-col-space15">
+
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">车龄</span>
+                <div style="display: flex">
+                    <input name="cheling" required class="layui-input" style="width: 80%" placeholder="请输入车龄" value="{$vo.cheling|default=''}">
+                    <p style="margin-top: 6px;">个月</p>
+                </div>
+            </label>
+
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">车辆性质</span>
+                <input name="cheliangxingzhi" required class="layui-input"  placeholder="请输入车辆性质 如营运,非营运" value="{$vo.cheliangxingzhi|default=''}">
+            </label>
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">车辆类型</span>
+                <input name="cheliangleixing" required class="layui-input" placeholder="请输入车辆类型 如油车" value="{$vo.cheliangleixing|default=''}">
+            </label>
+        </div>
+
+
+
+        <div class="layui-form-item layui-row layui-col-space15">
+
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">里程</span>
+                <div style="display: flex">
+                    <input name="licheng" required class="layui-input" style="width: 80%" placeholder="请输入里程" value="{$vo.licheng|default=''}">
+                    <p style="margin-top: 6px;">万公里</p>
+                </div>
+            </label>
+
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">箱体宽度</span>
+                <div style="display: flex">
+                    <input name="xiangtikuandu" required class="layui-input" style="width: 80%" placeholder="请输入箱体宽度" value="{$vo.xiangtikuandu|default=''}">
+                    <p style="margin-top: 6px;">米</p>
+                </div>
+            </label>
+
+        </div>
+
+
+
+
+
+        <div class="layui-form-item layui-row layui-col-space15">
+
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">是否有通行证</span>
+                <div class="block">
+                    {foreach ['是','否'] as $k=>$pro}
+                    <label class="think-radio">
+                        {if isset($vo['tongxingzheng']) && $vo['tongxingzheng'] eq $k}
+                        <input checked type="radio" name="tongxingzheng" value="{$k}" lay-ignore> {$pro}
+                        {else}
+                        <input type="radio" name="tongxingzheng" value="{$k}" lay-ignore> {$pro}
+                        {/if}
+                    </label>
+                    {/foreach}
+                </div>
+            </label>
+
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">是否有尾板</span>
+                <div class="block">
+                    {foreach ['是','否'] as $k=>$pro}
+                    <label class="think-radio">
+                        {if isset($vo['weiban']) && $vo['weiban'] eq $k}
+                        <input checked type="radio" name="weiban" value="{$k}" lay-ignore> {$pro}
+                        {else}
+                        <input type="radio" name="weiban" value="{$k}" lay-ignore> {$pro}
+                        {/if}
+                    </label>
+                    {/foreach}
+                </div>
+            </label>
+        </div>
+
+
+
+        <div class="layui-form-item layui-row layui-col-space15">
+
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">车池经理</span>
+                <input name="chechijingli" required class="layui-input"  placeholder="请输入车池经理" value="{$vo.chechijingli|default=''}">
+            </label>
+
+
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">首次登记日期</span>
+                <input name="shoucidengjiriqi" required class="layui-input"  placeholder="请输入首次登记日期" value="{$vo.shoucidengjiriqi|default=''}" id="test1">
+            </label>
+        </div>
+
+        <div class="layui-form-item layui-row layui-col-space15">
+            <label class="layui-col-xs9 relative">
+
+                <div class="layui-col-xs4"><select class="layui-select block full-width" lay-ignore name="form_province"></select></div>
+                <div class="layui-col-xs4"><select class="layui-select block full-width" lay-ignore name="form_city"></select></div>
+                <div class="layui-col-xs4"><select class="layui-select block full-width" lay-ignore name="form_area"></select></div>
+            </label>
+
+        </div>
+
+
+
+        <div class="layui-form-item layui-row layui-col-space15">
+
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">发动机型号</span>
+                <input name="fadongjixinghao" required class="layui-input"  placeholder="请输入发动机型号" value="{$vo.fadongjixinghao|default=''}">
+            </label>
+            <label class="layui-col-xs3 relative">
+                <span class="color-green"> 马力</span>
+                <div style="display: flex">
+                    <input name="mali" required class="layui-input" style="width: 80%" placeholder="请输入马力" value="{$vo.mali|default=''}">
+                    <p style="margin-top: 6px;"> 匹</p>
+                </div>
+            </label>
+        </div>
+
+
+        <div class="layui-form-item layui-row layui-col-space15">
+
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">商业保险额</span>
+                <div style="display: flex">
+                    <input name="shangyebaoxiane" required class="layui-input" style="width: 80%" placeholder="请输入商业保险额" value="{$vo.shangyebaoxiane|default=''}">
+                    <p style="margin-top: 6px;">万元</p>
+                </div>
+            </label>
+        </div>
+
+        <div class="layui-form-item layui-row layui-col-space15">
+
+            <label class="layui-col-xs3 relative">
+                <span class="color-green">租赁价格</span>
+                <div style="display: flex">
+                    <input name="jiage" required class="layui-input" style="width: 80%" placeholder="请输入租赁价格" value="{$vo.jiage|default=''}">
+                    <p style="margin-top: 6px;">元/月</p>
+                </div>
+            </label>
+        </div>
+
+
+
+
+
+        <div class="layui-form-item text-center">
+            {notempty name='vo.id'}<input type="hidden" name="id" value="{$vo.id}">{/notempty}
+            <button class="layui-btn layui-btn-danger" ng-click="hsitoryBack()" type="button">取消编辑</button>
+            <button class="layui-btn" type="submit">保存商品</button>
+        </div>
+
+    </div>
+</form>
+{/block}
+
+{block name='script'}
+<script>
+    require(['pcasunzips'], function () {
+        new PCAS("form_province", "form_city", "form_area", '{$vo.express_province|default=""}', '{$vo.express_city|default=""}', '{$vo.express_area|default=""}');
+
+        laydate.render({
+            elem: '#test1'
+        });
+        window.form.render();
+    });
+</script>
+]
+{/block}

+ 87 - 0
application/store/view/rule/form_style.html

@@ -0,0 +1,87 @@
+<style>
+    .inner-input {
+        width: 80px;
+        height: 14px;
+        padding: 1px 5px;
+        line-height: 12px;
+    }
+
+    .goods-spec-box {
+        position: relative;
+        margin: 0 10px 10px 0;
+        vertical-align: middle;
+    }
+
+    .goods-spec-title {
+        z-index: 2;
+        width: 40px;
+        color: #fff;
+        height: 28px;
+        position: absolute;
+        background: #999;
+        line-height: 28px;
+    }
+
+    .goods-spec-close {
+        right: 8px;
+        z-index: 2;
+        line-height: 28px;
+        position: absolute;
+        display: inline-block
+    }
+
+    .goods-spec-btn {
+        height: 28px;
+        margin-left: 5px !important;
+        line-height: 26px !important;
+    }
+
+    .goods-spec-box input {
+        z-index: 1;
+        width: 120px;
+        position: relative;
+        border: 1px solid #999;
+        padding: 5px 0 5px 45px;
+        display: inline-block !important;
+    }
+
+    .goods-spec-box input[type=checkbox] {
+        z-index: 2;
+        width: 40px;
+        height: 28px;
+        border: none;
+        cursor: pointer;
+        appearance: none;
+        position: absolute;
+        -webkit-appearance: none;
+    }
+
+    .goods-spec-box input[type=checkbox]:before {
+        top: 1px;
+        left: 1px;
+        width: 40px;
+        height: 26px;
+        content: ' ';
+        position: absolute;
+        background: #c9c9c9;
+    }
+
+    .goods-spec-box input[type=checkbox]:after {
+        top: 1px;
+        left: 1px;
+        color: #999;
+        width: 40px;
+        height: 26px;
+        content: '\e63f';
+        font-size: 16px;
+        line-height: 26px;
+        position: absolute;
+        text-align: center;
+        font-family: 'layui-icon';
+    }
+
+    .goods-spec-box input[type=checkbox]:checked:after {
+        color: #333;
+        content: '\e605';
+    }
+</style>

+ 113 - 0
application/store/view/rule/index.html

@@ -0,0 +1,113 @@
+{extend name='admin@main'}
+
+{block name="button"}
+<!--{if auth("store/goods/add")}-->
+<button data-open='{:url("add")}' data-title="添加汽车" class='layui-btn layui-btn-sm layui-btn-primary'>添加汽车</button>
+<!--{/if}-->
+<!--{if auth("store/goods/remove")}-->
+<button data-action='{:url("remove")}' data-rule="id#{key}" class='layui-btn layui-btn-sm layui-btn-primary'>删除汽车</button>
+<!--{/if}-->
+{/block}
+
+{block name="content"}
+<div class="think-box-shadow">
+
+    <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 class='text-left nowrap' >车辆性质</th>
+            <th class='text-left nowrap' >车辆类型</th>
+            <th class='text-left nowrap' >里程</th>
+            <th class='text-left nowrap' >箱体宽度</th>
+            <th class='text-left nowrap' >车池经理</th>
+            <th class='text-left nowrap' >看车池</th>
+            <th class='text-left nowrap' >标签</th>
+            <th class='text-left nowrap' >租赁价格</th>
+            <th class='text-left nowrap' >是否推荐</th>
+
+            <th  class='text-left nowrap'>操作</th>
+
+        </tr>
+        </thead>
+        {/notempty}
+        <tbody>
+        {foreach $list as $key=>$vo}
+        <tr data-dbclick>
+
+            <td class='text-left nowrap'>
+                {$vo.cheliangbiaohao}
+            </td>
+            <td class='text-left nowrap'>
+                {$vo.chexing}--{$vo.pinpai}
+            </td>
+            <td class='text-left nowrap'>
+                {$vo.cheling}个月
+            </td>
+            <td class='text-left nowrap'>
+                {$vo.cheliangxingzhi}
+            </td>
+            <td class='text-left nowrap'>
+                {$vo.cheliangleixing}
+            </td>
+            <td class='text-left nowrap'>
+                {$vo.licheng}万公里
+            </td>
+            <td class='text-left nowrap'>
+                {$vo.xiangtikuandu}米
+            </td>
+            <td class='text-left nowrap'>
+                {$vo.chechijingli}
+            </td>
+            <td class='text-left nowrap'>
+                {$vo.form_city}
+            </td>
+
+            <td class='text-left nowrap'>
+                {$vo.biaoqian}
+            </td>
+            <td class='text-left nowrap'>
+                {$vo.jiage}
+            </td>
+            <td class='text-left nowrap'>
+                {if $vo['is_tuijian']==1}
+                是----{$vo.tuijian_remark}
+                {else}
+                否
+                {/if}
+            </td>
+
+
+
+
+            <td class='text-left nowrap'>
+                    <a data-dbclick class="layui-btn layui-btn-sm" data-modal='{:url("tuijian")}?id={$vo.id}'>热门推荐</a>
+                    <a data-dbclick class="layui-btn layui-btn-sm" data-modal='{:url("stock")}?id={$vo.id}'>标签</a>
+
+                    {if auth("store/goods/edit")}
+                    <a data-dbclick class="layui-btn layui-btn-sm" data-open='{:url("edit")}?id={$vo.id}'>编 辑</a>
+                    {else}
+                    <a data-tips-text="您没有编辑汽车的权限哦!" class="layui-btn layui-btn-sm layui-btn-primary layui-disabled">编 辑</a>
+                    {/if}
+
+                    {if auth("store/goods/remove")}
+                    <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除数据吗?" data-action="{:url('remove')}" data-value="id#{$vo.id}">删 除</a>
+                    {else}
+                    <a data-tips-text="您没有删除汽车的权限哦!" class="layui-btn layui-btn-sm layui-btn-primary layui-disabled">删 除</a>
+                    {/if}
+
+
+            </td>
+        </tr>
+        {/foreach}
+        </tbody>
+    </table>
+
+    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
+
+</div>
+{/block}

+ 44 - 0
application/store/view/rule/index_search.html

@@ -0,0 +1,44 @@
+<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="title" value="{$Think.get.title|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">
+                <select class="layui-select" name="cate_id" lay-search>
+                    <option value="">-- 全部商品 --</option>
+                    {foreach $clist as $v}
+                    <!--{eq name='Think.get.cate_id' value='$v.id.""'}-->
+                    <option selected value="{$v.id}">{$v.title}</option>
+                    <!--{else}-->
+                    <option value="{$v.id}">{$v.title}</option>
+                    <!--{/eq}-->
+                    {/foreach}
+                </select>
+            </div>
+        </div>
+        <div class="layui-form-item layui-inline">
+            <label class="layui-form-label">销售状态</label>
+            <div class="layui-input-inline">
+                <select class="layui-select" name="status">
+                    {foreach [''=>'- 全部状态 -','1'=>'销售中商品','0'=>'已下架商品'] as $k=>$v}
+                    <!--{eq name='Think.get.status' value='$k.""'}-->
+                    <option selected value="{$k}">{$v}</option>
+                    <!--{else}-->
+                    <option value="{$k}">{$v}</option>
+                    <!--{/eq}-->
+                    {/foreach}
+                </select>
+            </div>
+        </div>
+        <div class="layui-form-item layui-inline">
+            <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
+        </div>
+    </form>
+    <script>form.render()</script>
+</fieldset>

+ 32 - 0
application/store/view/rule/stock.html

@@ -0,0 +1,32 @@
+<form class="layui-form layui-card" action="{:request()->url()}" data-auto="true" method="post" autocomplete="off">
+
+    <div class="layui-card-body">
+
+        <div class="layui-form-item">
+            <label class="layui-form-label">标签</label>
+            <div class="layui-input-block">
+                {foreach $biaoqian as $chexing_id}
+                <label class="think-checkbox layui-unselect">
+                    {if in_array($chexing_id, $car_biaoqian)}
+                    <input type="checkbox" checked name="biaoqian[]" value="{$chexing_id}" lay-ignore> {$chexing_id}
+                    {else}
+                    <input type="checkbox" name="biaoqian[]" value="{$chexing_id}" lay-ignore> {$chexing_id}
+                    {/if}
+                </label>
+                {/foreach}
+            </div>
+        </div>
+
+
+
+    </div>
+
+    <div class="hr-line-dashed"></div>
+
+    <div class="layui-form-item text-center">
+        <button class="layui-btn" type='submit'>确定</button>
+        <button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消入库吗?" data-close>取消入库</button>
+        <!--{notempty name='vo.id'}--><input type='hidden' value='{$vo.id}' name='id'><!--{/notempty}-->
+    </div>
+
+</form>

+ 28 - 0
application/store/view/rule/tuijian.html

@@ -0,0 +1,28 @@
+
+
+
+<form class="layui-form layui-card" action="{:request()->url()}" data-auto="true" method="post" autocomplete="off">
+
+    <div class="layui-card-body">
+
+        <div class="layui-form-item">
+            <label class="layui-form-label">推荐理由</label>
+            <div class="layui-input-block">
+                <input name="tuijian_remark"  required class="layui-input"  placeholder="请输入推荐理由" value="{$vo.tuijian_remark|default=''}">
+            </div>
+        </div>
+
+
+
+    </div>
+
+    <div class="hr-line-dashed"></div>
+
+    <div class="layui-form-item text-center">
+        <button class="layui-btn" type='submit'>确定</button>
+        <button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消入库吗?" data-close>取消入库</button>
+        <!--{notempty name='vo.id'}--><input type='hidden' value='{$vo.id}' name='id'><!--{/notempty}-->
+    </div>
+
+</form>
+

+ 3 - 3
config/database.php

@@ -21,11 +21,11 @@ return [
     // 服务器地址
     'hostname'    => '127.0.0.1',
     // 数据库名
-    'database'    => 'lidadz',
+    'database'    => 'lidajf_hdlkeji_c',
     // 用户名
-    'username'    => 'lidadz',
+    'username'    => 'lidajf_hdlkeji_c',
     // 密码
-    'password'    => 'byYjdSzBKGfMYrDP',
+    'password'    => '123456',
     // 编码
     'charset'     => 'utf8mb4',
     // 端口