123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
- namespace app\controller\admin\user;
- use app\Request;
- use think\exception\ValidateException;
- use app\common\AdminBaseController;
- use app\services\user\UserBankServices;
- use app\validate\admin\user\UserBankValidate;
- class UserBank extends AdminBaseController
- {
-
- public function __construct(Request $request, UserBankServices $services, UserBankValidate $validate)
- {
- parent::__construct($request);
- $this->service = $services;
- $this->validate = $validate;
- $this->searchable = [
- ['uid', ''],
- ['type', ''],
- ['bank_name', ''],
- ['real_name', ''],
- ['time', '']
- ];
- $this->searchDeal = function (&$data){
- };
- $this->createParams = [
- ['uid', 0],
- ['type', ''],
- ['bank', ''],
- ['bank_name', ''],
- ['bank_code', ''],
- ['real_name', ''],
- ['phone', ''],
- ['account', ''],
- ['qrcode', ''],
- ['default', 0]
- ];
- $this->saveDeal = $this->updateDeal = function (&$data, $id){
- };
- }
-
- }
|