CommonLogic.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. namespace app\mobile\logic;
  3. use app\model\AccountModel;
  4. use app\model\CommonModel;
  5. use app\model\GroupModel;
  6. use app\model\ThemeModel;
  7. use app\model\VideoModel;
  8. use think\facade\Db;
  9. use think\response\Json;
  10. //公共
  11. class CommonLogic extends BaseLogic
  12. {
  13. //视频列表
  14. public static function getVideoList(array $data = []): Json
  15. {
  16. $rs = AccountModel::field('id,video_ids')
  17. ->where(['id' => self::$aid, 'is_del' => CommonModel::$del_normal])
  18. ->findOrEmpty()
  19. ->toArray();
  20. if (empty($rs)) return json_show(CommonModel::$error_param, '该账户不存在');
  21. $db = VideoModel::where(['is_del' => CommonModel::$del_normal, 'status' => CommonModel::$status_normal])
  22. ->whereIn('id', $rs['video_ids']);
  23. $count = $db->count('id');
  24. $list = $db
  25. ->field('id,video_sn,video_name,video_url,video_img')
  26. ->page($data['page'], $data['size'])
  27. ->order(['weight' => 'desc', 'id' => 'desc'])
  28. ->select()
  29. ->toArray();
  30. return json_show(CommonModel::$success, '获取视频列表成功', ['count' => $count, 'list' => $list]);
  31. }
  32. //手机主题
  33. public static function theme(): Json
  34. {
  35. $rs = ThemeModel::field('id,code')
  36. ->where(['is_del' => CommonModel::$del_normal, 'group_id' => self::$group_id, 'status' => CommonModel::$status_normal])
  37. ->append(['modular'])
  38. ->withAttr('modular', function ($val, $data) {
  39. return Db::name('theme_modular')
  40. ->field('id,title,type')
  41. ->where(['is_del' => CommonModel::$del_normal, 'theme_id' => $data['id'], 'status' => CommonModel::$status_normal])
  42. ->order(['addtime' => 'desc', 'id' => 'desc'])
  43. ->append(['data'])
  44. ->withAttr('data', function ($v, $d) {
  45. return Db::name('theme_modular_data')
  46. ->field('id,img,jump_type,jump_param,good_name,good_id,style_type')
  47. ->where(['is_del' => CommonModel::$del_normal, 'theme_modular_id' => $d['id']])
  48. ->order(['addtime' => 'desc', 'id' => 'desc'])
  49. ->select()
  50. ->toArray();
  51. })
  52. ->select()
  53. ->toArray();
  54. })
  55. ->findOrEmpty()
  56. ->toArray();
  57. return empty($rs) ? json_show(CommonModel::$error_param, '该手机主题不存在') : json_show(CommonModel::$success, '获取手机主题成功', $rs);
  58. }
  59. }