@tianqing123
2018-11-19T18:41:44.000000Z
字数 1258
阅读 1068
点秀
功能 | 接口 | 入参 | 出参 | code | 说明 |
---|---|---|---|---|---|
应用命令执行 | command/pub/execute | sellerId(商户号),code(屏幕号),appId(应用id),cmd(命令),"data":"给终端的参数" | isSuccess:"true/false" | 0 | 第三方调用,对外暴露的下发命令的接口 |
使用示例
var testAPIUrl = 'http://ljapi.swao.cn/'; // 测试api接口地址
var prodAPIUrl = 'http://192.168.0.230:9050'; // 正式api接口地址 待定
// 挂号的数据
var guahaoPushData = [
{
patient_id: '1', // 病人唯一标识
patient_name: '李**', // 病人姓名
patient_No: '1003', // 病人排队序号
room_id: '54', // 诊室的唯一标识
room_No: '54', // 诊室号
patient_status: '排队中', // 病人状态
doctor_id: '1', // 医生唯一标识
doctor_lv: '专家', // 医生职称
doctor_name: '张**', // 医生名字
}
];
var ajaxData = {
sellerId: '6', // 商户号
code: 'cs002', // 屏幕号
appId: '225__403__2_17', // 应用号
cmd: 'thirdApp', // 下发的命令,固定为thirdApp
data: guahaoPushData // 下发的挂号数据
};
$.ajax({
type: 'POST',
url: testAPIUrl+'command/pub/execute',
data: JSON.stringify(ajaxData),
dataType: 'json',
contentType: 'application/json',
success: function (res) {
if (res.code == 0) {
alert('发送完成')
}
}
});
$.ajax({
type: 'POST',
url: 'http://ljapi.swao.cn/command/pub/execute',
data: JSON.stringify({
sellerId: '6',
code: 'cs002',
appId: '225__403__2_17',
cmd: 'thirdApp',
data: {
"patient_id": "38",
"patient_name": "凌冰",
"patient_No": "1003",
"room_No": "25号诊室",
"room_id": 6,
"patient_status": 1003,
"doctor_id": "7",
"doctor_lv": "专家",
"doctor_name": "钟佳佳"
}
}),
dataType: 'json',
contentType: 'application/json',
success: function (res) {
if (res.code == 0) {
alert('发送完成')
}
}
});