AddrLogic.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. namespace app\mobile\logic;
  3. use app\model\AddrModel;
  4. use app\model\CommonModel;
  5. use think\response\Json;
  6. class AddrLogic extends BaseLogic
  7. {
  8. //列表
  9. public static function list(array $data = []): Json
  10. {
  11. $db = AddrModel::where('is_del', CommonModel::$del_normal);
  12. $count = $db->count('id');
  13. $list = $db
  14. ->field('id,addr_code,addr,contactor,mobile')
  15. ->page($data['page'], $data['size'])
  16. ->withAttr('addr_code', function ($val) {
  17. return explode(',', $val);
  18. })
  19. ->order('id', 'desc')
  20. ->select()
  21. ->toArray();
  22. return json_show(CommonModel::$success, '获取列表成功', ['count' => $count, 'list' => $list]);
  23. }
  24. //添加
  25. public static function add(array $data = []): Json
  26. {
  27. $rs = AddrModel::create(array_merge($data, [
  28. 'uid' => self::$aid,
  29. 'addr_code' => implode(',', $data['addr_code']),
  30. 'is_del' => CommonModel::$del_normal,
  31. 'addtime' => date('Y-m-d H:i:s'),
  32. 'updatetime' => date('Y-m-d H:i:s'),
  33. ]))->save();
  34. return $rs ? json_show(CommonModel::$success, '添加地址成功') : json_show(CommonModel::$error_param, '添加地址失败');
  35. }
  36. //详情
  37. public static function read(int $id = 0): Json
  38. {
  39. $rs = AddrModel::withoutField('uid,is_del')
  40. ->where(['id' => $id, 'is_del' => CommonModel::$del_normal])
  41. ->withAttr('addr_code', function ($val) {
  42. return explode(',', $val);
  43. })
  44. ->findOrEmpty()
  45. ->toArray();
  46. return json_show(CommonModel::$success, '获取收货地址详情成功', $rs);
  47. }
  48. //修改
  49. public static function edit(array $data = []): Json
  50. {
  51. $res = AddrModel::field('id')
  52. ->where(['id' => $data['id'], 'is_del' => CommonModel::$del_normal])
  53. ->findOrEmpty()
  54. ->isEmpty();
  55. if ($res) return json_show(CommonModel::$error_param, '该地址不存在');
  56. $rs = AddrModel::where(['id' => $data['id'], 'is_del' => CommonModel::$del_normal])
  57. ->save(array_merge($data, [
  58. 'addr_code' => implode(',', $data['addr_code']),
  59. 'updatetime' => date('Y-m-d H:i:s'),
  60. ]));
  61. return $rs ? json_show(CommonModel::$success, '修改地址成功') : json_show(CommonModel::$error_param, '修改地址失败');
  62. }
  63. //删除
  64. public static function delete(int $id = 0): Json
  65. {
  66. $rs = AddrModel::where(['id' => $id, 'is_del' => CommonModel::$del_normal])
  67. ->save([
  68. 'is_del' => CommonModel::$del_deleted,
  69. 'updatetime' => date('Y-m-d H:i:s'),
  70. ]);
  71. return $rs ? json_show(CommonModel::$success, '删除地址成功') : json_show(CommonModel::$error_param, '该地址不存在');
  72. }
  73. }