songxingwei 3 سال پیش
والد
کامیت
9ee13a7461
2فایلهای تغییر یافته به همراه45 افزوده شده و 0 حذف شده
  1. 21 0
      application/common/model/User.php
  2. 24 0
      application/common/model/UserData.php

+ 21 - 0
application/common/model/User.php

@@ -161,6 +161,27 @@ class User Extends Model
     }
 
 
+    /**
+     * 提交用户资料审核
+     */
+    public static function InfoSubmitAudit($user_id,$data){
+        $userData = UserData::where('user_id',$user_id)->order('id desc')->limit(1)->find();
+        if ($userData && $userData['audit']!=2){
+            if (UserData::where('id',$userData['id'])->update($data)){
+                return Common::return_success('提交成功');
+            }else{
+                return Common::return_error('提交失败');
+            }
+        }else{
+            $data['user_id'] = $user_id;
+            if (UserData::create($data)){
+                return Common::return_success('提交成功');
+            }else{
+                return Common::return_error('提交失败');
+            }
+        }
+    }
+
 
     /**
      * 编辑用户资料

+ 24 - 0
application/common/model/UserData.php

@@ -0,0 +1,24 @@
+<?php
+
+namespace app\common\model;
+
+use phpDocumentor\Reflection\Type;
+use think\Model;
+use app\common\library\Common;
+use think\facade\Validate;
+use think\Request;
+use think\Db;
+
+/**
+ * 会员资料审核
+ */
+class UserData Extends Model
+{
+    // 开启自动写入时间戳字段
+    protected $autoWriteTimestamp = 'TIMESTAMP';
+    // 定义时间戳字段名
+    protected $createTime = 'create_at';
+    protected $updateTime = false;
+
+    protected $table = 'q_user_data';
+}