Document.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 Document extends MobileMall
  16. {
  17. public function initialize()
  18. {
  19. parent::initialize();
  20. }
  21. /**
  22. * @api {POST} api/Document/agreement 用户协议
  23. * @apiVersion 1.0.0
  24. * @apiGroup Document
  25. *
  26. * @apiParam {String} type 协议类型 agreement 用户协议
  27. *
  28. * @apiSuccess {String} code 返回码,10000为成功
  29. * @apiSuccess {String} message 返回消息
  30. * @apiSuccess {Object} result 返回数据
  31. * @apiSuccess {Int} result.document_id 协议ID
  32. * @apiSuccess {Object} result.document_code 协议代码
  33. * @apiSuccess {Object} result.document_title 协议标题
  34. * @apiSuccess {Object} result.document_content 协议内容
  35. * @apiSuccess {Int} result.document_time 添加时间
  36. */
  37. public function agreement() {
  38. $type=input('param.type');
  39. if(!$type){
  40. $type='agreement';
  41. }
  42. $doc = model('document')->getOneDocumentByCode($type);
  43. $doc['document_content']= htmlspecialchars_decode($doc['document_content']);
  44. ds_json_encode(10000, '',$doc);
  45. }
  46. }