Address.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | framework
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://framework.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/ThinkAdmin
  12. // +----------------------------------------------------------------------
  13. namespace app\store\controller\api\member;
  14. use app\store\controller\api\Member;
  15. use think\Db;
  16. /**
  17. * 会员收货地址管理
  18. * Class Address
  19. * @package app\store\controller\api\member
  20. */
  21. class Address extends Member
  22. {
  23. /**
  24. * 获取会员收货地址信息
  25. * @throws \think\db\exception\DataNotFoundException
  26. * @throws \think\db\exception\ModelNotFoundException
  27. * @throws \think\exception\DbException
  28. */
  29. public function gets()
  30. {
  31. $this->success('获取会员收货地址成功!', [
  32. 'list' => Db::name('StoreMemberAddress')
  33. ->where(['mid' => $this->member['id']])
  34. ->order('is_default desc,id desc')
  35. ->select(),
  36. ]);
  37. }
  38. /**
  39. * 更新收货地址
  40. * @throws \think\Exception
  41. * @throws \think\exception\PDOException
  42. */
  43. public function set()
  44. {
  45. $data = $this->_input([
  46. 'mid' => $this->request->post('mid'),
  47. 'openid' => $this->request->post('openid'),
  48. 'name' => $this->request->post('name'),
  49. 'phone' => $this->request->post('phone'),
  50. 'province' => $this->request->post('province'),
  51. 'city' => $this->request->post('city'),
  52. 'area' => $this->request->post('area'),
  53. 'address' => $this->request->post('address'),
  54. 'is_default' => $this->request->post('is_default'),
  55. ], [
  56. 'name' => 'require',
  57. 'phone' => 'require|mobile',
  58. 'province' => 'require',
  59. 'city' => 'require',
  60. 'area' => 'require',
  61. 'address' => 'require',
  62. ], [
  63. 'name.require' => '收货人姓名不能为空!',
  64. 'phone.require' => '收货人联系手机不能为空!',
  65. 'phone.mobile' => '收货人联系手机格式不对!',
  66. 'province.require' => '收货地址省份不能为空!',
  67. 'city.require' => '收货地址城市不能为空!',
  68. 'area.require' => '收货地址区域不能为空!',
  69. 'address.require' => '收货详情地址不能为空!',
  70. ]);
  71. if (!empty($data['is_default'])) {
  72. Db::name('StoreMemberAddress')->where(['mid' => $this->member['id']])->setField('is_default', '0');
  73. }
  74. if ($this->request->has('id', 'post', true)) {
  75. $data['id'] = $this->request->post('id');
  76. }
  77. if (data_save('StoreMemberAddress', $data, 'id')) {
  78. $this->success('收货地址更新成功!');
  79. }
  80. $this->error('收货地址更新失败,请稍候再试!');
  81. }
  82. /**
  83. * 删除收货地址
  84. * @throws \think\Exception
  85. * @throws \think\exception\PDOException
  86. */
  87. public function del()
  88. {
  89. $id = $this->request->post('address_id');
  90. if (empty($id)) $this->error('待处理的收货地址ID不能为空!');
  91. $where = ['id' => $id, 'mid' => $this->member['id']];
  92. if (Db::name('StoreMemberAddress')->where($where)->delete() !== false) {
  93. $this->success('删除收货地址成功!');
  94. }
  95. $this->error('删除收货地址失败,请稍候再试!');
  96. }
  97. /**
  98. * 设置默认收货地址
  99. * @throws \think\Exception
  100. * @throws \think\db\exception\DataNotFoundException
  101. * @throws \think\db\exception\ModelNotFoundException
  102. * @throws \think\exception\DbException
  103. * @throws \think\exception\PDOException
  104. */
  105. public function setDefault()
  106. {
  107. $id = $this->request->post('address_id');
  108. if (empty($id)) $this->error('待处理的收货地址ID不存在!');
  109. $where = ['id' => $id, 'mid' => $this->member['id']];
  110. $address = Db::name('StoreMemberAddress')->where($where)->find();
  111. if (empty($address)) $this->error('待处理的收货地址获取失败,请稍候再试!');
  112. Db::name('StoreMemberAddress')->where(['mid' => $this->member['id']])->update(['is_default' => '0']);
  113. if (Db::name('StoreMemberAddress')->where($where)->update(['is_default' => '1']) !== false) {
  114. $this->success('设置默认收货地址成功!');
  115. }
  116. $this->error('设置默认收货地址失败!');
  117. }
  118. }