[关闭]
@tianqing123 2019-07-19T12:59:13.000000Z 字数 790 阅读 537

九江妇幼接口

点秀


命令

功能 接口 入参 出参 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://172.16.18.131:9050/'; // 正式api接口地址
  4. // 发送的数据
  5. var guahaoPushData = [
  6. {
  7. "doctor_id":"1",
  8. "doctor_name":"张嘉佳123",
  9. "doctor_title":"专家医师",
  10. "room_name":"心胸科",
  11. "doctor_status":"就诊",
  12. "registered":"10",
  13. "no_visit":"5",
  14. "max_registered":"50",
  15. "time":"上午"
  16. }
  17. ]
  18. var ajaxData = {
  19. sellerId: '6', // 商户号
  20. code: 'cs002', // 屏幕号
  21. appId: '225__403__2_17', // 应用号
  22. cmd: 'thirdApp', // 下发的命令,固定为thirdApp
  23. data: {list:guahaoPushData} // 下发的挂号数据
  24. };
  25. $.ajax({
  26. type: 'POST',
  27. url: prodAPIUrl+'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. });
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注