From e0c2d060436f14461538dc9f54d58abd2fd2a276 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 4 Apr 2019 13:05:50 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=90=8C=E6=AD=A5framework?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/store/command/AutoRun.php | 2 +- application/store/controller/Config.php | 9 +++++---- application/store/controller/Express.php | 3 ++- application/store/controller/Goods.php | 16 ++++++++-------- application/store/controller/GoodsCate.php | 15 ++++++++------- application/store/controller/Member.php | 4 ++-- application/store/controller/Message.php | 4 ++-- application/store/controller/Order.php | 10 +++++----- application/store/controller/api/Express.php | 2 +- application/store/controller/api/Goods.php | 10 +++++----- application/store/controller/api/Member.php | 2 +- application/store/controller/api/Notify.php | 2 +- application/store/controller/api/Wechat.php | 2 +- .../store/controller/api/member/Address.php | 2 +- .../store/controller/api/member/Center.php | 2 +- .../store/controller/api/member/Order.php | 2 +- application/store/service/Extend.php | 2 +- application/store/service/Goods.php | 2 +- application/store/service/Order.php | 2 +- application/store/sys.php | 2 +- application/store/view/goods/index.html | 2 +- application/store/view/goods/stock.html | 4 +--- 22 files changed, 51 insertions(+), 50 deletions(-) diff --git a/application/store/command/AutoRun.php b/application/store/command/AutoRun.php index c7a9ab1c2..aec36418e 100644 --- a/application/store/command/AutoRun.php +++ b/application/store/command/AutoRun.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\command; diff --git a/application/store/controller/Config.php b/application/store/controller/Config.php index 18c514f01..1beb18b35 100644 --- a/application/store/controller/Config.php +++ b/application/store/controller/Config.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller; @@ -35,10 +35,11 @@ class Config extends Controller $this->title = '商城参数配置'; if ($this->request->isGet()) { $this->query = Extend::querySmsBalance(); - return $this->fetch(); + $this->fetch(); + } else { + foreach ($this->request->post() as $k => $v) sysconf($k, $v); + $this->success('商城参数配置保存成功!'); } - foreach ($this->request->post() as $k => $v) sysconf($k, $v); - $this->success('商城参数配置保存成功!'); } } \ No newline at end of file diff --git a/application/store/controller/Express.php b/application/store/controller/Express.php index 859080446..fbc4cb3c8 100644 --- a/application/store/controller/Express.php +++ b/application/store/controller/Express.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller; @@ -31,6 +31,7 @@ class Express extends Controller protected $table = 'StoreExpress'; /** + * 快递公司管理 * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException diff --git a/application/store/controller/Goods.php b/application/store/controller/Goods.php index 44f1ef84b..41a3cef9f 100644 --- a/application/store/controller/Goods.php +++ b/application/store/controller/Goods.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller; @@ -19,7 +19,7 @@ use library\tools\Data; use think\Db; /** - * 商城商品管理 + * 商品信息管理 * Class Goods * @package app\store\controller */ @@ -32,7 +32,7 @@ class Goods extends Controller protected $table = 'StoreGoods'; /** - * 商品列表 + * 商品信息管理 * @return mixed * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException @@ -42,8 +42,8 @@ class Goods extends Controller */ public function index() { - $this->title = '商品管理'; - $this->_query($this->table)->equal('status,vip_mod,cate_id')->like('title')->where(['is_deleted' => '0'])->order('sort asc,id desc')->page(); + $this->title = '商城商品管理'; + $this->_query($this->table)->equal('status,cate_id')->like('title')->where(['is_deleted' => '0'])->order('sort asc,id desc')->page(); } /** @@ -163,7 +163,7 @@ class Goods extends Controller } /** - * 商品禁用 + * 禁用商品信息 */ public function forbid() { @@ -171,7 +171,7 @@ class Goods extends Controller } /** - * 商品禁用 + * 启用商品信息 */ public function resume() { @@ -179,7 +179,7 @@ class Goods extends Controller } /** - * 删除商品 + * 删除商品信息 */ public function del() { diff --git a/application/store/controller/GoodsCate.php b/application/store/controller/GoodsCate.php index 7972820b9..3095e198c 100644 --- a/application/store/controller/GoodsCate.php +++ b/application/store/controller/GoodsCate.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller; @@ -17,6 +17,7 @@ namespace app\store\controller; use library\Controller; /** + * 商品分类管理 * Class GoodsCate * @package app\store\controller */ @@ -29,7 +30,7 @@ class GoodsCate extends Controller protected $table = 'StoreGoodsCate'; /** - * @return mixed + * 商品分类管理 * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException @@ -39,11 +40,11 @@ class GoodsCate extends Controller public function index() { $this->title = '商品分类管理'; - return $this->_query($this->table)->like('title')->equal('status')->order('sort asc,id desc')->page(); + $this->_query($this->table)->like('title')->equal('status')->order('sort asc,id desc')->page(); } /** - * 添加商品分类信息 + * 添加商品分类 * @return mixed */ public function add() @@ -53,7 +54,7 @@ class GoodsCate extends Controller } /** - * 编辑商品分类信息 + * 编辑添加商品分类 * @return mixed */ public function edit() @@ -63,7 +64,7 @@ class GoodsCate extends Controller } /** - * 商品分类禁用 + * 禁用添加商品分类 */ public function forbid() { @@ -71,7 +72,7 @@ class GoodsCate extends Controller } /** - * 商品分类禁用 + * 启用商品分类 */ public function resume() { diff --git a/application/store/controller/Member.php b/application/store/controller/Member.php index 1362348f2..075538719 100644 --- a/application/store/controller/Member.php +++ b/application/store/controller/Member.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller; @@ -30,7 +30,7 @@ class Member extends Controller protected $table = 'StoreMember'; /** - * 显示会员列表 + * 商城会员管理 * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException diff --git a/application/store/controller/Message.php b/application/store/controller/Message.php index 612ea0c5d..d6daaf3f4 100644 --- a/application/store/controller/Message.php +++ b/application/store/controller/Message.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller; @@ -30,7 +30,7 @@ class Message extends Controller protected $table = 'StoreMemberSmsHistory'; /** - * 短信消息列表 + * 短信消息管理 * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException diff --git a/application/store/controller/Order.php b/application/store/controller/Order.php index 569de1560..19f466c6a 100644 --- a/application/store/controller/Order.php +++ b/application/store/controller/Order.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller; @@ -31,7 +31,7 @@ class Order extends Controller protected $table = 'StoreOrder'; /** - * 商城订单列表显示 + * 商城订单管理 * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException @@ -45,13 +45,13 @@ class Order extends Controller } /** - * 商城订单列表处理 + * 订单列表处理 * @param array $data * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ - protected function _page_filter(array &$data) + protected function _index_page_filter(array &$data) { $goodsList = Db::name('StoreOrderList')->whereIn('order_no', array_unique(array_column($data, 'order_no')))->select(); $mids = array_unique(array_merge(array_column($data, 'mid'), array_column($data, 'from_mid'))); @@ -69,7 +69,7 @@ class Order extends Controller } /** - * 快递管理 + * 修改快递管理 * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException diff --git a/application/store/controller/api/Express.php b/application/store/controller/api/Express.php index 84e102e55..e8295b343 100644 --- a/application/store/controller/api/Express.php +++ b/application/store/controller/api/Express.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller\api; diff --git a/application/store/controller/api/Goods.php b/application/store/controller/api/Goods.php index e60a80f98..ca355cf35 100644 --- a/application/store/controller/api/Goods.php +++ b/application/store/controller/api/Goods.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller\api; @@ -33,7 +33,7 @@ class Goods extends Controller */ public function gets() { - $where = [['status', 'eq', '1'], ['vip_mod', 'eq', '0'], ['is_deleted', 'eq', '0']]; + $where = [['status', 'eq', '1'], ['is_deleted', 'eq', '0']]; $this->success('获取商品列表成功!', ['list' => $this->_getGoodsList($where)]); } @@ -45,7 +45,7 @@ class Goods extends Controller */ public function vips() { - $where = [['status', 'eq', '1'], ['vip_mod', 'neq', '0'], ['is_deleted', 'eq', '0']]; + $where = [['status', 'eq', '1'], ['is_deleted', 'eq', '0']]; $this->success('获取礼包列表成功!', ['list' => $this->_getGoodsList($where)]); } @@ -65,7 +65,7 @@ class Goods extends Controller if ($this->request->has('cate_id', 'post', true)) { $where[] = ['cate_id', 'eq', $this->request->post('cate_id')]; } - $field = 'id,title,logo,cate_id,image,number_sales,number_stock,vip_mod,vip_month,vip_discount,content,specs,lists'; + $field = 'id,title,logo,cate_id,image,number_sales,number_stock,content,specs,lists'; $list = Db::name('StoreGoods')->field($field)->where($where)->order('sort asc,id desc')->select(); $goodsList = Db::name('StoreGoodsList')->whereIn('goods_id', array_unique(array_column($list, 'id')))->select(); foreach ($list as &$vo) { @@ -90,7 +90,7 @@ class Goods extends Controller { $goods_id = input('goods_id'); $where = ['is_deleted' => '0', 'status' => '1', 'id' => $goods_id]; - $field = 'id,title,logo,cate_id,image,number_sales,number_stock,vip_mod,vip_month,vip_discount,content,specs,lists'; + $field = 'id,title,logo,cate_id,image,number_sales,number_stock,content,specs,lists'; $goods = Db::name('StoreGoods')->field($field)->where($where)->find(); if (empty($goods)) $this->error('指定商品不存在,请更换商品ID重试!'); $goods['image'] = explode('|', $goods['image']); diff --git a/application/store/controller/api/Member.php b/application/store/controller/api/Member.php index 187ab1f4a..3894cf45a 100644 --- a/application/store/controller/api/Member.php +++ b/application/store/controller/api/Member.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller\api; diff --git a/application/store/controller/api/Notify.php b/application/store/controller/api/Notify.php index a565dfad0..de8a9ca28 100644 --- a/application/store/controller/api/Notify.php +++ b/application/store/controller/api/Notify.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller\api; diff --git a/application/store/controller/api/Wechat.php b/application/store/controller/api/Wechat.php index f5c924eca..02d59f014 100644 --- a/application/store/controller/api/Wechat.php +++ b/application/store/controller/api/Wechat.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller\api; diff --git a/application/store/controller/api/member/Address.php b/application/store/controller/api/member/Address.php index ca27ae2ef..08d01d636 100644 --- a/application/store/controller/api/member/Address.php +++ b/application/store/controller/api/member/Address.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller\api\member; diff --git a/application/store/controller/api/member/Center.php b/application/store/controller/api/member/Center.php index 16ff5cf90..5a08e6b39 100644 --- a/application/store/controller/api/member/Center.php +++ b/application/store/controller/api/member/Center.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller\api\member; diff --git a/application/store/controller/api/member/Order.php b/application/store/controller/api/member/Order.php index 604e9304b..d13adddbd 100644 --- a/application/store/controller/api/member/Order.php +++ b/application/store/controller/api/member/Order.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\controller\api\member; diff --git a/application/store/service/Extend.php b/application/store/service/Extend.php index 1a440c381..3c518cfca 100644 --- a/application/store/service/Extend.php +++ b/application/store/service/Extend.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\service; diff --git a/application/store/service/Goods.php b/application/store/service/Goods.php index b4157540e..c6b2acc46 100644 --- a/application/store/service/Goods.php +++ b/application/store/service/Goods.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\service; diff --git a/application/store/service/Order.php b/application/store/service/Order.php index 37d1e42a5..b5d52ebcf 100644 --- a/application/store/service/Order.php +++ b/application/store/service/Order.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- namespace app\store\service; diff --git a/application/store/sys.php b/application/store/sys.php index 30a9e1891..f275d5312 100644 --- a/application/store/sys.php +++ b/application/store/sys.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/ThinkAdmin +// | github开源项目:https://github.com/zoujingli/framework // +---------------------------------------------------------------------- // 注册系统指令 diff --git a/application/store/view/goods/index.html b/application/store/view/goods/index.html index 39abea969..d62725393 100644 --- a/application/store/view/goods/index.html +++ b/application/store/view/goods/index.html @@ -51,7 +51,7 @@ 快递费用:{$vo.price_express|default='0.00'} 元
- 分成比例:{$vo.price_rate|default='0.0000'} %
+ 分成比例:{$vo.price_rate+0} %
销售状态:{eq name='vo.status' value='0'}已下架{else}销售中{/eq}
diff --git a/application/store/view/goods/stock.html b/application/store/view/goods/stock.html index f68c86639..af68144e4 100644 --- a/application/store/view/goods/stock.html +++ b/application/store/view/goods/stock.html @@ -58,9 +58,7 @@
- - - +