nsn-service
Version:
NSN服务组件
130 lines (112 loc) • 4.22 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.CommonRequest = void 0;
var _nsnEnum = require("nsn-enum");
var _core = require("./core");
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 CommonRequest = {
download_template: function () {
var _download_template = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee(params) {
var newParams;
return regeneratorRuntime.wrap(function _callee$(_context) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
newParams = params;
delete newParams.folder;
return _context.abrupt("return", (0, _core.request)({
ctx: _nsnEnum.RequestCxt.COMMON,
uri: '/download-template',
options: {
params: newParams
}
}));
case 3:
case "end":
return _context.stop();
}
}
}, _callee);
}));
function download_template(_x) {
return _download_template.apply(this, arguments);
}
return download_template;
}(),
image_view: function () {
var _image_view = _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, _core.request)({
ctx: _nsnEnum.RequestCxt.COMMON,
uri: "/image/view/".concat(params.fileUploadId)
}));
case 1:
case "end":
return _context2.stop();
}
}
}, _callee2);
}));
function image_view(_x2) {
return _image_view.apply(this, arguments);
}
return image_view;
}(),
pinyin_first_letters: function () {
var _pinyin_first_letters = _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, _core.request)({
ctx: _nsnEnum.RequestCxt.COMMON,
uri: '/pinyin-first-letters',
options: {
params: params
}
}));
case 1:
case "end":
return _context3.stop();
}
}
}, _callee3);
}));
function pinyin_first_letters(_x3) {
return _pinyin_first_letters.apply(this, arguments);
}
return pinyin_first_letters;
}(),
captcha: function () {
var _captcha = _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, _core.request)({
ctx: _nsnEnum.RequestCxt.COMMON,
uri: '/captcha',
options: {
params: params
}
}));
case 1:
case "end":
return _context4.stop();
}
}
}, _callee4);
}));
function captcha(_x4) {
return _captcha.apply(this, arguments);
}
return captcha;
}()
};
exports.CommonRequest = CommonRequest;