diff --git a/Application/Admin/Controller/PromoteController.class.php b/Application/Admin/Controller/PromoteController.class.php index 948821396..56b360a3e 100644 --- a/Application/Admin/Controller/PromoteController.class.php +++ b/Application/Admin/Controller/PromoteController.class.php @@ -196,7 +196,7 @@ unset($_REQUEST['parent_id']); $idcardpic = $data["idcarpic"]; $businesspic = $data['businesspic']; $agreementpic = $data["agreementpic"]; - + $anothpic = $data["anothpic"]; if(!empty($idcardpic)) { $idcardpicArr = explode(',', $idcardpic); foreach ($idcardpicArr as $key => $value) { @@ -215,9 +215,16 @@ unset($_REQUEST['parent_id']); $agreementpicImg[$key] = get_cover($value2, 'path'); } } + if(!empty($anothpic)) { + $anothpicArr = explode(',', $anothpic); + foreach ($anothpicArr as $key => $value3) { + $anothpicImg[$key] = get_cover($value3, 'path'); + } + } $this->assign("agreementpicimg",$agreementpicImg); $this->assign('businesspicImg',$businesspicImg); $this->assign('idcardimg',$idcardImg); + $this->assign('anothpicimg',$anothpicImg); $this->assign('data',$data); $this->meta_title ='编辑渠道信息'; diff --git a/Application/Admin/View/Promote/edit.html b/Application/Admin/View/Promote/edit.html index 365ca2e56..3c39f46fc 100644 --- a/Application/Admin/View/Promote/edit.html +++ b/Application/Admin/View/Promote/edit.html @@ -130,6 +130,18 @@ + + 补充认证: + +
+ + $info3):?> + + + +
+ + 邮箱: diff --git a/Application/Admin/View/Promote/lists.html b/Application/Admin/View/Promote/lists.html index 37fd1c090..9735876f8 100644 --- a/Application/Admin/View/Promote/lists.html +++ b/Application/Admin/View/Promote/lists.html @@ -199,11 +199,21 @@ - 成功 - 失败 - 审核中 - 未认证 - + + 成功 + + + 拒绝 + + + 正在审核 + + + 修改审核中 + + + 未认证 + 查看 diff --git a/Application/Home/Controller/SafeController.class.php b/Application/Home/Controller/SafeController.class.php index 1d11552d8..17fde806c 100644 --- a/Application/Home/Controller/SafeController.class.php +++ b/Application/Home/Controller/SafeController.class.php @@ -361,7 +361,7 @@ class SafeController extends BaseController{ $data['email'] = $email; $data['account_type'] = $account_type; $data['bank_card'] = $bank; - $data['ver_status'] = 3; + $data['ver_status'] = 4; // $data['agreementpic'] = $ $data['anothpic'] = $agreementpic; $id = get_pid(); diff --git a/Application/Home/View/default/Safe/modifyBaseInfo.html b/Application/Home/View/default/Safe/modifyBaseInfo.html index d47fbff1f..571937a01 100644 --- a/Application/Home/View/default/Safe/modifyBaseInfo.html +++ b/Application/Home/View/default/Safe/modifyBaseInfo.html @@ -63,7 +63,13 @@
认证审核失败
- + + +
+ 修改审核中,请耐心等待~加急,请联系您的平台对接人员 +
+ +
diff --git a/ThinkPHP/ThinkPHP.php b/ThinkPHP/ThinkPHP.php index 0b967ce99..a75f572e0 100644 --- a/ThinkPHP/ThinkPHP.php +++ b/ThinkPHP/ThinkPHP.php @@ -13,7 +13,7 @@ // ThinkPHP公共入口文件 //---------------------------------- -require 'vendor/autoload.php'; +//require 'vendor/autoload.php'; // 记录开始运行时间 $GLOBALS['_beginTime'] = microtime(TRUE);