@imedx/ics-imedx-chromely-plugin-index-examine
Advanced tools
Comparing version 0.0.1-beta.14 to 0.0.1-beta.15
@@ -98,7 +98,8 @@ import icsChromelyRequest from '@icreate/ics-chromely-js-sdk'; | ||
* @param keys:关键字 | ||
* @param category 诊断类别 11:疾病诊断 12:损伤中毒原因 13:肿瘤形态学(对应病案首页病理诊断) | ||
* @returns 成功返回结果 | ||
*/ | ||
Icd10Index.query = function (keys) { | ||
Icd10Index.query = function (category, keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return IndexExamine.query('Icd10Index', '', keys); | ||
return IndexExamine.query('Icd10Index', category, keys); | ||
}; | ||
@@ -110,8 +111,9 @@ /** | ||
* @param pageSize:page尺寸 | ||
* @param category 诊断类别 11:疾病诊断 12:损伤中毒原因 13:肿瘤形态学(对应病案首页病理诊断) | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
Icd10Index.page = function (pageIndex, pageSize, keys) { | ||
Icd10Index.page = function (pageIndex, pageSize, category, keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return IndexExamine.page('Icd10Index', pageIndex, pageSize, '', keys); | ||
return IndexExamine.page('Icd10Index', pageIndex, pageSize, category, keys); | ||
}; | ||
@@ -118,0 +120,0 @@ return Icd10Index; |
@@ -104,7 +104,8 @@ (function (global, factory) { | ||
* @param keys:关键字 | ||
* @param category 诊断类别 11:疾病诊断 12:损伤中毒原因 13:肿瘤形态学(对应病案首页病理诊断) | ||
* @returns 成功返回结果 | ||
*/ | ||
Icd10Index.query = function (keys) { | ||
Icd10Index.query = function (category, keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return IndexExamine.query('Icd10Index', '', keys); | ||
return IndexExamine.query('Icd10Index', category, keys); | ||
}; | ||
@@ -116,8 +117,9 @@ /** | ||
* @param pageSize:page尺寸 | ||
* @param category 诊断类别 11:疾病诊断 12:损伤中毒原因 13:肿瘤形态学(对应病案首页病理诊断) | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
Icd10Index.page = function (pageIndex, pageSize, keys) { | ||
Icd10Index.page = function (pageIndex, pageSize, category, keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return IndexExamine.page('Icd10Index', pageIndex, pageSize, '', keys); | ||
return IndexExamine.page('Icd10Index', pageIndex, pageSize, category, keys); | ||
}; | ||
@@ -124,0 +126,0 @@ return Icd10Index; |
@@ -18,7 +18,8 @@ "use strict"; | ||
* @param keys:关键字 | ||
* @param category 诊断类别 11:疾病诊断 12:损伤中毒原因 13:肿瘤形态学(对应病案首页病理诊断) | ||
* @returns 成功返回结果 | ||
*/ | ||
Icd10Index.query = function (keys) { | ||
Icd10Index.query = function (category, keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return index_examine_1.default.query('Icd10Index', '', keys); | ||
return index_examine_1.default.query('Icd10Index', category, keys); | ||
}; | ||
@@ -30,8 +31,9 @@ /** | ||
* @param pageSize:page尺寸 | ||
* @param category 诊断类别 11:疾病诊断 12:损伤中毒原因 13:肿瘤形态学(对应病案首页病理诊断) | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
Icd10Index.page = function (pageIndex, pageSize, keys) { | ||
Icd10Index.page = function (pageIndex, pageSize, category, keys) { | ||
if (keys === void 0) { keys = ''; } | ||
return index_examine_1.default.page('Icd10Index', pageIndex, pageSize, '', keys); | ||
return index_examine_1.default.page('Icd10Index', pageIndex, pageSize, category, keys); | ||
}; | ||
@@ -38,0 +40,0 @@ return Icd10Index; |
@@ -5,5 +5,6 @@ export default class Icd10Index { | ||
* @param keys:关键字 | ||
* @param category 诊断类别 11:疾病诊断 12:损伤中毒原因 13:肿瘤形态学(对应病案首页病理诊断) | ||
* @returns 成功返回结果 | ||
*/ | ||
static query(keys?: string): Promise<any>; | ||
static query(category: string, keys?: string): Promise<any>; | ||
/** | ||
@@ -14,6 +15,7 @@ * 分页查询索引 | ||
* @param pageSize:page尺寸 | ||
* @param category 诊断类别 11:疾病诊断 12:损伤中毒原因 13:肿瘤形态学(对应病案首页病理诊断) | ||
* @param keys:关键字 | ||
* @returns 成功返回结果 | ||
*/ | ||
static page(pageIndex: number, pageSize: number, keys?: string): Promise<any>; | ||
static page(pageIndex: number, pageSize: number, category: string, keys?: string): Promise<any>; | ||
} |
{ | ||
"name": "@imedx/ics-imedx-chromely-plugin-index-examine", | ||
"version": "0.0.1-beta.14", | ||
"version": "0.0.1-beta.15", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
@@ -81,5 +81,6 @@ ### 引入 | ||
* @param keys:关键字 | ||
* @param category 诊断类别 11:疾病诊断 12:损伤中毒原因 13:肿瘤形态学(对应病案首页病理诊断) | ||
* @returns 成功返回结果 | ||
*/ | ||
Icd10Index.query(keys: string = ''):Promise<any> | ||
Icd10Index.query(category: string, keys: string = ''):Promise<any> | ||
``` | ||
@@ -94,2 +95,3 @@ | ||
* @param keys:关键字 | ||
* @param category 诊断类别 11:疾病诊断 12:损伤中毒原因 13:肿瘤形态学(对应病案首页病理诊断) | ||
* @returns 成功返回结果 | ||
@@ -100,2 +102,3 @@ */ | ||
pageSize: number, | ||
category: string, | ||
keys: string = '' | ||
@@ -102,0 +105,0 @@ ): 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
66107
833
172