diff --git a/app/admin/controller/merchant/system/merchant/MerchantCategory.php b/app/admin/controller/merchant/system/merchant/MerchantCategory.php index b8b7432..7ffddd4 100644 --- a/app/admin/controller/merchant/system/merchant/MerchantCategory.php +++ b/app/admin/controller/merchant/system/merchant/MerchantCategory.php @@ -1,86 +1,163 @@ 'merchant/system/merchant/category/lst', + 'add'=>'merchant/system/merchant/category/add', + 'edit'=>'merchant/system/merchant/category/edit', + ]; + + public function __construct(App $app, MerchantCategoryModel $model) { - // + parent::__construct($app); + $this->model = $model; } /** - * 显示创建资源表单页. - * - * @return \think\Response + * 分类列表页 */ - public function create() + public function index() { - // + return View($this->path['index']); } /** - * 保存新建的资源 - * - * @param \think\Request $request - * @return \think\Response + * 添加分类表单页 */ - public function save(Request $request) + public function addForm() { - // + return View($this->path['add']); } - - /** - * 显示指定的资源 - * - * @param int $id - * @return \think\Response - */ - public function read($id) - { - // - } - + /** * 显示编辑资源表单页. * * @param int $id * @return \think\Response */ - public function edit($id) + public function editForm() { - // + $id = (int) get_params('id'); + if (!$this->model->idIsExists($id)) + return to_assign(1, '数据不存在'); + $info = $this->model->get($id); + + View::assign('info', $info); + + return View($this->path['edit']); + } + + + /** + * 显示资源列表 + * + * @return \think\Response + */ + public function list() + { + $params = get_params(); + $page = empty($params['page'])? 1 : (int)$params['page']; + $limit = empty($params['limit'])? (int)get_config('app . page_size') : (int)$params['limit']; + + $data = $this->model->getList([], $page, $limit); + + return to_assign(0, '', $data); } /** - * 保存更新的资源 + * 添加分类 * - * @param \think\Request $request - * @param int $id * @return \think\Response */ - public function update(Request $request, $id) + public function add(MerchantCategoryValidate $validate) { - // + try{ + $data = $this->checkParams($validate); + $data['commission_rate'] = bcdiv($data['commission_rate'], '100', 4); + $this->model->create($data); + }catch(ValidateException $e){ + return to_assign(1, $e->getError()); + } + + return to_assign(0, '添加成功'); + } + + + /** + * 编辑分类 + */ + public function edit(MerchantCategoryValidate $validate) + { + $id = (int)get_params('id'); + $data = get_params(['category_name','commission_rate']); + + try{ + $data = $this->checkParams($validate); + if (!$this->model->idIsExists($id)) + return to_assign(1, '数据不存在'); + + $data['commission_rate'] = bcdiv($data['commission_rate'], '100', 4); + $this->model->modify($id, $data); + }catch(ValidateException $e){ + return to_assign(1, $e->getError()); + } + + return to_assign(0, '编辑成功'); } /** - * 删除指定资源 - * - * @param int $id - * @return \think\Response + * 删除指定分类 */ - public function delete($id) + public function del(Merchant $merchant) { - // + $id = (int) get_params('id'); + + try{ + if (!$this->model->idIsExists($id)) + return to_assign(1, '数据不存在'); + if ($merchant->fieldExists('category_id', $id)) + return to_assign(1, '存在商户,无法删除'); + $this->model->remove($id); + }catch(ValidateException $e){ + return to_assign(1, $e->getError()); + } + + return to_assign(0, '删除成功'); + } + + + /** ------------------------ protected func -----------*/ + + /** + * 检查http传参 + */ + protected function checkParams(MerchantCategoryValidate $validate) + { + $data = get_params(['category_name', 'commission_rate']); + $validate->check($data); + + return $data; } } diff --git a/app/admin/route/merchant.php b/app/admin/route/merchant.php index 9b92a47..775ecbf 100644 --- a/app/admin/route/merchant.php +++ b/app/admin/route/merchant.php @@ -9,28 +9,27 @@ use think\facade\Route; Route::group(function(){ // 商户分类 Route::group('/merchant/classify', function(){ - Route::get('lst', '/lst')->name('systemMerchantCategoryLst')->option([ + Route::get('index', '/index')->name('systemMerchantCategoryLst')->option([ '_alias' => '商户分类列表', ]); - // Route::get('category_lst', '/lst')->option([ - // '_alias' => '商户分类列表', - // '_auth' => false, - // ]); - Route::post('add', '/create')->name('systemMerchantCategoryCreate')->option([ + Route::get('lst', '/list')->name('systemMerchantCategoryLst')->option([ + '_alias' => '商户分类列表', + ]); + Route::post('add', '/add')->name('systemMerchantCategoryCreate')->option([ '_alias' => '商户分类添加', ]); - Route::get('form', '/createForm')->name('systemMerchantCategoryCreateForm')->option([ + Route::get('add', '/addForm')->name('systemMerchantCategoryCreateForm')->option([ '_alias' => '商户分类添加表单', '_auth' => false, '_form' => 'systemMerchantCategoryCreate', ]); - Route::delete('del/:id', '/delete')->name('systemMerchantCategoryDelete')->option([ + Route::delete('del', '/del')->name('systemMerchantCategoryDelete')->option([ '_alias' => '商户分类删除', ]); - Route::post('edit/:id', '/update')->name('systemMerchantCategoryUpdate')->option([ + Route::post('edit', '/edit')->name('systemMerchantCategoryUpdate')->option([ '_alias' => '商户分类编辑', ]); - Route::get('edit/form/:id', '/updateForm')->name('systemMerchantCategoryUpdateForm')->option([ + Route::get('edit', '/editForm')->name('systemMerchantCategoryUpdateForm')->option([ '_alias' => '商户分类编辑表单', '_auth' => false, '_form' => 'systemMerchantCategoryUpdate', diff --git a/app/admin/view/merchant/system/merchant/category/add.html b/app/admin/view/merchant/system/merchant/category/add.html new file mode 100644 index 0000000..1d0486b --- /dev/null +++ b/app/admin/view/merchant/system/merchant/category/add.html @@ -0,0 +1,86 @@ +{extend name="common/base"/} +{block name="style"} + +{/block} + +{block name="body"} +
+

添加商户分类

+ + + + + + + + + + + +
分类名称* + +
手续费(%) + + %
+ +
+ + +
+
+{/block} + + + +{block name="script"} + + + +{/block} + diff --git a/app/admin/view/merchant/system/merchant/category/edit.html b/app/admin/view/merchant/system/merchant/category/edit.html new file mode 100644 index 0000000..81bddc3 --- /dev/null +++ b/app/admin/view/merchant/system/merchant/category/edit.html @@ -0,0 +1,80 @@ +{extend name="common/base"/} +{block name="style"} + +{/block} + +{block name="body"} +
+

编辑商户分类

+ + + + + + + + + + + + +
分类名称* + +
手续费(%) + + %
+ +
+ + +
+
+{/block} + + + +{block name="script"} + + + +{/block} + diff --git a/app/admin/view/merchant/system/merchant/category/lst.html b/app/admin/view/merchant/system/merchant/category/lst.html new file mode 100644 index 0000000..f2e6123 --- /dev/null +++ b/app/admin/view/merchant/system/merchant/category/lst.html @@ -0,0 +1,121 @@ +{extend name="common/base"/} + +{block name="body"} +
+
+
+ + + + + +{/block} + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/admin/view/merchant/system/merchant/margin/list.html b/app/admin/view/merchant/system/merchant/margin/list.html index 16ddefb..d28a978 100644 --- a/app/admin/view/merchant/system/merchant/margin/list.html +++ b/app/admin/view/merchant/system/merchant/margin/list.html @@ -207,8 +207,9 @@ @@ -218,6 +219,7 @@ {block name="script"}