Address.php 5.0 KB

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