Sellerlogout.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace app\api\controller;
  3. /**
  4. * ============================================================================
  5. * DSMall多用户商城
  6. * ============================================================================
  7. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  8. * 网站地址: http://www.csdeshang.com
  9. * ----------------------------------------------------------------------------
  10. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  11. * 不允许对程序代码以任何形式任何目的的再发布。
  12. * ============================================================================
  13. * 卖家登出控制器
  14. */
  15. class Sellerlogout extends MobileSeller {
  16. public function initialize() {
  17. parent::initialize();
  18. }
  19. /**
  20. * @api {POST} api/Sellerlogout/group_edit 注销
  21. * @apiVersion 1.0.0
  22. * @apiGroup Sellerlogout
  23. *
  24. * @apiHeader {String} X-DS-KEY 卖家授权token
  25. *
  26. * @apiParam {String} seller_name 卖家账号
  27. * @apiParam {String} client 客户端类型 android wap wechat ios windows jswechat
  28. *
  29. * @apiSuccess {String} code 返回码,10000为成功
  30. * @apiSuccess {String} message 返回消息
  31. * @apiSuccess {Object} result 返回数据
  32. */
  33. public function index() {
  34. if (empty(input('post.seller_name')) || !in_array(input('post.client'), $this->client_type_array)) {
  35. ds_json_encode(10001, lang('param_error'));
  36. }
  37. $mbsellertoken_model = model('mbsellertoken');
  38. if ($this->seller_info['seller_name'] == input('post.seller_name')) {
  39. $condition = array();
  40. $condition[] = array('seller_id','=',$this->seller_info['seller_id']);
  41. $mbsellertoken_model->delMbsellertoken($condition);
  42. ds_json_encode(10000, '', 1);
  43. } else {
  44. ds_json_encode(10001, lang('param_error'));
  45. }
  46. }
  47. }