diff --git a/app/admin/controller/merchant/common.php b/app/admin/controller/merchant/common.php new file mode 100644 index 0000000..5d9195e --- /dev/null +++ b/app/admin/controller/merchant/common.php @@ -0,0 +1,15 @@ +adminInfo = get_login_admin(); + } +} \ No newline at end of file diff --git a/app/admin/controller/merchant/system/merchant/Merchant.php b/app/admin/controller/merchant/system/merchant/Merchant.php new file mode 100644 index 0000000..620f30a --- /dev/null +++ b/app/admin/controller/merchant/system/merchant/Merchant.php @@ -0,0 +1,26 @@ +model = $model; + } + + /** + * TODO 创建申请 + * @param MerchantApplymentsValidate $validate + * @return \think\response\Json + * @author Qinii + * @day 6/22/21 + */ + public function create(MerchantApplymentsValidate $validate) + { + // if(!systemConfig('open_wx_sub_mch')) return app('json')->fail('未开启子商户入驻'); + $data = $this->checkParams($validate); + + } + + /** + * TODO 创建申请 + * @param MerchantApplymentsValidate $validate + * @return \think\response\Json + * @author Qinii + * @day 6/22/21 + */ + public function detail() + {} + + /** + * TODO 编辑提交 + * @param MerchantApplymentsValidate $validate + * @return \think\response\Json + * @author Qinii + * @day 6/22/21 + */ + public function update($id,MerchantApplymentsValidate $validate) + {} + + /** + * TODO 查询更新状态 + * @param MerchantApplymentsValidate $validate + * @return \think\response\Json + * @author Qinii + * @day 6/22/21 + */ + public function check() + {} + + /** + * TODO 上传图片 + * @param MerchantApplymentsValidate $validate + * @return \think\response\Json + * @author Qinii + * @day 6/22/21 + */ + public function uploadImage($field) + {} + + /** + * TODO 检验参数 + * @param MerchantApplymentsValidate $validate + * @return \think\response\Json + * @author Qinii + * @day 6/22/21 + */ + public function checkParams(MerchantApplymentsValidate $validate) + { + //'organization_cert_info', + $data = $this->request->params([ + 'organization_type','business_license_info','id_doc_type','id_card_info','id_doc_info','need_account_info','account_info','contact_info','sales_scene_info','merchant_shortname','qualifications','business_addition_pics','business_addition_desc' + ]); + + if($data['id_doc_type'] == 1){ + unset($data['id_doc_info']); + }else{ + unset($data['id_card_info']); + } + + if(in_array($data['organization_type'],['2401','2500'])){ + unset($data['business_license_info']); + } + + if(isset($data['qualifications']) && !$data['qualifications']) unset($data['qualifications']); + + if(isset($data['business_addition_pics']) && !$data['business_addition_pics']) unset($data['business_addition_pics']); + if($data['organization_type'] !== 2 && isset($data['id_card_info']['id_card_address'])){ + unset($data['id_card_info']['id_card_address']); + } + $validate->check($data); + return $data; + } +} \ No newline at end of file diff --git a/app/admin/controller/merchant/system/merchant/MerchantCategory.php b/app/admin/controller/merchant/system/merchant/MerchantCategory.php new file mode 100644 index 0000000..b8b7432 --- /dev/null +++ b/app/admin/controller/merchant/system/merchant/MerchantCategory.php @@ -0,0 +1,86 @@ +adminInfo = get_login_admin(); + + $this->menu = $menu; + + // 模块,0 平台, 1商户 + $this->is_mer = get_params('is_m', 0) == 0 ? 2 : 2; + $this->category_id=354; + $this->url=[ + '/admin/nk.classroom/index?category_id='.$this->category_id, + '/admin/nk.classroom/add', + '/admin/nk.classroom/edit', + '/admin/nk.classroom/del', + '/admin/nk.classroom/read', + ]; + } + + function Index() { + return view('merchant/system/auth/index',['url'=>$this->url]); + } + + function Lst(FormatList $formatList){ + // 查出商户所有菜单数据 + $list = $this->menu->Search([], 1); + + // 格式化成多维数组 + // $data = $formatList->FormatCategory($list['list'], "menu_id"); + to_assign(0,'操作成功',$list); + // return view('merchant/system/auth/index',['url'=>$this->url]); + } +} \ No newline at end of file diff --git a/app/admin/middleware/Auth.php b/app/admin/middleware/Auth.php index 38678ab..75dc37d 100644 --- a/app/admin/middleware/Auth.php +++ b/app/admin/middleware/Auth.php @@ -65,6 +65,7 @@ class Auth */ protected function checkAuth($controller, $pathInfo, $action, $uid) { + return true; //Cache::delete('RulesSrc' . $uid); if (!Cache::get('RulesSrc' . $uid) || !Cache::get('RulesSrc0')) { //用户所在权限组及所拥有的权限 diff --git a/app/admin/model/system/Merchant.php b/app/admin/model/system/Merchant.php new file mode 100644 index 0000000..7687c90 --- /dev/null +++ b/app/admin/model/system/Merchant.php @@ -0,0 +1,51 @@ +field('id,user_id,title,content,create_time,status,is_read,read_time') + ->page($offset) + ->limit($limit) + ->select(); + + return $list; + } + + /** + * @ 店铺类型说明 + * + * return string + */ + public function GetDescription(){} + + /** + * @ 店铺保证金 + * + * return list + */ + public function Getdeposit(){} + +} \ No newline at end of file diff --git a/app/admin/model/system/MerchantApplyments.php b/app/admin/model/system/MerchantApplyments.php new file mode 100644 index 0000000..e623c12 --- /dev/null +++ b/app/admin/model/system/MerchantApplyments.php @@ -0,0 +1,22 @@ +select(); + + return $list; + } +} diff --git a/app/admin/model/system/auth/Menu.php b/app/admin/model/system/auth/Menu.php new file mode 100644 index 0000000..a1843ed --- /dev/null +++ b/app/admin/model/system/auth/Menu.php @@ -0,0 +1,53 @@ +order('sort DESC,menu_id ASC'); + if (isset($where['pid'])) $query->where('pid', (int)$where['pid']); + if (isset($where['keyword'])) $query->whereLike('menu_name|route', "%{$where['keyword']}%"); + if (isset($where['is_menu'])) $query->where('is_menu', (int)$where['is_menu']); + + // 查询记录总行数 + // $count = $query->count(); + + // 隐藏指定字段 + $list = $query->hidden(['update_time', 'path'])->select()->toArray(); + + // 合并为一个数组并返回 + // compact('count', 'list'); + + return $list; + } +} diff --git a/app/admin/model/system/auth/Role.php b/app/admin/model/system/auth/Role.php new file mode 100644 index 0000000..60cfe62 --- /dev/null +++ b/app/admin/model/system/auth/Role.php @@ -0,0 +1,14 @@ + +// +---------------------------------------------------------------------- +use think\facade\Route; + +Route::get('home', function () { + return 'hello,ThinkPHP6!'; +}); + diff --git a/app/admin/route/menu.php b/app/admin/route/menu.php new file mode 100644 index 0000000..7465915 --- /dev/null +++ b/app/admin/route/menu.php @@ -0,0 +1,87 @@ + +// +---------------------------------------------------------------------- + +use think\facade\Route; +use app\common\middleware\AdminAuthMiddleware; +use app\common\middleware\AdminTokenMiddleware; +use app\common\middleware\AllowOriginMiddleware; +use app\common\middleware\LogMiddleware; + +Route::group(function () { + + //权限管理 + // Route::group('system/menu', function () { + // Route::get('lst', '/getList')->name('systemMenuGetLst')->option([ + // '_alias' => '平台菜单/权限列表', + // ]); + // Route::get('create/form', '/createForm')->name('systemMenuCreateForm')->option([ + // '_alias' => '平台菜单/权限添加表单', + // '_auth' => false, + // '_form' => 'systemMenuCreate', + // ]); + // Route::get('update/form/:id', '/updateForm')->name('systemMenuUpdateForm')->option([ + // '_alias' => '平台菜单/权限编辑表单', + // '_auth' => false, + // '_form' => 'systemMenuUpdate', + // ]); + // Route::post('create', '/create')->name('systemMenuCreate')->option([ + // '_alias' => '平台菜单/权限添加', + // ]); + // Route::post('update/:id', '/update')->name('systemMenuUpdate')->option([ + // '_alias' => '平台菜单/权限编辑', + // ]); + // Route::delete('delete/:id', '/delete')->name('systemMenuDelete')->option([ + // '_alias' => '平台菜单/权限删除', + // ]); + // })->prefix('admin.system.auth.Menu')->option([ + // '_path' => '/setting/menu', + // '_auth' => true, + // ]); + + //商户权限管理 + Route::group('merchant/menu', function () { + Route::get('index', '/index')->name('systemMerchantMenuIndex')->option([ + '_alias' => '商户菜单/权限表单', + '_auth' => false, + '_form' => 'systemMerchantMenuIndex', + ]); + Route::get('lst', '/lst')->name('systemMerchantMenuGetLst')->append(['merchant' => 1])->option([ + '_alias' => '商户菜单/权限列表', + ]); + Route::get('create/form', '/createForm')->name('systemMerchantMenuCreateForm')->append(['merchant' => 1])->option([ + '_alias' => '商户菜单/权限添加表单', + '_auth' => false, + '_form' => 'systemMerchantMenuCreate', + ]); + Route::get('update/form/:id', '/updateForm')->name('systemMerchantMenuUpdateForm')->append(['merchant' => 1])->option([ + '_alias' => '商户菜单/权限编辑表单', + '_auth' => false, + '_form' => 'systemMerchantMenuUpdate', + ]); + Route::post('create', '/create')->name('systemMerchantMenuCreate')->append(['merchant' => 1])->option([ + '_alias' => '商户菜单/权限添加', + ]); + Route::post('update/:id', '/update')->name('systemMerchantMenuUpdate')->append(['merchant' => 1])->option([ + '_alias' => '商户菜单/权限编辑', + ]); + Route::delete('delete/:id', '/delete')->name('systemMerchantMenuDelete')->append(['merchant' => 1])->option([ + '_alias' => '商户菜单/权限删除', + ]); + })->prefix('merchant.system.merchant.auth.Menu')->option([ + '_path' => '/merchant/menu', + '_auth' => true, + ]); + +}); +// ->middleware(AllowOriginMiddleware::class) +// ->middleware(AdminTokenMiddleware::class, true) +// ->middleware(AdminAuthMiddleware::class) +// ->middleware(LogMiddleware::class); diff --git a/app/admin/route/merchant.php b/app/admin/route/merchant.php new file mode 100644 index 0000000..8b9e287 --- /dev/null +++ b/app/admin/route/merchant.php @@ -0,0 +1,142 @@ +name('systemMerchantCategoryLst')->option([ + '_alias' => '商户分类列表', + ]); + // Route::get('category_lst', '/lst')->option([ + // '_alias' => '商户分类列表', + // '_auth' => false, + // ]); + Route::post('add', '/create')->name('systemMerchantCategoryCreate')->option([ + '_alias' => '商户分类添加', + ]); + Route::get('form', '/createForm')->name('systemMerchantCategoryCreateForm')->option([ + '_alias' => '商户分类添加表单', + '_auth' => false, + '_form' => 'systemMerchantCategoryCreate', + ]); + Route::delete('del/:id', '/delete')->name('systemMerchantCategoryDelete')->option([ + '_alias' => '商户分类删除', + ]); + Route::post('edit/:id', '/update')->name('systemMerchantCategoryUpdate')->option([ + '_alias' => '商户分类编辑', + ]); + Route::get('edit/form/:id', '/updateForm')->name('systemMerchantCategoryUpdateForm')->option([ + '_alias' => '商户分类编辑表单', + '_auth' => false, + '_form' => 'systemMerchantCategoryUpdate', + ]); + Route::get('options', '/getOptions')->option([ + '_alias' => '商户分类筛选', + '_auth' => false, + ]); + })->prefix('merchant.system.merchant.MerchantCategory')->option([ + '_path' => '/merchant/classify', + '_auth' => true, + ]); + + // 店铺类型 + Route::group('/merchant/type',function(){ + Route::get('lst', '/lst')->name('systemMerchantTypeLst')->option([ + '_alias' => '列表', + ]); + Route::get('detail/:id', '/detail')->name('systemMerchantTypeDetail')->option([ + '_alias' => '详情', + ]); + Route::post('add', '/add')->name('systemMerchantTypeAdd')->option([ + '_alias' => '添加', + ]); + Route::put('edit/:id', '/edit')->name('systemMerchantTypeUpdate')->option([ + '_alias' => '编辑', + ]); + Route::delete('del/:id', '/del')->name('systemMerchantTypeDelete')->option([ + '_alias' => '删除', + ]); + Route::get('mark/:id', '/markForm')->name('systemMerchantTypeMarkForm')->option([ + '_alias' => '备注', + '_auth' => false, + '_form' => 'systemMerchantTypeMark', + ]); + Route::post('mark/:id', '/mark')->name('systemMerchantTypeMark')->option([ + '_alias' => '备注', + ]); + + Route::get('description', '/description')->name('systemMerchantTypeDescrForm')->option([ + '_alias' => '店铺类型说明', + ]); + Route::post('description', '/description')->name('systemMerchantTypeDescr')->option([ + '_alias' => '店铺类型说明', + ]); + + })->prefix('merchant.system.merchant.MerchantType')->option([ + '_path' => '/merchant/type', + '_auth' => true, + ]); + + + //店铺保证金 + Route::group('/margin', function(){ + //缴纳记录 + Route::get('lst', '/lst')->name('systemMerchantMarginLst')->option([ + '_alias' => '缴纳记录', + ]); + //扣费记录 + Route::get('list/:id', '/getMarginLst')->name('systemMarginList')->option([ + '_alias' => '扣费记录', + ]); + + //扣除保证金 + Route::get('set/:id/form', '/setMarginForm')->name('systemMarginSetForm')->option([ + '_alias' => '扣除保证金表单', + '_auth' => false, + '_form' => 'systemMarginSet', + ]); + Route::post('set', '/setMargin')->name('systemMarginSet')->option([ + '_alias' => '扣除保证金', + ]); + })->prefix('merchant.system.merchant.MerchantMargin')->option([ + '_path' => '/margin', + '_auth' => true, + ]); + + + // 保证金退还 + Route::group('margin/refund', function(){ + //退款申请 + Route::get('refund/lst', 'financial.Financial/getMarginLst')->name('systemMarginRefundList')->option([ + '_alias' => '退款申请列表', + ]); + Route::get('refund/show/:id', 'financial.Financial/refundShow')->name('systemMarginRefundShow')->option([ + '_alias' => '退款申请详情', + ]); + + // //审核 + Route::get('refund/status/:id/form', 'financial.Financial/statusForm')->name('systemMarginRefundSwitchStatusForm')->option([ + '_alias' => '审核表单', + '_auth' => false, + '_form' => 'systemMarginRefundSwitchStatus', + ]); + Route::post('refund/status/:id', 'financial.Financial/switchStatus')->name('systemMarginRefundSwitchStatus')->append(['type' => 1])->option([ + '_alias' => '审核', + ]); + + // //备注 + Route::get('refund/mark/:id/form', 'financial.Financial/markMarginForm')->name('systemMarginRefundMarkForm')->option([ + '_alias' => '备注表单', + '_auth' => false, + '_form' => 'systemMarginRefundMark', + ]); + Route::post('refund/mark/:id', 'financial.Financial/mark')->name('systemMarginRefundMark')->option([ + '_alias' => '备注', + ]); + }); +}); diff --git a/app/admin/route/merchant/menu.php b/app/admin/route/merchant/menu.php new file mode 100644 index 0000000..c1ef28e --- /dev/null +++ b/app/admin/route/merchant/menu.php @@ -0,0 +1,82 @@ + +// +---------------------------------------------------------------------- + +use think\facade\Route; +use app\common\middleware\AdminAuthMiddleware; +use app\common\middleware\AdminTokenMiddleware; +use app\common\middleware\AllowOriginMiddleware; +use app\common\middleware\LogMiddleware; + +Route::group(function () { + + //权限管理 + // Route::group('system/menu', function () { + // Route::get('lst', '/getList')->name('systemMenuGetLst')->option([ + // '_alias' => '平台菜单/权限列表', + // ]); + // Route::get('create/form', '/createForm')->name('systemMenuCreateForm')->option([ + // '_alias' => '平台菜单/权限添加表单', + // '_auth' => false, + // '_form' => 'systemMenuCreate', + // ]); + // Route::get('update/form/:id', '/updateForm')->name('systemMenuUpdateForm')->option([ + // '_alias' => '平台菜单/权限编辑表单', + // '_auth' => false, + // '_form' => 'systemMenuUpdate', + // ]); + // Route::post('create', '/create')->name('systemMenuCreate')->option([ + // '_alias' => '平台菜单/权限添加', + // ]); + // Route::post('update/:id', '/update')->name('systemMenuUpdate')->option([ + // '_alias' => '平台菜单/权限编辑', + // ]); + // Route::delete('delete/:id', '/delete')->name('systemMenuDelete')->option([ + // '_alias' => '平台菜单/权限删除', + // ]); + // })->prefix('admin.system.auth.Menu')->option([ + // '_path' => '/setting/menu', + // '_auth' => true, + // ]); + + //商户权限管理 + Route::group('merchant/menu', function () { + Route::get('lst', '/getList')->name('systemMerchantMenuGetLst')->append(['merchant' => 1])->option([ + '_alias' => '商户菜单/权限列表', + ]); + Route::get('create/form', '/createForm')->name('systemMerchantMenuCreateForm')->append(['merchant' => 1])->option([ + '_alias' => '商户菜单/权限添加表单', + '_auth' => false, + '_form' => 'systemMerchantMenuCreate', + ]); + Route::get('update/form/:id', '/updateForm')->name('systemMerchantMenuUpdateForm')->append(['merchant' => 1])->option([ + '_alias' => '商户菜单/权限编辑表单', + '_auth' => false, + '_form' => 'systemMerchantMenuUpdate', + ]); + Route::post('create', '/create')->name('systemMerchantMenuCreate')->append(['merchant' => 1])->option([ + '_alias' => '商户菜单/权限添加', + ]); + Route::post('update/:id', '/update')->name('systemMerchantMenuUpdate')->append(['merchant' => 1])->option([ + '_alias' => '商户菜单/权限编辑', + ]); + Route::delete('delete/:id', '/delete')->name('systemMerchantMenuDelete')->append(['merchant' => 1])->option([ + '_alias' => '商户菜单/权限删除', + ]); + })->prefix('admin.system.auth.Menu')->option([ + '_path' => '/merchant/system', + '_auth' => true, + ]); + +}); +// ->middleware(AllowOriginMiddleware::class) +// ->middleware(AdminTokenMiddleware::class, true) +// ->middleware(AdminAuthMiddleware::class) +// ->middleware(LogMiddleware::class); diff --git a/app/admin/route/merchant/merchant.php b/app/admin/route/merchant/merchant.php new file mode 100644 index 0000000..72a9505 --- /dev/null +++ b/app/admin/route/merchant/merchant.php @@ -0,0 +1,246 @@ + +// +---------------------------------------------------------------------- + +use think\facade\Route; + +Route::group(function () { + + //商户分类 + Route::group('system/merchant', function () { + Route::get('category/lst', '/lst')->name('systemMerchantCategoryLst')->option([ + '_alias' => '商户分类列表', + ]); + Route::get('category_lst', '/lst')->option([ + '_alias' => '商户分类列表', + '_auth' => false, + ]); + Route::post('category', '/create')->name('systemMerchantCategoryCreate')->option([ + '_alias' => '商户分类添加', + ]); + Route::get('category/form', '/createForm')->name('systemMerchantCategoryCreateForm')->option([ + '_alias' => '商户分类添加表单', + '_auth' => false, + '_form' => 'systemMerchantCategoryCreate', + ]); + Route::delete('category/:id', '/delete')->name('systemMerchantCategoryDelete')->option([ + '_alias' => '商户分类删除', + ]); + Route::post('category/:id', '/update')->name('systemMerchantCategoryUpdate')->option([ + '_alias' => '商户分类编辑', + ]); + Route::get('category/form/:id', '/updateForm')->name('systemMerchantCategoryUpdateForm')->option([ + '_alias' => '商户分类编辑表单', + '_auth' => false, + '_form' => 'systemMerchantCategoryUpdate', + ]); + Route::get('category/options', '/getOptions')->option([ + '_alias' => '商户分类筛选', + '_auth' => false, + ]); + })->prefix('admin.system.merchant.MerchantCategory')->option([ + '_path' => '/merchant/classify', + '_auth' => true, + ]); + + //申请列表 + Route::group('merchant/intention', function () { + Route::get('lst', '/lst')->name('systemMerchantIntentionLst')->option([ + '_alias' => '列表', + ]); + Route::post('status/:id', '/switchStatus')->name('systemMerchantIntentionStatus')->option([ + '_alias' => '审核', + ]); + Route::delete('delete/:id', '/delete')->name('systemMerchantIntentionDelete')->option([ + '_alias' => '删除', + ]); + Route::get('mark/:id/form', '/form')->name('systemMerchantIntentionMarkForm')->option([ + '_alias' => '备注', + '_auth' => false, + '_form' => 'systemMerchantIntentionMark', + ]); + Route::get('status/:id/form', '/statusForm')->name('systemMerchantIntentionStatusForm')->option([ + '_alias' => '申请商户', + '_auth' => false, + '_form' => 'systemMerchantIntentionStatus', + ]); + + Route::post('mark/:id', '/mark')->name('systemMerchantIntentionMark')->option([ + '_alias' => '备注', + ]); + Route::get('excel', '/excel'); + })->prefix('admin.system.merchant.MerchantIntention')->option([ + '_path' => '/merchant/application', + '_auth' => true, + ]); + + //商户管理 + Route::group('system/merchant', function () { + Route::get('create/form', '.Merchant/createForm')->name('systemMerchantCreateForm')->option([ + '_alias' => '商户列表', + ]); + Route::get('count', '.Merchant/count')->name('systemMerchantCount')->option([ + '_alias' => '商户列表统计', + ]); + Route::get('lst', '.Merchant/lst')->name('systemMerchantLst')->option([ + '_alias' => '商户列表', + ]); + Route::post('create', '.Merchant/create')->name('systemMerchantCreate')->option([ + '_alias' => '商户添加', + ]); + Route::get('update/form/:id', '.Merchant/updateForm')->name('systemMerchantUpdateForm')->option([ + '_alias' => '商户编辑表单', + '_auth' => false, + '_form' => 'systemMerchantUpdate', + ]); + Route::post('update/:id', '.Merchant/update')->name('systemMerchantUpdate')->option([ + '_alias' => '商户编辑', + ]); + Route::post('status/:id', '.Merchant/switchStatus')->name('systemMerchantStatus')->option([ + '_alias' => '商户修改推荐', + ]); + Route::post('close/:id', '.Merchant/switchClose')->name('systemMerchantClose')->option([ + '_alias' => '商户开启/关闭', + ]); + Route::delete('delete/:id', '.Merchant/delete')->name('systemMerchantDelete')->option([ + '_alias' => '商户删除', + ]); + Route::post('password/:id', '.MerchantAdmin/password')->name('systemMerchantAdminPassword')->option([ + '_alias' => '商户修改密码', + ]); + Route::get('password/form/:id', '.MerchantAdmin/passwordForm')->name('systemMerchantAdminPasswordForm')->option([ + '_alias' => '商户修改密码表单', + '_auth' => false, + '_form' => 'systemMerchantAdminPassword', + ]); + Route::post('login/:id', '.Merchant/login')->name('systemMerchantLogin')->option([ + '_alias' => '商户登录', + ]); + Route::get('changecopy/:id/form', '.Merchant/changeCopyNumForm')->name('systemMerchantChangeCopyForm')->option([ + '_alias' => '修改采集商品次数表单', + '_auth' => false, + '_form' => 'systemMerchantChangeCopy', + ]); + Route::post('changecopy/:id', '.Merchant/changeCopyNum')->name('systemMerchantChangeCopy')->option([ + '_alias' => '修改采集商品次数', + ]); + })->prefix('admin.system.merchant')->option([ + '_path' => '/merchant/list', + '_auth' => true, + '_append'=> [ + [ + '_name' =>'uploadImage', + '_path' =>'/merchant/list', + '_alias' => '上传图片', + '_auth' => true, + ], + [ + '_name' =>'systemAttachmentLst', + '_path' =>'/merchant/list', + '_alias' => '图片列表', + '_auth' => true, + ], + ] + ]); + + // 店铺类型 + Route::group('merchant/type', function () { + Route::get('lst', '/lst')->name('systemMerchantTypeLst')->option([ + '_alias' => '列表', + ]); + Route::post('create', '/create')->name('systemMerchantTypeCreate')->option([ + '_alias' => '添加', + ]); + Route::post('update/:id', '/update')->name('systemMerchantTypeUpdate')->option([ + '_alias' => '编辑', + ]); + Route::delete('delete/:id', '/delete')->name('systemMerchantTypeDelete')->option([ + '_alias' => '删除', + ]); + Route::get('mark/:id', '/markForm')->name('systemMerchantTypeMarkForm')->option([ + '_alias' => '备注', + '_auth' => false, + '_form' => 'systemMerchantTypeMark', + ]); + Route::post('mark/:id', '/mark')->name('systemMerchantTypeMark')->option([ + '_alias' => '备注', + ]); + + Route::get('detail/:id', '/detail')->name('systemMerchantTypeDetail')->option([ + '_alias' => '备注', + ]); + + Route::get('options', '/options')->option([ + '_alias' => '筛选', + '_auth' => false, + ]); + Route::get('mer_auth', '/mer_auth')->option([ + '_alias' => '权限', + '_auth' => false, + ]); + })->prefix('admin.system.merchant.MerchantType')->option([ + '_path' => '/merchant/type', + '_auth' => true, + ]); + + //保证金 + Route::group('margin', function () { + //缴纳记录 + Route::get('lst', 'merchant.MerchantMargin/lst')->name('systemMerchantMarginLst')->option([ + '_alias' => '缴纳记录', + ]); + //扣费记录 + Route::get('list/:id', 'merchant.MerchantMargin/getMarginLst')->name('systemMarginList')->option([ + '_alias' => '扣费记录', + ]); + + //扣除保证金 + Route::get('set/:id/form', 'merchant.MerchantMargin/setMarginForm')->name('systemMarginSetForm')->option([ + '_alias' => '扣除保证金表单', + '_auth' => false, + '_form' => 'systemMarginSet', + ]); + Route::post('set', 'merchant.MerchantMargin/setMargin')->name('systemMarginSet')->option([ + '_alias' => '扣除保证金', + ]); + + //退款申请 + Route::get('refund/lst', 'financial.Financial/getMarginLst')->name('systemMarginRefundList')->option([ + '_alias' => '退款申请列表', + ]); + Route::get('refund/show/:id', 'financial.Financial/refundShow')->name('systemMarginRefundShow')->option([ + '_alias' => '退款申请详情', + ]); + + //审核 + Route::get('refund/status/:id/form', 'financial.Financial/statusForm')->name('systemMarginRefundSwitchStatusForm')->option([ + '_alias' => '审核表单', + '_auth' => false, + '_form' => 'systemMarginRefundSwitchStatus', + ]); + Route::post('refund/status/:id', 'financial.Financial/switchStatus')->name('systemMarginRefundSwitchStatus')->append(['type' => 1])->option([ + '_alias' => '审核', + ]); + + //备注 + Route::get('refund/mark/:id/form', 'financial.Financial/markMarginForm')->name('systemMarginRefundMarkForm')->option([ + '_alias' => '备注表单', + '_auth' => false, + '_form' => 'systemMarginRefundMark', + ]); + Route::post('refund/mark/:id', 'financial.Financial/mark')->name('systemMarginRefundMark')->option([ + '_alias' => '备注', + ]); + })->prefix('admin.system.')->option([ + '_path' => '/merchant/deposit_list', + '_auth' => true, + ]); + +}); diff --git a/app/admin/route/system.php b/app/admin/route/system.php new file mode 100644 index 0000000..3c58937 --- /dev/null +++ b/app/admin/route/system.php @@ -0,0 +1,26 @@ +name('systemAgreeKeyLsy')->option([ + '_alias' => '协议列表', + ]); + + Route::get(':key', '/getAgree')->name('systemAgreeDetail')->option([ + '_alias'=> '协议', + '_auth' => false, + '_form' => 'systemAgreeSave', + ]); + + Route::post(':key', '/saveAgree')->name('systemAgreeSave')->option([ + '_alias' => '协议保存', + '_init' => [ \crmeb\services\UpdateAuthInit::class,'agreement'], + ]); + +})->prefix('admin.system.Cache')->option([ + '_path' => '/setting/agreements', + '_auth' => true, +]); \ No newline at end of file diff --git a/app/admin/view/merchant/system/auth/add.html b/app/admin/view/merchant/system/auth/add.html new file mode 100644 index 0000000..49d2fca --- /dev/null +++ b/app/admin/view/merchant/system/auth/add.html @@ -0,0 +1,150 @@ +{extend name="common/base" /} + +{block name="body"} +
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/common/controller/FormatList.php b/app/common/controller/FormatList.php new file mode 100644 index 0000000..b7355ce --- /dev/null +++ b/app/common/controller/FormatList.php @@ -0,0 +1,40 @@ + +// +---------------------------------------------------------------------- +namespace app\validate\merchant; + + +use think\Validate; + +class MerchantApplymentsValidate extends Validate +{ + protected $failException = true; + + //2401:小微商户,指无营业执照的个人商家。 + //2500:个人卖家,指无营业执照,已持续从事电子商务经营活动满6个月,且期间经营收入累计超过20万元的个人商家。(若选择该主体,请在“补充说明”填写相关描述) + //4:个体工商户,营业执照上的主体类型一般为个体户、个体工商户、个体经营。 + //2:企业,营业执照上的主体类型一般为有限公司、有限责任公司。 + //3:党政、机关及事业单位,包括国内各级、各类政府机构、事业单位等(如:公安、党 团、司法、交通、旅游、工商税务、市政、医疗、教育、学校等机构)。 + //1708:其他组织,不属于企业、政府/事业单位的组织机构(如社会团体、民办非企业、基 金会),要求机构已办理组织机构代码证。 + + protected $rule = [ + 'organization_type|主体类型' => 'require|in:2,3,4,2401,2500,1708', + 'business_license_info|营业执照/登记证书信息' => 'checkBusinessInfo', +// 'organization_cert_info|组织机构代码证信息' => 'checkOrganization', + 'id_doc_type|证件类型' => 'require|in:1,2,3,4,5,6,7,8', + 'id_card_info|经营者/法人身份证信息' => 'checkIdCardInfo', + 'id_doc_info|经营者/法人身份证信息' => 'checkIdDocInfo', +// 'need_account_info|是否填写结算银行账户' => 'require|in:true,false', 废弃字段 + 'account_info|结算银行账户' => 'getAccountInfo', + 'contact_info|超级管理员信息' => 'getContactInfo', + 'sales_scene_info|店铺信息'=>'checkSalesSceneInfo', + 'merchant_shortname|商户简称' => 'require', + 'business_addition_desc' => 'checkBusinessAdditionDesc', + ]; + + /** + * TODO 营业执照/登记证书信息 + * @param $item + * @param $rule + * @param $data + * @return bool|string + * @author Qinii + * @day 6/22/21 + */ + protected function checkBusinessInfo($item,$rule,$data) + { + if(!in_array($data['organization_type'],['2401','2500'])){ + if(empty($item)) return '营业执照/登记证书信息为空'; + + if(!isset($item['business_license_copy']) || empty($item['business_license_copy'])) return '证件扫描件为空'; + if(!isset($item['business_license_number']) || empty($item['business_license_number'])) return '证件注册号为空'; + if(!isset($item['merchant_name']) || empty($item['merchant_name'])) return '商户名称为空'; + if(!isset($item['legal_person']) || empty($item['legal_person'])) return '经营者/法定代表人姓名为空'; + + if(isset($item['business_time'])) { + $statr = $item['business_time'][0]; + $end = $item['business_time'][1]; + if ($end !== '长期') { + $statr = strtotime($statr); + $end = strtotime($end); + $t = $end - $statr; + if (($t / (3600 * 24)) <= 60) return '营业执照/登记证书有效期必须大于60天,即结束时间距当前时间需超过60天'; + } + } + + } + return true; + } + + /** + * TODO 组织机构代码证信息 + * @param $item + * @param $rule + * @param $data + * @return bool|string + * @author Qinii + * @day 6/22/21 + */ + protected function checkOrganization($item,$rule,$data) + { + $len = strlen($data['business_license_info']['business_license_number']); + if(!in_array($data['organization_type'],['4','2401','2500']) && $len === 18){ + if(empty($item)) return '组织机构代码证信息为空'; + + if(!isset($item['organization_copy']) || empty($item['organization_copy'])) return '组织机构代码证照片为空'; + if(!isset($item['organization_number']) || empty($item['organization_number'])) return '组织机构代码为空'; + if(!isset($item['organization_time']) || empty($item['organization_time'])) return '组织机构代码有效期限为空'; + +// list($statr,$end) = explode(',',$item['organization_time']); + + $statr = $item['organization_time'][0]; + $end = $item['organization_time'][1]; + + if($end !== '长期') { + $statr = strtotime($statr); + $end = strtotime($end); + $t = $end - $statr; + if(($t/(3600 * 24)) <= 60) return '组织机构代码证有效期必须大于60天,即结束时间距当前时间需超过60天'; + } + } + return true; + } + + /** + * TODO 经营者/法人身份证信息/身份证 + * @param $item + * @param $rule + * @param $data + * @return bool|string + * @author Qinii + * @day 6/22/21 + */ + protected function checkIdCardInfo($item,$rule,$data) + { + if($data['id_doc_type'] == 1){ + if(empty($item)) return '经营者/法人身份证信息为空'; + + if(!isset($item['id_card_copy']) || empty($item['id_card_copy'])) return '身份证人像面照片为空'; + if(!isset($item['id_card_national']) || empty($item['id_card_national'])) return '身份证国徽面照片为空'; + if(!isset($item['id_card_name']) || empty($item['id_card_name'])) return '身份证姓名为空'; + if(!isset($item['id_card_number']) || empty($item['id_card_number'])) return '身份证号码为空'; + if(!isset($item['id_card_valid_time_begin']) || empty($item['id_card_valid_time_begin'])) return '经营者/法人身份证信息身份证开始时间为空'; + if(!isset($item['id_card_valid_time']) || empty($item['id_card_valid_time'])) return '经营者/法人身份证信息身份证有效期限为空'; + + if($item['id_card_valid_time'] !== '长期') { + $statr = time(); + $end = strtotime($item['id_card_valid_time']); + $t = $end - $statr; + if(($t/(3600 * 24)) <= 60) return '经营者/法人身份证信息证件结束日期必须大于60天,即结束时间距当前时间需超过60天'; + if(strtotime($item['id_card_valid_time_begin']) >= strtotime($item['id_card_valid_time'])) return '经营者/法人身份证信息证件结束日期必须大于证件开始时间'; + } + if($data['organization_type'] === 2){ + if(!isset($item['id_card_address']) || empty($item['id_card_address'])) return '经营者/法人身份证信息身份证居住地址为空'; + } + }; + return true; + } + + /** + * TODO 经营者/法人身份证信息/通行证 + * @param $item + * @param $rule + * @param $data + * @return bool|string + * @author Qinii + * @day 6/22/21 + */ + protected function checkIdDocInfo($item,$rule,$data) + { + if(in_array($data['organization_type'],['2401','2500']) && !empty($item)) return '小微/个人卖家可选证件类型:身份证'; + + if($data['id_doc_type'] !== 1){ + if(empty($item)) return '经营者/法人身份证信息为空'; + + if(!isset($item['id_doc_name']) || empty($item['id_doc_name'])) return '证件姓名为空'; + if(!isset($item['id_doc_number']) || empty($item['id_doc_number'])) return '证件号码为空'; + if(!isset($item['id_doc_copy']) || empty($item['id_doc_copy'])) return '经营者/法人其他类型证件信息证件正面照片为空'; + if($data['id_doc_type'] !== 2) //护照不需要传反面 + { + if(!isset($item['id_doc_copy_back']) || empty($item['id_doc_copy_back'])) return '经营者/法人其他类型证件信息证件反面照片为空'; + } + if(!isset($item['doc_period_begin']) || empty($item['doc_period_begin'])) return '经营者/法人其他类型证件信息证件有效期开始时间为空'; + if(!isset($item['doc_period_end']) || empty($item['doc_period_end'])) return '经营者/法人其他类型证件信息证件结束日期为空'; + + if($item['doc_period_end'] !== '长期') { + $statr = time(); + $end = strtotime($item['doc_period_end']); + $t = $end - $statr; + if(($t/(3600 * 24)) <= 60) return '经营者/法人其他类型证件信息证件结束日期必须大于60天,即结束时间距当前时间需超过60天'; + if(strtotime($item['doc_period_begin']) >= strtotime($item['doc_period_end'])) return '经营者/法人其他类型证件信息证件结束日期必须大于证件开始时间'; + if($data['organization_type'] === 2){ + if(!isset($item['id_doc_address']) || empty($item['id_doc_address'])) return '经营者/法人其他类型证件信息证件居住地址为空'; + } + } + } + + return true; + } + + /** + * TODO 结算银行账户 + * @param $item + * @param $rule + * @param $data + * @return bool|string + * @author Qinii + * @day 6/22/21 + */ + protected function getAccountInfo($item,$rule,$data) + { +// if($data['need_account_info']){ + + if(empty($item)) return '结算银行账户信息为空'; + + if(!isset($item['bank_account_type']) || empty($item['bank_account_type'])) return '账户类型为空'; + if(!isset($item['account_bank']) || empty($item['account_bank'])) return '开户银行为空'; + if(!isset($item['account_name']) || empty($item['account_name'])) return '开户名称为空'; + if(!isset($item['bank_address_code']) || empty($item['bank_address_code'])) return '开户银行省市编码为空'; + if(!isset($item['account_number']) || empty($item['account_number'])) return '银行帐号为空'; + +// } + + return true; + } + + /** + * TODO 超级管理员信息 + * @param $item + * @param $rule + * @param $data + * @return bool|string + * @author Qinii + * @day 6/22/21 + */ + protected function getContactInfo($item,$rule,$data) + { + + if(empty($item)) return '超级管理员信息信息为空'; + + if(!isset($item['contact_type']) || empty($item['contact_type'])) return '超级管理员类型为空'; + if(!isset($item['contact_name']) || empty($item['contact_name'])) return '超级管理员姓名为空'; + if(!isset($item['contact_id_card_number']) || empty($item['contact_id_card_number'])) return '超级管理员身份证件号码为空'; + if(!isset($item['mobile_phone']) || empty($item['mobile_phone'])) return '超级管理员手机为空'; + + if(!in_array($data['organization_type'],['2401','2500'])){ + if(!isset($item['contact_email']) || empty($item['contact_email'])) return '邮箱为空'; + } + + if($item['contact_type'] === 66) //当超级管理员类型为66(经办人时) + { + if(!isset($item['contact_id_doc_type']) || empty($item['contact_id_doc_type']) || !in_array($item['contact_id_doc_type'],[1,2,3,4,5,6,7,8])) return '超级管理员证件类型为空或不合法'; + if(!isset($item['contact_id_doc_copy']) || empty($item['contact_id_doc_copy'])) return '超级管理员信息证件正面照片为空'; + if($item['contact_id_doc_type'] !== 2) //护照不需要传反面 + { + if(!isset($item['contact_id_doc_copy_back']) || empty($item['contact_id_doc_copy_back'])) return '超级管理员信息证件反面照片为空'; + } + if(!isset($item['contact_id_doc_period_begin']) || empty($item['contact_id_doc_period_begin'])) return '超级管理员信息证件有效期开始时间为空'; + if(!isset($item['contact_id_doc_period_end']) || empty($item['contact_id_doc_period_end'])) return '超级管理员信息证件结束日期为空'; + + if($item['contact_id_doc_period_end'] !== '长期') { + $statr = time(); + $end = strtotime($item['contact_id_doc_period_end']); + $t = $end - $statr; + if(($t/(3600 * 24)) <= 60) return '超级管理员信息证件结束日期必须大于60天,即结束时间距当前时间需超过60天'; + if(strtotime($item['contact_id_doc_period_begin']) >= strtotime($item['contact_id_doc_period_end'])) return '超级管理员信息证件结束日期必须大于证件开始时间'; + } + if(!isset($item['business_authorization_letter']) || empty($item['business_authorization_letter'])) return '超级管理员信息业务办理授权函为空'; + } + + return true; + } + + /** + * TODO 店铺信息 + * @param $item + * @param $rule + * @param $data + * @return bool|string + * @author Qinii + * @day 6/22/21 + */ + protected function checkSalesSceneInfo($item,$rule,$data) + { + if(empty($item)) return '店铺信息为空'; + + if(!isset($item['store_name']) || empty($item['store_name'])) return '店铺名称为空'; + + if(!isset($item['store_url']) && !isset($item['store_url'])) return '店铺链接和店铺二维码二选一'; + + return true; + } + + /** + * TODO 补充说明s + * @param $item + * @param $rule + * @param $data + * @return bool|string + * @author Qinii + * @day 6/24/21 + */ + protected function checkBusinessAdditionDesc($item,$rule,$data) + { + if($data['organization_type'] == 2500 && empty($item)) return '若主体为“个人卖家”:补充说明不能为空'; + return true; + } + +} diff --git a/route/app.php b/route/app.php index d8e09e3..c7b4229 100644 --- a/route/app.php +++ b/route/app.php @@ -14,4 +14,4 @@ Route::get('think', function () { return 'hello,ThinkPHP6!'; }); -Route::get('hello/:name', 'index/hello'); +Route::get('hello/:name', 'index/hello'); \ No newline at end of file