|
@@ -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);
|
|
|
+ }
|
|
|
+
|
|
|
}
|