12345678910111213141516171819202122232425 |
- (function(exports) {
- var jiuzhenAPI = {
- // 我的就诊
- getRemind: function(data) {
- return httpRequest.get("basic/api/v1.0/MessageRemindByNotifie", {
- data: data
- })
- }, //查询挂号单列表
- queryRegOrderInfos: function(data) {
- return httpRequest.get("basic/api/v1.0/appointment/registration/search", {
- data: data
- });
- }, //查询挂号单详情
- getRegOrderInfo: function(data) {
- return httpRequest.get("basic/api/v1.0/appointment/registration/" + data);
- },
- cancelOrder: function(data) {
- return httpRequest.get("basic/api/v1.0/appointment/registration/updateState", {
- data: data
- });
- },
- }
- exports.jiuzhenAPI = jiuzhenAPI;
- })(window)
|