Socket
Book a DemoInstallSign in
Socket

@imedx/ics-imedx-chs-intelligent-review-js-sdk

Package Overview
Dependencies
Maintainers
22
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@imedx/ics-imedx-chs-intelligent-review-js-sdk

提供医保智能审核接口js-sdk

latest
npmnpm
Version
0.0.1-beta.19
Version published
Maintainers
22
Created
Source

Usage

npm i @imedx/ics-imedx-chs-intelligent-review-js-sdk@0.0.1

应用

/**
   *  医保智能审核
   * @param code his交易码
   * @param scene 场景类型
   * @param params
   * @param params.patientId 患者id
   * @param params.visitId 就诊号
   * @param params.orderIdList 医嘱/诊断id集合
   */
import Test from '@imedx/ics-imedx-chs-intelligent-review-js-sdk'

const test = new Test()
const param = {
  code: '',
  params: {
    patientId: '',
    visitId: '',
    orderIdList: '',
  },
  scene: 2
}
const result = await test.IntelligentReview(param.code, param.params, param.scene)

回参

// 实现接口配置关闭
{
  code: 1200,
  data: {},
  message: "执行成功"
}

// 审核通过
{
  code: 1200,
  data: {
    result: []
  },
  message: "执行成功"
}

// 审核不通过-弹出审核不通过弹框
{
  info: [] // 不通过数据
  type: '' // 用户操作类  close: 右上角关闭,cancel:取消按钮,confirm:确认按钮
}

FAQs

Package last updated on 20 Aug 2025

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