作者 王智

baoxiu

@@ -9,6 +9,7 @@ use fast\Random; @@ -9,6 +9,7 @@ use fast\Random;
9 use think\Config; 9 use think\Config;
10 use app\common\model\Attachment; 10 use app\common\model\Attachment;
11 use addons\qiniu\library\Auth; 11 use addons\qiniu\library\Auth;
  12 +use think\Db;
12 13
13 /** 14 /**
14 * 公共接口 15 * 公共接口
@@ -22,8 +23,8 @@ class Common extends Api @@ -22,8 +23,8 @@ class Common extends Api
22 * 加载初始化 23 * 加载初始化
23 * 24 *
24 * @param string $version 版本号 25 * @param string $version 版本号
25 - * @param string $lng 经度  
26 - * @param string $lat 纬度 26 + * @param string $lng 经度
  27 + * @param string $lat 纬度
27 */ 28 */
28 public function init() 29 public function init()
29 { 30 {
@@ -31,10 +32,10 @@ class Common extends Api @@ -31,10 +32,10 @@ class Common extends Api
31 $lng = $this->request->request('lng'); 32 $lng = $this->request->request('lng');
32 $lat = $this->request->request('lat'); 33 $lat = $this->request->request('lat');
33 $content = [ 34 $content = [
34 - 'citydata' => Area::getCityFromLngLat($lng, $lat), 35 + 'citydata' => Area::getCityFromLngLat($lng, $lat),
35 'versiondata' => Version::check($version), 36 'versiondata' => Version::check($version),
36 - 'uploaddata' => Config::get('upload'),  
37 - 'coverdata' => Config::get("cover"), 37 + 'uploaddata' => Config::get('upload'),
  38 + 'coverdata' => Config::get("cover"),
38 ]; 39 ];
39 $this->success('', $content); 40 $this->success('', $content);
40 } else { 41 } else {
@@ -162,4 +163,15 @@ class Common extends Api @@ -162,4 +163,15 @@ class Common extends Api
162 } 163 }
163 return; 164 return;
164 } 165 }
  166 +
  167 + public function BindWeChar()
  168 + {
  169 + $user_id = $this->is_token($this->request->header());
  170 + $res = Db::name('user')->where('id', $user_id)->update(['openid' => '']);
  171 + if ($res) {
  172 + $this->success('成功', 1);
  173 + } else {
  174 + $this->error('失败', 0);
  175 + }
  176 + }
165 } 177 }