@imedx/ics-imedx-chromely-plugin-index-examine
Advanced tools
Comparing version 0.0.1-beta.1 to 0.0.1-beta.2
@@ -49,5 +49,77 @@ import icsChromelyRequest from '@icreate/ics-chromely-js-sdk'; | ||
* @Author: 陶慧灵 | ||
* @Date: 2022-10-21 09:20:20 | ||
* @LastEditors: wenbei421 346972930@qq.com | ||
* @LastEditTime: 2022-10-25 15:08:19 | ||
* @Descripttion: | ||
* @FilePath: \src\index-examine.ts | ||
*/ | ||
var DictIndex = /** @class */ (function () { | ||
function DictIndex() { | ||
} | ||
/** | ||
* | ||
* @param categroy:分类,例如DICT_SEX、DICT_NATION | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
DictIndex.query = function (categroy, keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return IndexExamine.query('DictionaryIndex', categroy, keys); | ||
}; | ||
/** | ||
* 分页查询索引 | ||
* @param indexId: 索引id | ||
* @param pageIndex:page索引 | ||
* @param pageSize:page尺寸 | ||
* @param categroy:分类,例如DICT_SEX、DICT_NATION | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
DictIndex.page = function (pageIndex, pageSize, categroy, keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return IndexExamine.page('DictionaryIndex', pageIndex, pageSize, categroy, keys); | ||
}; | ||
return DictIndex; | ||
}()); | ||
/* | ||
* @Author: 陶慧灵 | ||
* @Date: 2022-10-21 09:20:20 | ||
* @LastEditors: wenbei421 346972930@qq.com | ||
* @LastEditTime: 2022-10-25 15:08:15 | ||
* @Descripttion: | ||
* @FilePath: \src\index-examine.ts | ||
*/ | ||
var Icd10Index = /** @class */ (function () { | ||
function Icd10Index() { | ||
} | ||
/** | ||
* 查询icd10诊断 | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
Icd10Index.query = function (keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return IndexExamine.query('Icd10Index', '', keys); | ||
}; | ||
/** | ||
* 分页查询索引 | ||
* @param indexId: 索引id | ||
* @param pageIndex:page索引 | ||
* @param pageSize:page尺寸 | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
Icd10Index.page = function (pageIndex, pageSize, keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return IndexExamine.page('Icd10Index', pageIndex, pageSize, '', keys); | ||
}; | ||
return Icd10Index; | ||
}()); | ||
/* | ||
* @Author: 陶慧灵 | ||
* @Date: 2022-10-21 09:01:18 | ||
* @LastEditors: 陶慧灵 | ||
* @LastEditTime: 2022-10-21 10:36:19 | ||
* @LastEditors: wenbei421 346972930@qq.com | ||
* @LastEditTime: 2022-10-25 15:04:01 | ||
* @Descripttion: | ||
@@ -58,2 +130,3 @@ * @FilePath: \src\ics-imedx-chromely-plugin-index-examine.ts | ||
export default IndexExamine; | ||
export { DictIndex, Icd10Index }; | ||
//# sourceMappingURL=ics-imedx-chromely-plugin-index-examine.es5.js.map |
(function (global, factory) { | ||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('@icreate/ics-chromely-js-sdk')) : | ||
typeof define === 'function' && define.amd ? define(['@icreate/ics-chromely-js-sdk'], factory) : | ||
(global.icsImedxChromelyPluginIndexExamine = factory(global.icsChromelyRequest)); | ||
}(this, (function (icsChromelyRequest) { 'use strict'; | ||
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@icreate/ics-chromely-js-sdk')) : | ||
typeof define === 'function' && define.amd ? define(['exports', '@icreate/ics-chromely-js-sdk'], factory) : | ||
(factory((global.icsImedxChromelyPluginIndexExamine = {}),global.icsChromelyRequest)); | ||
}(this, (function (exports,icsChromelyRequest) { 'use strict'; | ||
@@ -55,5 +55,77 @@ icsChromelyRequest = icsChromelyRequest && icsChromelyRequest.hasOwnProperty('default') ? icsChromelyRequest['default'] : icsChromelyRequest; | ||
* @Author: 陶慧灵 | ||
* @Date: 2022-10-21 09:20:20 | ||
* @LastEditors: wenbei421 346972930@qq.com | ||
* @LastEditTime: 2022-10-25 15:08:19 | ||
* @Descripttion: | ||
* @FilePath: \src\index-examine.ts | ||
*/ | ||
var DictIndex = /** @class */ (function () { | ||
function DictIndex() { | ||
} | ||
/** | ||
* | ||
* @param categroy:分类,例如DICT_SEX、DICT_NATION | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
DictIndex.query = function (categroy, keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return IndexExamine.query('DictionaryIndex', categroy, keys); | ||
}; | ||
/** | ||
* 分页查询索引 | ||
* @param indexId: 索引id | ||
* @param pageIndex:page索引 | ||
* @param pageSize:page尺寸 | ||
* @param categroy:分类,例如DICT_SEX、DICT_NATION | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
DictIndex.page = function (pageIndex, pageSize, categroy, keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return IndexExamine.page('DictionaryIndex', pageIndex, pageSize, categroy, keys); | ||
}; | ||
return DictIndex; | ||
}()); | ||
/* | ||
* @Author: 陶慧灵 | ||
* @Date: 2022-10-21 09:20:20 | ||
* @LastEditors: wenbei421 346972930@qq.com | ||
* @LastEditTime: 2022-10-25 15:08:15 | ||
* @Descripttion: | ||
* @FilePath: \src\index-examine.ts | ||
*/ | ||
var Icd10Index = /** @class */ (function () { | ||
function Icd10Index() { | ||
} | ||
/** | ||
* 查询icd10诊断 | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
Icd10Index.query = function (keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return IndexExamine.query('Icd10Index', '', keys); | ||
}; | ||
/** | ||
* 分页查询索引 | ||
* @param indexId: 索引id | ||
* @param pageIndex:page索引 | ||
* @param pageSize:page尺寸 | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
Icd10Index.page = function (pageIndex, pageSize, keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return IndexExamine.page('Icd10Index', pageIndex, pageSize, '', keys); | ||
}; | ||
return Icd10Index; | ||
}()); | ||
/* | ||
* @Author: 陶慧灵 | ||
* @Date: 2022-10-21 09:01:18 | ||
* @LastEditors: 陶慧灵 | ||
* @LastEditTime: 2022-10-21 10:36:19 | ||
* @LastEditors: wenbei421 346972930@qq.com | ||
* @LastEditTime: 2022-10-25 15:04:01 | ||
* @Descripttion: | ||
@@ -63,5 +135,9 @@ * @FilePath: \src\ics-imedx-chromely-plugin-index-examine.ts | ||
return IndexExamine; | ||
exports.default = IndexExamine; | ||
exports.DictIndex = DictIndex; | ||
exports.Icd10Index = Icd10Index; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
}))); | ||
//# sourceMappingURL=ics-imedx-chromely-plugin-index-examine.umd.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Icd10Index = exports.DictIndex = void 0; | ||
/* | ||
* @Author: 陶慧灵 | ||
* @Date: 2022-10-21 09:01:18 | ||
* @LastEditors: 陶慧灵 | ||
* @LastEditTime: 2022-10-21 10:36:19 | ||
* @LastEditors: wenbei421 346972930@qq.com | ||
* @LastEditTime: 2022-10-25 15:04:01 | ||
* @Descripttion: | ||
@@ -12,3 +13,7 @@ * @FilePath: \src\ics-imedx-chromely-plugin-index-examine.ts | ||
var index_examine_1 = require("./index-examine"); | ||
var dict_index_examine_1 = require("./dict-index-examine"); | ||
exports.DictIndex = dict_index_examine_1.default; | ||
var icd10_index_examine_1 = require("./icd10-index-examine"); | ||
exports.Icd10Index = icd10_index_examine_1.default; | ||
exports.default = index_examine_1.default; | ||
//# sourceMappingURL=ics-imedx-chromely-plugin-index-examine.js.map |
import IndexExamine from './index-examine'; | ||
import DictIndex from './dict-index-examine'; | ||
import Icd10Index from './icd10-index-examine'; | ||
export default IndexExamine; | ||
export { DictIndex, Icd10Index }; |
{ | ||
"name": "@imedx/ics-imedx-chromely-plugin-index-examine", | ||
"version": "0.0.1-beta.1", | ||
"version": "0.0.1-beta.2", | ||
"description": "", | ||
@@ -121,4 +121,4 @@ "keywords": [], | ||
"dependencies": { | ||
"@icreate/ics-chromely-js-sdk": "^0.0.4" | ||
"@icreate/ics-chromely-js-sdk": "^0.0.4-beta.1" | ||
} | ||
} |
@@ -7,4 +7,4 @@ ### 引入 | ||
### 使用方法 | ||
> query | ||
### 通用索引调用方法 | ||
> query 查询索引 | ||
```javascript | ||
@@ -21,3 +21,3 @@ /** | ||
> page | ||
> page 分页查询索引 | ||
```javascript | ||
@@ -35,1 +35,67 @@ /** | ||
``` | ||
```javascript | ||
import { DictIndex } from '@imedx/ics-imedx-chromely-plugin-index-examine' | ||
``` | ||
### 字典索引调用方法 | ||
> query 查询索引 | ||
```javascript | ||
/** | ||
* 查询字典索引 | ||
* @param categroy:分类,例如DICT_SEX、DICT_NATION | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
DictIndex.query(categroy: string, keys: string = ''):Promise<any> | ||
``` | ||
> page 分页查询索引 | ||
```javascript | ||
/** | ||
* 分页查询索引 | ||
* @param pageIndex:page索引 | ||
* @param pageSize:page尺寸 | ||
* @param categroy:分类,例如DICT_SEX、DICT_NATION | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
DictIndex.page( | ||
pageIndex: number, | ||
pageSize: number, | ||
categroy: string, | ||
keys: string = '' | ||
): Promise<any> | ||
``` | ||
```javascript | ||
import { Icd10Index } from '@imedx/ics-imedx-chromely-plugin-index-examine' | ||
``` | ||
### ICD10诊断索引调用方法 | ||
> query 查询索引 | ||
```javascript | ||
/** | ||
* 查询icd10诊断 | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
Icd10Index.query(keys: string = ''):Promise<any> | ||
``` | ||
> page 分页查询索引 | ||
```javascript | ||
/** | ||
* 分页查询索引 | ||
* @param pageIndex:page索引 | ||
* @param pageSize:page尺寸 | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
Icd10Index.page( | ||
pageIndex: number, | ||
pageSize: number, | ||
keys: string = '' | ||
): Promise<any> | ||
``` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
35371
19
462
99
1