Ver código fonte

会员升级

Kirin 1 ano atrás
pai
commit
b034cfd42c
1 arquivos alterados com 1 adições e 0 exclusões
  1. 1 0
      app/services/user/UserServices.php

+ 1 - 0
app/services/user/UserServices.php

@@ -608,6 +608,7 @@ class UserServices extends BaseServices
         }
         $f[] = Form::radio('status', '用户状态', $user->getData('status'))->options([['value' => 1, 'label' => '开启'], ['value' => 0, 'label' => '锁定']]);
         $f[] = Form::radio('award_switch', '级差奖无需复投', $user->getData('award_switch'))->options([['value' => 1, 'label' => '开启'], ['value' => 0, 'label' => '关闭']]);
+        $f[] = Form::radio('is_shop', '商家', $user->getData('is_shop'))->options([['value' => 1, 'label' => '开启'], ['value' => 0, 'label' => '锁定']]);
         return create_form('编辑', $f, Url::buildUrl('/user/user/' . $id), 'PUT');
     }