songxingwei 3 years ago
parent
commit
e4479d7174

+ 0 - 128
application/store/controller/ExpressCompany.php

@@ -1,128 +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;
-use think\Db;
-
-/**
- * 快递公司管理
- * Class Express
- * @package app\store\controller
- */
-class ExpressCompany extends Controller
-{
-    /**
-     * 指定数据表
-     * @var string
-     */
-    protected $table = 'StoreExpressCompany';
-
-    /**
-     * 快递公司管理
-     * @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')->like('express_title,express_code');
-        $query->dateBetween('create_at')->order('status desc,sort desc,id desc')->where(['is_deleted' => '0'])->page();
-    }
-
-    /**
-     * 添加快递公司
-     * @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->_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->_form($this->table, 'form');
-    }
-
-    /**
-     * 表单数据处理
-     * @param array $data
-     * @auth true
-     */
-    protected function _form_filter(array $data)
-    {
-        if ($this->request->isPost()) {
-            $where = [['express_code', 'eq', $data['express_code']], ['is_deleted', 'eq', '0']];
-            if (!empty($data['id'])) $where[] = ['id ', 'neq', $data['id']];
-            if (Db::name($this->table)->where($where)->count() > 0) {
-                $this->error('该快递编码已经存在,请使用其它编码!');
-            }
-        }
-    }
-
-    /**
-     * 禁用快递公司
-     * @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);
-    }
-
-}

+ 0 - 85
application/store/controller/ExpressTemplate.php

@@ -1,85 +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;
-use think\Db;
-
-/**
- * 邮费模板管理
- * Class ExpressTemplate
- * @package app\store\controller
- */
-class ExpressTemplate extends Controller
-{
-    /**
-     * 指定数据表
-     * @var string
-     */
-    protected $table = 'StoreExpressTemplate';
-
-    /**
-     * 邮费模板管理
-     * @auth true
-     * @menu true
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     */
-    public function index()
-    {
-        $this->title = '邮费模板管理';
-        $filename = env('root_path') . 'public/static/plugs/jquery/area/area.json';
-        $this->provinces = array_column(json_decode(file_get_contents($filename), true), 'name');
-        $this->list = Db::name($this->table)->where(['is_default' => '0'])->select();
-        foreach ($this->list as &$item) $item['rule'] = explode(',', $item['rule']);
-        $this->default = Db::name($this->table)->where(['is_default' => '1'])->find();
-        $this->fetch();
-    }
-
-    /**
-     * 保存邮费模板
-     * @auth true
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function save()
-    {
-        list($list, $idxs, $post) = [[], [], $this->request->post()];
-        foreach (array_keys($post) as $key) if (stripos($key, 'order_reduction_state_') !== false) {
-            $idxs[] = str_replace('order_reduction_state_', '', $key);
-        }
-        foreach (array_unique($idxs) as $index) if (!empty($post["rule_{$index}"])) $list[] = [
-            'rule'                  => join(',', $post["rule_{$index}"]),
-            // 订单满减配置
-            'order_reduction_state' => $post["order_reduction_state_{$index}"],
-            'order_reduction_price' => $post["order_reduction_price_{$index}"],
-            // 首件邮费配置
-            'first_number'          => $post["first_number_{$index}"],
-            'first_price'           => $post["first_price_{$index}"],
-            // 首件邮费配置
-            'next_number'           => $post["next_number_{$index}"],
-            'next_price'            => $post["next_price_{$index}"],
-            // 默认邮费规则
-            'is_default'            => $post["is_default_{$index}"],
-        ];
-        if (empty($list)) $this->error('请配置有效的邮费规则');
-        Db::name($this->table)->where('1=1')->delete();
-        Db::name($this->table)->insertAll($list);
-        $this->success('邮费规则配置成功!');
-    }
-
-}

+ 0 - 36
application/store/view/express_company/form.html

@@ -1,36 +0,0 @@
-<form onsubmit="return false;" action="{:request()->url()}" data-auto="true" method="post" class='layui-form layui-card' 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="express_title" required value='{$vo.express_title|default=""}' placeholder="请输入快递名称" class="layui-input">
-            </div>
-        </div>
-
-        <div class="layui-form-item">
-            <label class="layui-form-label">快递编码</label>
-            <div class="layui-input-block">
-                <input name="express_code" required value='{$vo.express_code|default=""}' placeholder="请输入快递编码" class="layui-input">
-            </div>
-        </div>
-
-        <div class="layui-form-item">
-            <label class="layui-form-label">快递描述</label>
-            <div class="layui-input-block">
-                <textarea class="layui-textarea" name="express_desc">{$vo.express_desc|default=''}</textarea>
-            </div>
-        </div>
-
-    </div>
-
-    <div class="hr-line-dashed"></div>
-    {notempty name='vo.id'}<input type='hidden' value='{$vo.id}' name='id'>{/notempty}
-
-    <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>
-    </div>
-
-</form>

+ 0 - 74
application/store/view/express_company/index.html

@@ -1,74 +0,0 @@
-{extend name='admin@main'}
-
-{block name="button"}
-
-{if auth("store/express_company/add")}
-<button data-modal='{:url("add")}' data-title="添加快递" class='layui-btn layui-btn-sm layui-btn-primary'>添加快递</button>
-{/if}
-
-{if auth("store/express_company/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">
-    {include file='express_company/index_search'}
-    <table class="layui-table margin-top-10" lay-skin="line">
-        {notempty name='list'}
-        <thead>
-        <tr>
-            <th class='list-table-check-td think-checkbox'>
-                <input data-auto-none data-check-target='.list-check-box' type='checkbox'>
-            </th>
-            <th class='list-table-sort-td'>
-                <button type="button" data-reload class="layui-btn layui-btn-xs">刷 新</button>
-            </th>
-            <th class='text-left nowrap'>快递名称</th>
-            <th class='text-left nowrap'>快递编码</th>
-            <th class="text-center">记录状态</th>
-            <th class="text-center">创建时间</th>
-            <th></th>
-        </tr>
-        </thead>
-        {/notempty}
-        <tbody>
-        {foreach $list as $key=>$vo}
-        <tr data-dbclick>
-            <td class='list-table-check-td think-checkbox'>
-                <input class="list-check-box" value='{$vo.id}' type='checkbox'>
-            </td>
-            <td class='list-table-sort-td'>
-                <input data-action-blur="{:request()->url()}" data-value="id#{$vo.id};action#sort;sort#{value}" data-loading="false" value="{$vo.sort}" class="list-sort-input">
-            </td>
-            <td class='text-left nowrap'>{$vo.express_title|default=''}</td>
-            <td class='text-left nowrap'>{$vo.express_code|default=''}</td>
-            <td class='text-center nowrap'>
-                {eq name='vo.status' value='0'}<span class="layui-badge">已禁用</span>{else}<span class="layui-badge layui-bg-green">使用中</span>{/eq}<br>
-            </td>
-            <td class='text-center nowrap'>{$vo.create_at|format_datetime}</td>
-            <td class='text-left nowrap'>
-
-                {if auth("store/express_company/edit")}
-                <a data-dbclick data-title="编辑快递" class="layui-btn layui-btn-xs" data-modal='{:url("edit")}?id={$vo.id}'>编 辑</a>
-                {/if}
-
-                {if $vo.status eq 1 and auth("store/express_company/forbid")}
-                <a class="layui-btn layui-btn-xs layui-btn-warm" data-action="{:url('forbid')}" data-value="id#{$vo.id};status#0">禁 用</a>
-                {elseif auth("store/express_company/resume")}
-                <a class="layui-btn layui-btn-xs layui-btn-warm" data-action="{:url('resume')}" data-value="id#{$vo.id};status#1">启 用</a>
-                {/if}
-
-                {if auth("store/express_company/remove")}
-                <a class="layui-btn layui-btn-xs 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 - 42
application/store/view/express_company/index_search.html

@@ -1,42 +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="express_title" value="{$Think.get.express_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">
-                <input name="express_code" value="{$Think.get.express_code|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="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">
-            <label class="layui-form-label">添加时间</label>
-            <div class="layui-input-inline">
-                <input data-date-range 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>
-        </div>
-    </form>
-</fieldset>
-
-<script>form.render()</script>

+ 0 - 76
application/store/view/express_template/index.html

@@ -1,76 +0,0 @@
-{extend name="admin@main"}
-
-{block name="content"}
-<form onsubmit="return false;" data-auto="true" action="{:url('save')}" method="post" class='layui-form layui-card' autocomplete="off">
-
-    <div class="layui-card-body think-box-shadow padding-bottom-20 padding-left-40">
-
-        <div data-item-container>
-            {foreach $list as $index=>$item}
-            {assign name='is_default' value='0'}
-            {assign name='index' value='$index+1'}
-            {assign name='group_title' value='邮费规则分组'}
-            {include file='express_template/index_item'}
-            {/foreach}
-        </div>
-
-        <div class="margin-bottom-20"><a onclick="addRuleItem()" class="layui-btn layui-btn-warm">添加邮费规则分组</a></div>
-
-        {assign name='index' value='0'}
-        {assign name='is_default' value='1'}
-        {assign name='group_title' value='默认邮费规则'}
-        {assign name="item" value="$default"}
-        {include file='express_template/index_item'}
-
-        <div class="hr-line-dashed"></div>
-
-        <div class="layui-form-item text-center">
-            <button class="layui-btn" type='submit'>保存数据</button>
-        </div>
-
-    </div>
-
-</form>
-
-<script>
-    form.render();
-    checkRuleItem();
-
-    function delRuleItem(that) {
-        $.msg.confirm('确定要移除这个邮费规则吗?', function (index) {
-            $(that).parent('fieldset').remove(), $.msg.close(index);
-            checkRuleItem();
-        })
-    }
-
-    function addRuleItem() {
-        this.itemIndex = $('[data-item-container] fieldset:last').attr('data-max-index') || 0;
-        this.html = $('#template').html().replace(/\[index\]/gi, parseInt(this.itemIndex) + 1);
-        $('[data-item-container]').append(this.html);
-    }
-
-    function checkRuleItem() {
-        if ($('[data-item-container] fieldset').length < 1) {
-            //  addRuleItem();
-        }
-    }
-
-    (function (opt) {
-        opt.selecter = 'input[type=checkbox][data-province-input]';
-        $('body').off('change', opt.selecter).on('change', opt.selecter, function () {
-            if (this.checked) $(opt.selecter + '[value="' + this.value + '"]').not(this).map(function () {
-                if (this.checked) $(this).trigger('click');
-            });
-        });
-    })({});
-
-</script>
-
-{assign name='is_default' value='0'}
-{assign name='index' value='[index]'}
-{assign name='group_title' value='邮费规则分组'}
-{php}$item=[];{/php}
-<div class="layui-hide" id="template">
-    {include file='express_template/index_item'}
-</div>
-{/block}

+ 0 - 94
application/store/view/express_template/index_item.html

@@ -1,94 +0,0 @@
-<fieldset class="margin-bottom-20 relative" data-max-index="{$index}">
-
-    <legend class="color-green font-s14">
-        {$group_title|default='邮费规则分组'} <span class="color-desc font-s12"> RuleGroup</span>
-    </legend>
-
-    {empty name='is_default'}
-    <a onclick="delRuleItem(this)" class="layui-btn layui-btn-xs layui-btn-danger text-center layui-icon layui-icon-close" data-tips-text="移除规则" style="position:absolute;top:15px;right:5px;padding:0 5px"></a>
-    {/empty}
-
-    <div class="layui-form-item block relative">
-        <span class="color-desc font-s14">订单总金额满足条件时将减免该订单的所有邮费(请谨慎配置)</span>
-        <table>
-            <tr>
-                <td>
-                    <div class="layui-input text-center" style="width:150px">
-                        {php}isset($item['order_reduction_state']) or $item['order_reduction_state']=0;{/php}
-                        {foreach ['0' => '关闭','1' => '开启'] as $k => $v}
-                        <!--{eq name='item.order_reduction_state' value='$k'}-->
-                        <label class="think-radio"><input type="radio" value="{$k}" name="order_reduction_state_{$index}" title="{$v}" checked lay-ignore> {$v}</label>
-                        <!--{else}-->
-                        <label class="think-radio"><input type="radio" value="{$k}" name="order_reduction_state_{$index}" title="{$v}" lay-ignore> {$v}</label>
-                        <!--{/eq}-->
-                        {/foreach}
-                    </div>
-                </td>
-                <td width='20px'></td>
-                <td>
-                    <label class="text-center nowrap">
-                        订单满 <input style="width:130px" class="layui-input inline-block text-center padding-left-0" name="order_reduction_price_{$index}" data-blur-number="2" value="{$item.order_reduction_price|default='0.00'}"> 元免邮费
-                    </label>
-                </td>
-            </tr>
-        </table>
-        <!--<span class="color-desc block">订单总金额达到这个金额时,将减免该订单的所有邮费,请谨慎配置。</span>-->
-    </div>
-
-    <div class="layui-form-item">
-        {notempty name='is_default'}
-        <input type="hidden" name="is_default_{$index}" value="1">
-        <input type="hidden" name="rule_{$index}[]" value="{$group_title|default='邮费规则分组'}">
-        {else}
-        <input type="hidden" name="is_default_{$index}" value="0">
-        <span class="color-desc font-s14">根据配送目的地的省份进行运费计算邮费(不在规则内的将使用默认邮费规则)</span>
-        <table class="layui-table" lay-skin="line">
-            <tr class="layui-bg-gray">
-                <th class="text-center">
-                    <label class="think-checkbox pull-left margin-top-0 notselect">
-                        <input type="checkbox" data-check-target="[data-template-province-{$index}]" lay-ignore> 全选
-                    </label>
-                    <span>可配送区域</span>
-                </th>
-            </tr>
-            <tr>
-                <td>
-                    {foreach $provinces as $p}
-                    <label class="think-checkbox layui-elip notselect" style="width:115px">
-                        {if is_numeric($index) and isset($item.rule) and is_array($item.rule) and in_array($p,$item.rule)}
-                        <input data-province-input data-template-province-{$index} checked type="checkbox" name="rule_{$index}[]" value="{$p}" lay-ignore> {$p|default=''}
-                        {else}
-                        <input data-province-input data-template-province-{$index} type="checkbox" name="rule_{$index}[]" value="{$p}" lay-ignore> {$p|default=''}
-                        {/if}
-                    </label>
-                    {/foreach}
-                </td>
-            </tr>
-        </table>
-        {/notempty}
-
-        <table class="layui-table" lay-skin="line">
-            <tr class="layui-bg-gray">
-                <th class="text-center" width="80px">首件(个)</th>
-                <th class="text-center" width="80px">运费(元)</th>
-                <th class="text-center" width="80px">续件(个)</th>
-                <th class="text-center" width="80px">续费(元)</th>
-            </tr>
-            <tr>
-                <td class="text-center">
-                    <label><input name="first_number_{$index}" value="{$item.first_number|default='1'}" data-blur-number="0" class="layui-input text-center padding-left-0"></label>
-                </td>
-                <td class="text-center">
-                    <label><input name="first_price_{$index}" value="{$item.first_price|default='0.00'}" data-blur-number="2" class="layui-input text-center padding-left-0"></label>
-                </td>
-                <td class="text-center">
-                    <label><input name="next_number_{$index}" value="{$item.next_number|default='1'}" data-blur-number="0" class="layui-input text-center padding-left-0"></label>
-                </td>
-                <td class="text-center">
-                    <label><input name="next_price_{$index}" value="{$item.next_price|default='0.00'}" data-blur-number="2" class="layui-input text-center padding-left-0"></label>
-                </td>
-            </tr>
-        </table>
-    </div>
-
-</fieldset>