| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace addons\Sicpay\common\sdk\config;
- /**
- * 2.2.6 微信 wap
- * @package addons\Sicpay\common\sdk\config
- */
- class WechatWapStruct extends BaseWechatStruct
- {
- public $bank_code = "WAPWECHAT"; // app 调起sdk需要传入的值
- public $type = "Wap";
- public $scene_info;// 微信WAP必传参数
- public function __construct ($config = [])
- {
- parent::__construct($config, $this->type);
- }
- public function returnData ()
- {
- $data = parent::returnData(); // TODO: Change the autogenerated stub
- $return_url = \Yii::$app->services->setting->platform->get('system.h5_url')."/#/plugins/pages/order/list";
- $data['url'] = empty($this->response['mweb_url']) ? "" : $this->response['mweb_url'].'&redirect_url='.urlencode($return_url);
- return $data;
- }
- }
|