@@ -38,7 +38,7 @@ class Core
{
# 获取当前的用户信息
$this->token = Dever::input('token');
- $this->uid = 2;
+ $this->uid = 1;
$this->checkCode();
$this->user = $this->getUser($this->uid, $this->id);
$this->user['id'] = $this->uid;
@@ -4,8 +4,8 @@ $status = Dever::config('base')->status;
$type = array
(
- 1 => '座位',
- 2 => '弹幕',
+ 1 => '座位模式',
+ //2 => '弹幕',
);
return array
@@ -89,9 +89,9 @@ return array
'type' => array
'type' => 'tinyint-1',
- 'name' => '交流方式',
+ 'name' => '交流模式',
'default' => '1',
- 'desc' => '交流方式',
+ 'desc' => '交流模式',
'match' => 'is_numeric',
'update' => 'radio',
'option' => $type,