New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@imedx/ics-imedx-chromely-plugin-index-examine

Package Overview
Dependencies
Maintainers
13
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@imedx/ics-imedx-chromely-plugin-index-examine

```javascript import IndexExamine from '@imedx/ics-imedx-chromely-plugin-index-examine' ```

  • 0.0.1-beta.9
  • npm
  • Socket score

Version published
Weekly downloads
7
increased by16.67%
Maintainers
13
Weekly downloads
 
Created
Source

引入

import IndexExamine from '@imedx/ics-imedx-chromely-plugin-index-examine'

通用索引调用方法

query 查询索引

/**
 * 
 * @param indexId: 索引id
 * @param category:分类
 * @param keys:关键字
 * @returns 成功:{code: 200, data, message: 'ok'}
 */
IndexExamine.query(indexId, category, keys)

page 分页查询索引

  /**
   * 
   * @param indexId: 索引id
   * @param pageIndex:page索引 
   * @param pageSize:page尺寸
   * @param category:分类 
   * @param keys:关键字 
   * @returns 成功:{code: 200, data, message: 'ok'}
   */
IndexExamine.page(indexId, pageIndex, pageSize, category, keys)

字典索引调用方法

import { DictIndex } from '@imedx/ics-imedx-chromely-plugin-index-examine'

query 查询索引

 /**
   * 查询字典索引
   * @param category:分类,例如DICT_SEX、DICT_NATION,支持数组 ['DICT_SEX','DICT_NATION']
   * @param keys:关键字
   * @returns 成功返回结果,如果category是数组则返回{"DICT_SEX":[{},{}],"DICT_NATION":[{},{}]}
   */
  DictIndex.query(category: string|string[], keys: string = ''):Promise<any>

page 分页查询索引

   /**
   * 分页查询索引
   * @param pageIndex:page索引
   * @param pageSize:page尺寸
   * @param category:分类,例如DICT_SEX、DICT_NATION
   * @param keys:关键字
   * @returns 成功返回结果
   */
 DictIndex.page(
    pageIndex: number,
    pageSize: number,
    category: string,
    keys: string = ''
  ): Promise<any>

ICD10诊断索引调用方法

import { Icd10Index } from '@imedx/ics-imedx-chromely-plugin-index-examine'

query 查询索引

/**
   * 查询icd10诊断
   * @param keys:关键字
   * @returns 成功返回结果
   */
  Icd10Index.query(keys: string = ''):Promise<any>

page 分页查询索引

    /**
   * 分页查询索引
   * @param pageIndex:page索引
   * @param pageSize:page尺寸
   * @param keys:关键字
   * @returns 成功返回结果
   */
 Icd10Index.page(
    pageIndex: number,
    pageSize: number,
    keys: string = ''
  ): Promise<any>

中医诊断索引

import { IcdTcmIndex } from '@imedx/ics-imedx-chromely-plugin-index-examine'

query 查询索引

 /**
   * 查询中医诊断索引
   * @param category:分类,例如1 病,2 证,3 治
   * @returns 成功返回结果
   */
  IcdTcmIndex.query(category: string, keys: string = ''):Promise<any>

page 分页查询索引

   /**
   * 分页查询索引
   * @param pageIndex:page索引
   * @param pageSize:page尺寸
   * @param category:分类,例如1 病,2 证,3 治
   * @param keys:关键字
   * @returns 成功返回结果
   */
 IcdTcmIndex.page(
    pageIndex: number,
    pageSize: number,
    category: string,
    keys: string = ''
  ): Promise<any>

行政区划索引

import { SysAreaIndex } from '@imedx/ics-imedx-chromely-plugin-index-examine'

query 查询索引

 /**
   * 查询中医诊断索引
   * @param category:分类,分类,父行政区划编码
   * @returns 成功返回结果
   */
  SysAreaIndex.query(category: string, keys: string = ''):Promise<any>

page 分页查询索引

   /**
   * 分页查询索引
   * @param pageIndex:page索引
   * @param pageSize:page尺寸
   * @param category:分类,分类,父行政区划编码
   * @param keys:关键字
   * @returns 成功返回结果
   */
 SysAreaIndex.page(
    pageIndex: number,
    pageSize: number,
    category: string,
    keys: string = ''
  ): Promise<any>

FAQs

Package last updated on 22 Mar 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc