|
|
@@ -159,13 +159,25 @@ class UserController extends BaseController
|
|
|
util::ok('注册成功');
|
|
|
}
|
|
|
|
|
|
+ public function html_out($str)
|
|
|
+ {
|
|
|
+ if (function_exists('htmlspecialchars_decode')) {
|
|
|
+ $str = htmlspecialchars_decode($str);
|
|
|
+ } else {
|
|
|
+ $str = html_entity_decode($str);
|
|
|
+ }
|
|
|
+ $str = stripslashes($str);
|
|
|
+ return $str;
|
|
|
+ }
|
|
|
+
|
|
|
//用户基本信息和资产 shish 2019.12.19
|
|
|
public function actionMyProfile()
|
|
|
{
|
|
|
|
|
|
$user = UserService::getUserInfo($this->userId);
|
|
|
|
|
|
- $content = '<a data-miniprogram-appid="wxe4675bab299a52f7" data-miniprogram-path="pages/page/login/index?roleId=2" href="http://www.qq.com">中装建材大师</a>';
|
|
|
+ $content = '<p><a data-miniprogram-appid="wx3a163add860e0a86" data-miniprogram-path="pages/case/casedetail?mainId=184&owner_user_id=19" href=""><img src="https://www.meijiabang.com/0.gif" alt="" data-width="null" data-ratio="NaN"></a></p>';
|
|
|
+ $content = $this->html_out($content);
|
|
|
wxUtil::sendMsg($content, $this->merchant, $user['openId']);
|
|
|
|
|
|
|