[关闭]
@tianqing123 2018-11-19T18:41:44.000000Z 字数 1258 阅读 1068

长连接数据下发对外接口

点秀


命令

功能 接口 入参 出参 code 说明
应用命令执行 command/pub/execute sellerId(商户号),code(屏幕号),appId(应用id),cmd(命令),"data":"给终端的参数" isSuccess:"true/false" 0 第三方调用,对外暴露的下发命令的接口
  1. 使用示例
  2. var testAPIUrl = 'http://ljapi.swao.cn/'; // 测试api接口地址
  3. var prodAPIUrl = 'http://192.168.0.230:9050'; // 正式api接口地址 待定
  4. // 挂号的数据
  5. var guahaoPushData = [
  6. {
  7. patient_id: '1', // 病人唯一标识
  8. patient_name: '李**', // 病人姓名
  9. patient_No: '1003', // 病人排队序号
  10. room_id: '54', // 诊室的唯一标识
  11. room_No: '54', // 诊室号
  12. patient_status: '排队中', // 病人状态
  13. doctor_id: '1', // 医生唯一标识
  14. doctor_lv: '专家', // 医生职称
  15. doctor_name: '张**', // 医生名字
  16. }
  17. ];
  18. var ajaxData = {
  19. sellerId: '6', // 商户号
  20. code: 'cs002', // 屏幕号
  21. appId: '225__403__2_17', // 应用号
  22. cmd: 'thirdApp', // 下发的命令,固定为thirdApp
  23. data: guahaoPushData // 下发的挂号数据
  24. };
  25. $.ajax({
  26. type: 'POST',
  27. url: testAPIUrl+'command/pub/execute',
  28. data: JSON.stringify(ajaxData),
  29. dataType: 'json',
  30. contentType: 'application/json',
  31. success: function (res) {
  32. if (res.code == 0) {
  33. alert('发送完成')
  34. }
  35. }
  36. });
  37. $.ajax({
  38. type: 'POST',
  39. url: 'http://ljapi.swao.cn/command/pub/execute',
  40. data: JSON.stringify({
  41. sellerId: '6',
  42. code: 'cs002',
  43. appId: '225__403__2_17',
  44. cmd: 'thirdApp',
  45. data: {
  46. "patient_id": "38",
  47. "patient_name": "凌冰",
  48. "patient_No": "1003",
  49. "room_No": "25号诊室",
  50. "room_id": 6,
  51. "patient_status": 1003,
  52. "doctor_id": "7",
  53. "doctor_lv": "专家",
  54. "doctor_name": "钟佳佳"
  55. }
  56. }),
  57. dataType: 'json',
  58. contentType: 'application/json',
  59. success: function (res) {
  60. if (res.code == 0) {
  61. alert('发送完成')
  62. }
  63. }
  64. });
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注