| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * H5支付控制器
- *
- */
- namespace app\api\controller\v1;
- use app\api\controller\Api;
- use app\common\model\Setting;
- use think\Config;
- class IsHwu extends Api {
-
- public function _initialize()
- {
- parent::_initialize();
- }
- /**
- * 是否有开启h5支付
- */
- public function index()
- {
- $settingModel = new Setting;
-
- //有开启h5支付时,返回微信支付的referer
- if($settingModel::getSetting('IS_H5_PAY')==1){
-
- $this->jsonResult(['isEnable' => (int)$settingModel::getSetting('IS_H5_PAY'),'enable'=>Config::get('wxpay-h5')['referer']], 1);
- }
- else{
-
- $this->jsonResult(['isEnable' => (int)$settingModel::getSetting('IS_H5_PAY')], 1);
- }
- }
- }
|