zhu-jiang-yi-yuan-mobile
Version:
南方医科大学珠江医院移动端
133 lines (116 loc) • 4.2 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.MobileDataRequest = void 0;
var _nsnService = require("nsn-service");
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
var ctx = 'screen/zjyy/ydd';
var MobileDataRequest = {
outpatient: function () {
var _outpatient = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee(params) {
return regeneratorRuntime.wrap(function _callee$(_context) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
return _context.abrupt("return", (0, _nsnService.request)({
ctx: ctx,
ignoreToken: true,
uri: '/getYzOutpatient',
options: {
params: params
}
}));
case 1:
case "end":
return _context.stop();
}
}
}, _callee);
}));
function outpatient(_x) {
return _outpatient.apply(this, arguments);
}
return outpatient;
}(),
hospitalization: function () {
var _hospitalization = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2(params) {
return regeneratorRuntime.wrap(function _callee2$(_context2) {
while (1) {
switch (_context2.prev = _context2.next) {
case 0:
return _context2.abrupt("return", (0, _nsnService.request)({
ctx: ctx,
ignoreToken: true,
uri: '/getYzIPWork',
options: {
params: params
}
}));
case 1:
case "end":
return _context2.stop();
}
}
}, _callee2);
}));
function hospitalization(_x2) {
return _hospitalization.apply(this, arguments);
}
return hospitalization;
}(),
operation: function () {
var _operation = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee3(params) {
return regeneratorRuntime.wrap(function _callee3$(_context3) {
while (1) {
switch (_context3.prev = _context3.next) {
case 0:
return _context3.abrupt("return", (0, _nsnService.request)({
ctx: ctx,
ignoreToken: true,
uri: '/getYzOperation',
options: {
params: params
}
}));
case 1:
case "end":
return _context3.stop();
}
}
}, _callee3);
}));
function operation(_x3) {
return _operation.apply(this, arguments);
}
return operation;
}(),
income: function () {
var _income = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee4(params) {
return regeneratorRuntime.wrap(function _callee4$(_context4) {
while (1) {
switch (_context4.prev = _context4.next) {
case 0:
return _context4.abrupt("return", (0, _nsnService.request)({
ctx: ctx,
ignoreToken: true,
uri: '/getYzInCome',
options: {
params: params
}
}));
case 1:
case "end":
return _context4.stop();
}
}
}, _callee4);
}));
function income(_x4) {
return _income.apply(this, arguments);
}
return income;
}()
};
exports.MobileDataRequest = MobileDataRequest;