diff --git a/Application/Admin/Controller/ToolController.class.php b/Application/Admin/Controller/ToolController.class.php index 7fda82955..5dd86583f 100644 --- a/Application/Admin/Controller/ToolController.class.php +++ b/Application/Admin/Controller/ToolController.class.php @@ -144,6 +144,21 @@ class ToolController extends ThinkController { $this->assign($tool[$key]['name']."_data",$tool[$key]); } } + /** + * 打款设置 + */ + public function transfer_set() + { + $this->BaseConfig("transfer_set"); + $this->meta_title = '打款设置'; + $this->display(); + } + + public function saveTransferSet() + { + + } + /** *短信设置 */ diff --git a/Application/Admin/View/Tool/transfer_set.html b/Application/Admin/View/Tool/transfer_set.html new file mode 100644 index 000000000..7b55ba45f --- /dev/null +++ b/Application/Admin/View/Tool/transfer_set.html @@ -0,0 +1,87 @@ + + + + + + +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
会员id + + +
打款账号 + + +
打款验证手机号 + + +
打款验证手机号 +
4564564646
+
支付类型 + + + + 暂只支持支付宝 +
+ +
+
+ +
+
+
+
+ + + +
+ + + + diff --git a/Data/update.sql b/Data/update.sql index 830ee62f2..4d62298db 100644 --- a/Data/update.sql +++ b/Data/update.sql @@ -1748,4 +1748,7 @@ ALTER TABLE `sj_game_user`.`sj_user` ADD COLUMN `platform_account` varchar(60) NULL COMMENT '游戏渠道玩家账号' AFTER `age_type`; ALTER TABLE `tab_deposit` ADD COLUMN `old_change_promote_id` int(11) NULL DEFAULT 0 COMMENT '修改配置前渠道' , -ADD COLUMN `old_change_promote_account` varchar(30) NULL COMMENT '修改配置前渠道账号' ; \ No newline at end of file +ADD COLUMN `old_change_promote_account` varchar(30) NULL COMMENT '修改配置前渠道账号' ; + +--新增支付宝打款配置项 +INSERT INTO `tab_tool` (`name`,`title`, `config`,`type`, `status`, `create_time`) VALUES ('transfer_set', '支付宝打款设置','{"user_id":"","user_num":"","phone":"","type":"1","typestr":"支付宝"}', '1', '1','1589270284'); \ No newline at end of file