Browse Source

全部单位

wufeng 2 years ago
parent
commit
f3872d1421
3 changed files with 27 additions and 0 deletions
  1. 7 0
      app/admin/controller/Common.php
  2. 19 0
      app/admin/logic/CommonLogic.php
  3. 1 0
      app/admin/route/app.php

+ 7 - 0
app/admin/controller/Common.php

@@ -38,5 +38,12 @@ class Common extends BaseController
         return CommonLogic::upload($files);
     }
 
+    //获取全部商品单位
+    public function unitAll(){
+        
+        $keyword = $this->request->post('keyword', '');
+
+        return CommonLogic::unitAll($keyword);
+    }
 
 }

+ 19 - 0
app/admin/logic/CommonLogic.php

@@ -5,6 +5,7 @@ namespace app\admin\logic;
 use app\model\AdminModel;
 use app\model\AdminTokenModel;
 use app\model\CommonModel;
+use think\facade\Db;
 use think\response\Json;
 
 class CommonLogic extends BaseLogic
@@ -51,4 +52,22 @@ class CommonLogic extends BaseLogic
         return (is_array($list) && !empty($list)) ? json_show(CommonModel::$success, '上传成功', $list) : json_show(CommonModel::$error_default, '上传失败');
     }
 
+    //获取全部商品单位
+    public static function unitAll(string $keyword = ''): Json
+    {
+
+        $where = [['is_del', '=', CommonModel::$del_normal]];
+
+        if ($keyword != '') $where[] = ['unit', 'like', $keyword . '%'];
+
+        $list = Db::name('unit')
+            ->field('id unit_id,unit unit_title')
+            ->where($where)
+            ->order('id', 'desc')
+            ->select()
+            ->toArray();
+
+        return json_show(CommonModel::$success, '获取全部商品单位成功', $list);
+    }
+
 }

+ 1 - 0
app/admin/route/app.php

@@ -5,6 +5,7 @@ use think\facade\Route;
 Route::rule('login', 'admin/Common/login');//登录
 Route::rule('logout', 'admin/Common/logout');//登出
 Route::rule('upload', 'admin/Common/upload');//上传图片
+Route::rule('unitAll', 'admin/Common/unitAll');//获取全部商品单位
 
 //【版本】
 Route::rule('version', 'admin/Version/lastVersion');//最新版本