xxxrrrdddd hace 2 años
padre
commit
5a1ba4cd6f

+ 12 - 0
application/admin/controller/auth/Admin.php

@@ -122,6 +122,12 @@ class Admin extends Backend
         if ($this->request->isPost()) {
             $this->token();
             $params = $this->request->post("row/a");
+            if(!empty($params['mobile'])){
+                $exists=$this->model->where('mobile',$params['mobile'])->value('id');
+                if($exists){
+                    $this->error('手机号已存在');
+                }
+            }
             if ($params) {
                 Db::startTrans();
                 try {
@@ -175,6 +181,12 @@ class Admin extends Backend
         if ($this->request->isPost()) {
             $this->token();
             $params = $this->request->post("row/a");
+            if(!empty($params['mobile'])){
+                $exists=$this->model->where('mobile',$params['mobile'])->where('id','<>',$ids)->value('id');
+                if($exists){
+                    $this->error('手机号已存在');
+                }
+            }
             if ($params) {
                 Db::startTrans();
                 try {

+ 3 - 3
application/admin/validate/Admin.php

@@ -14,7 +14,7 @@ class Admin extends Validate
         'username' => 'require|regex:\w{3,12}|unique:admin',
         'nickname' => 'require',
         'password' => 'require|regex:\S{32}',
-        'email'    => 'require|email|unique:admin,email',
+        //'email'    => 'require|email|unique:admin,email',
     ];
 
     /**
@@ -33,8 +33,8 @@ class Admin extends Validate
      * 验证场景
      */
     protected $scene = [
-        'add'  => ['username', 'email', 'nickname', 'password'],
-        'edit' => ['username', 'email', 'nickname', 'password'],
+        'add'  => ['username', 'nickname', 'password'],
+        'edit' => ['username', 'nickname', 'password'],
     ];
 
     public function __construct(array $rules = [], $message = [], $field = [])

+ 2 - 2
application/admin/view/auth/admin/add.html

@@ -13,9 +13,9 @@
         </div>
     </div>
     <div class="form-group">
-        <label for="email" class="control-label col-xs-12 col-sm-2">{:__('Email')}:</label>
+        <label for="mobile" class="control-label col-xs-12 col-sm-2">{:__('手机号')}:</label>
         <div class="col-xs-12 col-sm-8">
-            <input type="email" class="form-control" id="email" name="row[email]" value="" data-rule="required;email" />
+            <input type="tel" class="form-control" id="mobile" name="row[mobile]" value="" data-rule="required;mobile" />
         </div>
     </div>
     <div class="form-group">

+ 2 - 2
application/admin/view/auth/admin/edit.html

@@ -13,9 +13,9 @@
         </div>
     </div>
     <div class="form-group">
-        <label for="email" class="control-label col-xs-12 col-sm-2">{:__('Email')}:</label>
+        <label for="mobile" class="control-label col-xs-12 col-sm-2">{:__('手机号')}:</label>
         <div class="col-xs-12 col-sm-8">
-            <input type="email" class="form-control" id="email" name="row[email]" value="{$row.email|htmlentities}" data-rule="required;email" />
+            <input type="tel" class="form-control" id="mobile" name="row[mobile]" value="{$row.mobile|htmlentities}" data-rule="required;mobile" />
         </div>
     </div>
     <div class="form-group">

+ 1 - 0
application/extra/site.php

@@ -99,4 +99,5 @@ TUerZQ+xwiKFEk5f6TVGjCYhEb5Yj3JGklb3VzcEjtf/BNNVY7qQUORVcbWnpel6
 29PPnBR4Nw==
 -----END CERTIFICATE-----',
   'settle_type' => '1',
+  'basic_ordered_notify_admin' => '8,5,7,4,6',
 );

+ 1 - 1
public/assets/js/backend/auth/admin.js

@@ -34,7 +34,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                         {field: 'username', title: __('Username')},
                         {field: 'nickname', title: __('Nickname')},
                         {field: 'groups_text', title: __('Group'), operate:false, formatter: Table.api.formatter.label},
-                        {field: 'email', title: __('Email')},
+                        {field: 'mobile', title: __('手机号')},
                         {field: 'status', title: __("Status"), searchList: {"normal":__('Normal'),"hidden":__('Hidden')}, formatter: Table.api.formatter.status},
                         {field: 'logintime', title: __('Login time'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true},
                         {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: function (value, row, index) {