Login.php 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\validate\UserVali;
  4. use app\common\model\User;
  5. use app\common\model\UserWallet;
  6. use library\service\CaptchaService;
  7. use library\tools\Data;
  8. use think\Db;
  9. use EasyWeChat\Factory;
  10. use app\common\model\InviteInfo;
  11. use function AlibabaCloud\Client\value;
  12. /**
  13. * @title 用户登录
  14. * @controller Login
  15. */
  16. class Login extends Base
  17. {
  18. /**
  19. * @title 用户统一登录
  20. * @desc 用户登录
  21. * @author qc
  22. * @url /api/Login/unifiedLogin
  23. * @method POST
  24. * @tag 登录 授权
  25. * @param name:login_type type:int require:1 default:1 desc:登录方式(1.微信小程序,2.微信授权app,3.pc微信扫码,4.手机号验证码,5.手机号密码登录,6.qq授权app,7.pc端QQ登录)
  26. * @param name:code type:int require:1 default:-- desc:code值(1)
  27. * @param name:phone type:string require:0 default:0 desc:手机号(4,5)
  28. * @param name:password type:string require:0 default:0 desc:登录密码(5)
  29. * @param name:phone_code type:string require:0 default:0 desc:手机验证码(4)
  30. * @param name:access_token type:string require:0 default:0 desc:access_token(2,6,7)
  31. * @param name:openid type:string require:0 default:0 desc:openid(2)
  32. * @return name:token type:string default:-- desc:用户登录成功后的token值(没返回token跳转绑定手机号!!!!!!!)
  33. * @return name:phone type:string default:-- desc:用户绑定的手机号
  34. */
  35. public function unifiedLogin()
  36. {
  37. $code = input('post.code');
  38. $headimg = input('post.headimg');
  39. $name = input('post.name');
  40. $access_token = input('post.access_token');
  41. $openid = input('post.openid');
  42. $login_type = input('post.login_type', 1);
  43. $ret_data = ['code' => 200, 'token' => ''];
  44. $msg = '登录成功';
  45. try {
  46. switch ($login_type){
  47. case 1://微信小程序登录
  48. if (empty($code) || empty($headimg) || empty($name)) $this->exception('参数错误');
  49. $app = Factory::miniProgram(config('app.mini_program'));
  50. $data = $app->auth->session($code);
  51. if(empty($data['openid']) || empty($data['unionid'])) $this->exception($data['errmsg']);
  52. $member = User::field('id,openid,phone')->where('wechat_unionid', $data['unionid'])->find();
  53. if(!$member) $this->exception('请绑定手机号');
  54. if(!$member->openid) User::where('id',$member->id)->update(['openid'=>$data['openid']]);// 没有小程序openid则绑定openid
  55. $token = $this->createJwt($member->id);
  56. $ret_data['token'] = $token;
  57. break;
  58. case 2://微信授权app登录
  59. if(empty($access_token) || empty($openid)) $this->exception('缺少access_token或openid');
  60. $user_info = http_curl('https://api.weixin.qq.com/sns/userinfo?access_token='.$access_token.'&openid='.$openid);
  61. if(!$user_info || empty( $user_info['unionid'])) $this->exception('获取用户微信信息有误');
  62. $member = User::field('id,app_openid,phone')->where('wechat_unionid', $user_info['unionid'])->find();
  63. if(!$member) $this->exception('请绑定手机号');
  64. if(!$member->app_openid)User::where('id',$member->id)->update(['app_openid'=>$user_info['openid']]);// 没有openid则绑定openid
  65. $token = $this->createJwt($member->id);
  66. $ret_data['token'] = $token;
  67. break;
  68. case 3://pc微信扫码
  69. $res = http_curl('https://api.weixin.qq.com/sns/oauth2/access_token?appid='.config('pc_wx')['app_id'].'&secret='.config('pc_wx')['secret'].'&code='.$code.'&grant_type=authorization_code');
  70. if(!$res || !isset($res['access_token'])) $this->exception('获取access_token有误');
  71. $user_info = http_curl('https://api.weixin.qq.com/sns/userinfo?access_token='.$res['access_token'].'&openid='.$res['openid']);
  72. if(!$user_info) $this->exception('获取用户微信信息有误');
  73. $member = User::field('id,app_openid,phone')->where('wechat_unionid', $user_info['unionid'])->find();
  74. if(!$member) $this->exception('请绑定手机号');
  75. if(!$member->pc_openid)User::where('id',$member->id)->update(['pc_openid'=>$res['openid']]);// 没有openid则绑定openid
  76. $token = $this->createJwt($member->id);
  77. $ret_data['token'] = $token;
  78. break;
  79. case 4:// 手机号验证码登录
  80. $phone = input('post.phone');
  81. $phone_code = input('post.phone_code');
  82. $member =User::where('phone', $phone)->find();
  83. if(!$member) $this->exception('用户不存在,请先注册');
  84. $check_code = $this->checkPhoneCode($phone,$phone_code);
  85. if(!$check_code) $this->exception('验证码错误');
  86. $this->updatePhoneCode($check_code);
  87. $ret_data['token'] = $this->createJwt($member->id);
  88. break;
  89. case 5://手机密码登录
  90. $phone = input('post.phone');
  91. $password = input('post.password');
  92. if (empty($password) || empty($phone)) $this->exception('参数错误');
  93. $member = User::where('phone', $phone)->find();
  94. if(!$member) $this->exception('用户不存在');
  95. if(!check_password($password,$member->encryption_password)) $this->exception('密码错误');
  96. $ret_data['token'] = $this->createJwt($member->id);
  97. break;
  98. case 6://qq 授权app
  99. if(empty($access_token)) $this->error('参数错误');
  100. $res = curl_get('https://graph.qq.com/oauth2.0/me?access_token='.$access_token.'&unionid=1'.'&fmt=json');
  101. if(!$res || !isset($res['unionid'])) $this->exception('获取unionid有误');
  102. $member = User::where('qq_unionid',$res['unionid'])->find();
  103. if(!$member) $this->exception('用户不存在,请先注册');
  104. $token = $this->createJwt($member->id);
  105. $ret_data['token'] = $token;
  106. break;
  107. case 7://pc QQ登录
  108. if(empty($access_token)) $this->error('参数错误');
  109. $res = curl_get('https://graph.qq.com/oauth2.0/me?access_token='.$access_token.'&unionid=1'.'&fmt=json');
  110. if(!$res || !isset($res['unionid'])) $this->exception('获取unionid有误');
  111. $member = User::where('qq_unionid',$res['unionid'])->find();
  112. if(!$member) $this->exception('用户不存在,请先注册');
  113. $token = $this->createJwt($member->id);
  114. $ret_data['token'] = $token;
  115. break;
  116. }
  117. }catch (\Exception $e){
  118. $ret_data['code'] = 201;
  119. $msg =$e->getMessage();
  120. }
  121. $ret_data['code'] == 200 ? $this->success($msg,$ret_data):$this->error($msg,$ret_data);
  122. }
  123. /**
  124. * @title 账号绑定手机号
  125. * @desc 账号绑定手机号
  126. * @author qc
  127. * @url /api/Login/accountBindPhone
  128. * @method POST
  129. * @param name:bind_type type:int require:1 default:1 desc:绑定类型(1.微信小程序,2.微信授权app,3.pc微信扫码,4.qq授权app,5pc授权QQ)
  130. * @param name:phone type:int require:1 default:-- desc:手机号(1,2,3,4)
  131. * @param name:phone_code type:string require:1 default:-- desc:手机验证码(1,2,3,4)
  132. * @param name:code type:int require:0 default:-- desc:code值(1)
  133. * @param name:access_token type:string require:0 default:0 desc:access_token(2,4)
  134. * @param name:openid type:string require:0 default:0 desc:openid(2)
  135. * @param name:pid type:string require:0 default:-- desc:推荐人(能获取到就传)
  136. * @param name:name type:string require:0 default:-- desc:名称(能获取到就传)
  137. * @param name:headimg type:string require:0 default:-- desc:头像(能获取到就传)
  138. * @return name:token type:string default:-- desc:成功返回token
  139. */
  140. public function accountBindPhone()
  141. {
  142. $bind_type = input('post.bind_type',1);
  143. $phone = input('post.phone');
  144. $phone_code = input('post.phone_code');
  145. $code = input('post.code');
  146. $pid = input('post.pid', 0);
  147. $headimgurl = input('post.headimg', '');
  148. $nickname = input('post.name', '');
  149. $access_token = input('post.access_token');
  150. $openid = input('post.openid');
  151. $check_code = $this->checkPhoneCode($phone,$phone_code);
  152. if(!$check_code) $this->error('验证码错误');
  153. $this->updatePhoneCode($check_code);
  154. $member =User::where('phone', $phone)->find();
  155. $is_new = $member ? 0:1;// 是否是新用户
  156. $bind_data = [];
  157. if($is_new) $bind_data['phone'] = $phone;
  158. switch ($bind_type){
  159. case 1://微信小程序注册
  160. $app = Factory::miniProgram(config('app.mini_program'));
  161. $data = $app->auth->session($code);
  162. if(empty($data['openid'])) $this->error($data['errmsg']);
  163. $check_member = User::where('openid',$data['openid'])->find();
  164. if($check_member) $this->error('账号已存在'.$bind_type);
  165. $bind_data['openid'] = $data['openid'];
  166. if($is_new) $bind_data['name'] = $nickname ? :$phone;
  167. if($is_new) $bind_data['headimg'] = $headimgurl ? :'';
  168. if($is_new || (!$is_new && !$member->wechat_unionid)) $bind_data['wechat_unionid'] = !empty($data['unionid']) ? $data['unionid'] :'';
  169. break;
  170. case 2://微信授权app注册
  171. if($member && $member->app_openid) $this->error('该手机号已绑定微信'.$bind_type);
  172. if(empty($access_token) || empty($openid)) $this->error('参数错误');
  173. $user_info = http_curl('https://api.weixin.qq.com/sns/userinfo?access_token='.$access_token.'&openid='.$openid);
  174. if(!$user_info || empty($user_info['unionid'])) $this->error('获取用户微信信息有误');
  175. $check_member = User::where('app_openid',$user_info['openid'])->find();
  176. if($check_member) $this->error('账号已存在'.$bind_type);
  177. $bind_data['app_openid'] = $user_info['openid'];
  178. if($is_new) $bind_data['name'] = $user_info['nickname'];
  179. if($is_new) $bind_data['headimg'] = $user_info['headimgurl'];
  180. if($is_new || (!$is_new && !$member->wechat_unionid)) $bind_data['wechat_unionid'] = !empty($user_info['unionid']) ? $user_info['unionid'] :'';
  181. break;
  182. case 3://pc微信扫码
  183. if($member && $member->pc_openid) $this->error('该手机号已绑定微信'.$bind_type);
  184. if(empty($code)) $this->error('参数错误');
  185. $res = http_curl('https://api.weixin.qq.com/sns/oauth2/access_token?appid='.config('pc_wx')['app_id'].'&secret='.config('pc_wx')['secret'].'&code='.$code.'&grant_type=authorization_code');
  186. if(!$res || !isset($res['access_token'])) $this->error('获取access_token有误');
  187. $user_info = http_curl('https://api.weixin.qq.com/sns/userinfo?access_token='.$res['access_token'].'&openid='.$res['openid']);
  188. if(!$user_info) $this->error('获取用户微信信息有误');
  189. $check_member = User::where('pc_openid',$user_info['openid'])->find();
  190. if($check_member) $this->error('账号已存在'.$bind_type);
  191. $bind_data['pc_openid'] = $user_info['openid'];
  192. if($is_new) $bind_data['name'] = $user_info['nickname'];
  193. if($is_new) $bind_data['headimg'] = $user_info['headimgurl'];
  194. if($is_new || (!$is_new && !$member->wechat_unionid)) $bind_data['wechat_unionid'] = !empty($user_info['unionid']) ? $user_info['unionid'] :'';
  195. break;
  196. case 4:// qq授权app
  197. if($member && $member->qq_unionid) $this->error('该手机号已绑定QQ'.$bind_type);
  198. if(empty($access_token)) $this->error('参数错误');
  199. $res = curl_get('https://graph.qq.com/oauth2.0/me?access_token='.$access_token.'&unionid=1'.'&fmt=json');
  200. if(!$res || !isset($res['unionid'])) $this->error('获取unionid有误');
  201. $check_qq = User::where('qq_unionid', $res['unionid'])->value('id');
  202. if($check_qq) $this->error('用户已存在');
  203. $bind_data['qq_unionid'] = $res['unionid'];
  204. if($is_new) $bind_data['name'] = $nickname;
  205. if($is_new) $bind_data['headimg'] = $headimgurl;
  206. break;
  207. case 5:// pc qq
  208. if(empty($access_token)) $this->error('参数错误');
  209. $res = curl_get('https://graph.qq.com/oauth2.0/me?access_token='.$access_token.'&unionid=1'.'&fmt=json');
  210. if(!$res || !isset($res['unionid'])) $this->error('获取unionid有误');
  211. $check_qq = User::where('qq_unionid', $res['unionid'])->value('id');
  212. if($check_qq) $this->error('用户已存在');
  213. $bind_data['qq_unionid'] = $res['unionid'];
  214. if($is_new) $bind_data['name'] = $nickname;
  215. if($is_new) $bind_data['headimg'] = $headimgurl;
  216. break;
  217. }
  218. // 新用户创建钱包
  219. if($is_new){
  220. if(empty($bind_data['headimg'])) $bind_data['headimg'] = 'https://xieshouxiongmao.oss-cn-beijing.aliyuncs.com/add09dc3edac6bfd/c15ab257e41b46ba.png';
  221. if(empty($bind_data['name'])) $bind_data['name'] = $phone;
  222. $member = User::create($bind_data);
  223. User::update(['invite_code'=>create_invite_code($member->id)],['id'=>$member->id]);
  224. Data::save("UserWallet",['user_id'=>$member->id],'user_id',['user_id'=>$member->id]);//创建钱包
  225. if($pid) InviteInfo::create(['user_id'=>$member->id,'pid'=>$pid,'create_at'=>date('Y-m-d H:i:s')]);
  226. }else{
  227. User::where('id',$member->id)->update($bind_data);
  228. }
  229. $token = $this->createJwt($member->id);
  230. $this->success('绑定成功', ['token' => $token]);
  231. }
  232. /**
  233. * @title 手机验正码注册
  234. * @desc 手机验正码注册
  235. * @author qc
  236. * @url /api/Login/phoneCodeRegister
  237. * @method POST
  238. * @param name:phone type:int require:1 default:-- desc:手机号
  239. * @param name:code type:string require:1 default:-- desc:手机验证码
  240. * @param name:verify type:string require:1 default:-- desc:图形验证码
  241. * @param name:pid type:string require:0 default:-- desc:推荐人id
  242. * @param name:uniqid type:string require:1 default:-- desc:生成验证码图形时返回的uniqid
  243. * @param name:password type:string require:1 default:-- desc:密码
  244. * @param name:con_password type:string require:1 default:-- desc:确认密码
  245. * @return name:token type:string default:-- desc:用户登录成功后的token值
  246. */
  247. public function phoneCodeRegister()
  248. {
  249. $verify = input('post.verify');
  250. $uniqid = input('post.uniqid');
  251. $phone = input('post.phone');
  252. $code = input('post.code');
  253. $password = input('post.password');
  254. $con_password = input('post.con_password');
  255. $pid = input('pid', 0);
  256. if($password !== $con_password) $this->error('两次输入密码不一致');
  257. if (!CaptchaService::instance()->check($verify, $uniqid)) $this->error('图形验证码验证失败,请重新输入!');
  258. $check_code = $this->checkPhoneCode($phone,$code);
  259. if(!$check_code) $this->error('验证码错误');
  260. $this->updatePhoneCode($check_code);
  261. $member = User::field('id,phone')->where('phone', $phone)->find();
  262. if($member) $this->error('该手机号已注册');
  263. $member_data = ['phone' => $phone,'encryption_password'=>encrypt_password($password)];
  264. Db::name('store_member')->insert($member_data);
  265. $uid = Db::getLastInsID();
  266. User::update(['invite_code'=>create_invite_code($uid)],['id'=>$uid]);
  267. UserWallet::create(['user_id'=>$uid]);//创建钱包
  268. if($pid) InviteInfo::create(['user_id'=>$uid,'pid'=>$pid,'create_at'=>date('Y-m-d H:i:s')]);
  269. $token = $this->createJwt($uid);
  270. $this->success('登录成功', ['token' => $token]);
  271. }
  272. /**
  273. * @title 获取验证码
  274. * @desc 获取验证码
  275. * @author qc
  276. * @url /api/Login/getCaptcha
  277. * @method GET
  278. * @return name:image type:string default:-- desc:图片
  279. * @return name:uniqid type:string default:-- desc:uniqid
  280. */
  281. public function getCaptcha()
  282. {
  283. $image = CaptchaService::instance();
  284. $captcha = ['image' => $image->getData(), 'uniqid' => $image->getUniqid()];
  285. $this->success('生成验证码成功', $captcha);
  286. }
  287. /**
  288. * @title 重置密码
  289. * @desc 重置密码
  290. * @author qc
  291. * @url /api/Login/resetPassword
  292. * @method POST
  293. * @param name:phone type:int require:1 default:-- desc:手机号
  294. * @param name:code type:string require:1 default:-- desc:手机验证码
  295. * @param name:verify type:string require:1 default:-- desc:图形验证码
  296. * @param name:uniqid type:string require:1 default:-- desc:生成验证码图形时返回的uniqid
  297. * @param name:password type:string require:1 default:-- desc:密码
  298. * @param name:con_password type:string require:1 default:-- desc:确认密码
  299. */
  300. public function resetPassword()
  301. {
  302. $verify = input('post.verify');
  303. $uniqid = input('post.uniqid');
  304. $phone = input('post.phone');
  305. $code = input('post.code');
  306. $password = input('post.password');
  307. $con_password = input('post.con_password');
  308. $validate = new UserVali();
  309. if (!$validate->scene('reset_password')->check(['phone'=>$phone,'password'=>$password])) {
  310. $this->error($validate->getError());
  311. }
  312. if (!CaptchaService::instance()->check($verify, $uniqid)) $this->error('图形验证码验证失败,请重新输入!');
  313. $check_code = $this->checkPhoneCode($phone,$code);
  314. if(!$check_code) $this->error('验证码错误');
  315. $user_id = User::where('phone',$phone)->value('id');
  316. if(!$user_id) $this->error('账号不存在');
  317. if($password !== $con_password) $this->error('两次输入密码不一致');
  318. User::where(['phone'=>$phone])->update(['encryption_password'=>encrypt_password($password)]);
  319. $this->success('修改密码成功');
  320. }
  321. public function weChatLogin()
  322. {
  323. $code = input('post.code');
  324. $headimg = input('post.headimg');
  325. $name = input('post.name');
  326. $pid = input('post.pid', 0);
  327. if (empty($code) || empty($headimg) || empty($name)) $this->error('参数错误');
  328. $app = Factory::miniProgram(config('app.mini_program'));
  329. $data = $app->auth->session($code);
  330. if (empty($data['openid'])) {
  331. $this->error($data['errmsg']);
  332. }
  333. $member = Db::name('store_member')->field('id,phone')->where('openid', $data['openid'])->find();
  334. if (empty($member)) {
  335. $member_data = array(
  336. 'openid' => $data['openid'],
  337. 'headimg' => $headimg,
  338. 'name' => $name,
  339. 'pid' => $pid,
  340. 'create_at' => date("Y-m-d H:i:s")
  341. );
  342. Db::name('store_member')->insert($member_data);
  343. $uid = Db::getLastInsID();
  344. User::update(['invite_code'=>create_invite_code($uid)],['id'=>$uid]);
  345. UserWallet::create(['user_id'=>$uid]);//创建钱包
  346. if($pid) InviteInfo::create(['user_id'=>$uid,'pid'=>$pid,'create_at'=>date('Y-m-d H:i:s')]);
  347. } else {
  348. $uid = $member['id'];
  349. }
  350. if (empty($uid)) $this->error('数据有误');
  351. $token = $this->createJwt($uid);
  352. $this->success('登录成功', ['token' => $token,'phone'=>empty($member) ?'' :$member['phone']]);
  353. }
  354. public function weChatAppLogin()
  355. {
  356. $code = input('post.code');
  357. if(empty($code)) $this->error('参数错误');
  358. $res = http_curl('https://api.weixin.qq.com/sns/oauth2/access_token?appid='.config('app_wx')['app_id'].'&secret='.config('app_wx')['secret'].'&code='.$code.'&grant_type=authorization_code');
  359. if(!$res) $this->error('获取access_token有误');
  360. $user_info = http_curl('https://api.weixin.qq.com/sns/userinfo?access_token='.$res['access_token'].'&openid='.$res['openid']);
  361. if(!$user_info) $this->error('获取用户微信信息有误');
  362. $data['app_openid'] = $user_info['openid'];
  363. $data['name'] = $user_info['nickname'];
  364. $data['headimg'] = $user_info['headimgurl'];
  365. $data['token'] = '';
  366. $member = User::where('app_openid',$data['app_openid'])->find();
  367. if(!$member) $this->success('授权成功',$data);
  368. $token = $this->createJwt($member->id);
  369. $data['token'] = $token;
  370. $this->success('登录成功',$data);
  371. }
  372. public function weChatPcLogin()
  373. {
  374. $code = input('post.code');
  375. $res = http_get('https://api.weixin.qq.com/sns/oauth2/access_token?appid='.config('pc_wx')['app_id'].'&secret='.config('pc_wx')['secret'].'&code='.$code.'&grant_type=authorization_code');
  376. if(!$res) $this->error('获取access_token有误');
  377. $user_info = http_get('https://api.weixin.qq.com/sns/userinfo?access_token='.$res['access_token'].'&openid='.$res['openid']);
  378. $data['pc_openid'] = $user_info['openid'];
  379. $data['name'] = $user_info['nickname'];
  380. $data['headimg'] = $user_info['headimgurl'];
  381. $member = User::where('pc_openid',$data['pc_openid'])->find();
  382. if(!$member) $this->success('授权成功',$data);
  383. $token = $this->createJwt($member->id);
  384. $data['token'] = $token;
  385. $this->success('登录成功',$data);
  386. }
  387. public function phoneCodeLogin()
  388. {
  389. $phone = input('post.phone');
  390. $code = input('post.code');
  391. $member = Db::name('store_member')->field('id,phone')->where('phone', $phone)->find();
  392. if(empty($phone)) $this->error('用户不存在,请先注册');
  393. $check_code = $this->checkPhoneCode($phone,$code);
  394. if(!$check_code) $this->error('验证码错误');
  395. $this->updatePhoneCode($check_code);
  396. $uid = $member['id'];
  397. $token = $this->createJwt($uid);
  398. $this->success('登录成功', ['token' => $token,'phone'=>empty($member) ?'' :$member['phone']]);
  399. }
  400. public function passwordLogin()
  401. {
  402. $phone = input('post.phone');
  403. $password = input('post.password');
  404. if (empty($password) || empty($phone)) $this->error('参数错误');
  405. $member = Db::name('store_member')->where('phone', $phone)->find();
  406. if(!$member) $this->error('用户不存在');
  407. if(!check_password($password,$member['encryption_password'])) $this->error('密码错误');
  408. $token = self::createJwt($member['id']);
  409. $this->success('登录成功', ['token' => $token]);
  410. }
  411. /**
  412. * @title 获取版本号
  413. * @desc 获取版本号
  414. * @author QGF
  415. * @url /api/Login/get_store_versions
  416. * @method GET
  417. * @tag 获取版本号
  418. * @param name:type type:int require:1 default:1 desc:类型(1:安卓,2:IOS。默认安卓)
  419. * @return name:title type:string default:-- desc:版本号
  420. * @return name:content type:string default:-- desc:修改内容
  421. * @return name:url type:string default:-- desc:下載地址(安卓有值)
  422. */
  423. public function get_store_versions(){
  424. $type = input('type',1);
  425. $store_versions = Db::name('store_versions')->field('title,content,url')->where('type',$type)->find();
  426. $this->success('获取成功',$store_versions);
  427. }
  428. }