...
|
...
|
@@ -54,7 +54,7 @@ class Create extends Api |
|
|
$user = Db::name('user')->where('id',$user_id)->field('id,identity,audit,expirationtime')->find();
|
|
|
//判断用户身份是否审核通过
|
|
|
if($user['audit'] != 1){
|
|
|
$this->error('身份身份通过才可发布!');
|
|
|
$this->error('身份通过才可发布!');
|
|
|
}
|
|
|
//判断用户身份是否有发布的权限
|
|
|
if($user['identity'] == 1){
|
...
|
...
|
@@ -125,7 +125,7 @@ class Create extends Api |
|
|
$user = Db::name('user')->where('id',$user_id)->field('id,identity,audit,username,expirationtime')->find();
|
|
|
//判断用户身份是否审核通过
|
|
|
if($user['audit'] != 1){
|
|
|
$this->error('身份身份通过才可发布!');
|
|
|
$this->error('身份通过才可发布!');
|
|
|
}
|
|
|
//判断用户身份是否有发布的权限
|
|
|
if($user['identity'] == 1){
|
...
|
...
|
@@ -223,7 +223,7 @@ class Create extends Api |
|
|
$user = Db::name('user')->where('id',$user_id)->field('id,identity,audit,username,expirationtime')->find();
|
|
|
//判断用户身份是否审核通过
|
|
|
if($user['audit'] != 1){
|
|
|
$this->error('身份身份通过才可发布!');
|
|
|
$this->error('身份通过才可发布!');
|
|
|
}
|
|
|
//判断用户身份是否有发布的权限
|
|
|
if($user['identity'] == 1){
|
...
|
...
|
@@ -315,7 +315,7 @@ class Create extends Api |
|
|
$user = Db::name('user')->where('id',$user_id)->field('id,identity,audit,username,expirationtime')->find();
|
|
|
//判断用户身份是否审核通过
|
|
|
if($user['audit'] != 1){
|
|
|
$this->error('身份身份通过才可发布!');
|
|
|
$this->error('身份通过才可发布!');
|
|
|
}
|
|
|
//判断用户身份是否有发布的权限
|
|
|
if($user['identity'] == 1){
|
...
|
...
|
@@ -582,7 +582,7 @@ class Create extends Api |
|
|
$user = Db::name('user')->where('id',$user_id)->field('id,identity,audit')->find();
|
|
|
//判断用户身份是否审核通过
|
|
|
if($user['audit'] != 1){
|
|
|
$this->error('身份身份通过才可发布!');
|
|
|
$this->error('身份通过才可发布!');
|
|
|
}
|
|
|
//判断用户身份是否有发布的权限
|
|
|
if($user['identity'] == 1){
|
...
|
...
|
|