123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- import request from '@/utils/request'
- export function getRoleCode() {
- return request({
- url: '/publicApi/getRoleCode',
- method: 'get',
- })
- }
- export function getRenYuan(code) {
- return request({
- url: '/publicApi/getRenYuan',
- method: 'get',
- params: {code},
- })
- }
- export function getChargeCode(pyCode) {
- return request({
- url: '/publicApi/getChargeCode',
- method: 'get',
- params: {pyCode},
- })
- }
- export function getDept() {
- return request({
- url: '/publicApi/getDept',
- method: 'get',
- })
- }
- export function maZuiFangShi() {
- return request({
- url: '/publicApi/maZuiFangShi',
- method: 'get',
- })
- }
- export function getServerDateApi() {
- return request({
- url: '/publicApi/getDate',
- method: 'get',
- });
- }
- export function yaoPinXiangMuPiPeiYiBao(data) {
- return request({
- url: '/publicApi/yaoPinXiangMuPiPeiYiBao',
- method: 'post',
- data
- })
- }
- export function huoQuYuanGongXinXi(code) {
- return request({
- url: '/publicApi/huoQuYuanGongXinXi',
- method: 'get',
- params: {code}
- });
- }
- export function getAllergens(name) {
- return request({
- url: '/publicApi/getAllergens',
- method: 'get',
- params: {name}
- });
- }
- export function getPatientAllergens(patNo) {
- return request({
- url: '/publicApi/getPatientAllergens',
- method: 'get',
- params: {patNo}
- });
- }
- export function whetherThePatientHasAllergens(patNo) {
- return request({
- url: '/publicApi/whetherThePatientHasAllergens',
- method: 'get',
- params: {patNo}
- });
- }
- export function newPatientAllergens(patNo, allergenCode, allergenType) {
- return request({
- url: '/publicApi/newPatientAllergens',
- method: 'get',
- params: {patNo, allergenCode, allergenType}
- });
- }
- export function removePatientAllergens(id) {
- return request({
- url: '/publicApi/removePatientAllergens',
- method: 'get',
- params: {id}
- });
- }
- export function getDrugInfo(name) {
- return request({
- url: '/publicApi/getDrugInfo',
- method: 'get',
- params: {name}
- });
- }
- export function getBldCat(name) {
- return request({
- url: '/publicApi/getBldCat',
- method: 'get',
- params: {name}
- });
- }
- /**
- * 获取 获取转科列表
- * @returns {*}
- */
- export function getTheTransferList() {
- return request({
- url: '/publicApi/getTheTransferList',
- method: 'get'
- });
- }
- export function getPeopleToFillInInformation() {
- return request({
- url: '/publicApi/getPeopleToFillInInformation',
- method: 'get'
- });
- }
- export function idVerificationApi(idCard) {
- return request({
- url: '/publicApi/idVerification',
- method: 'get',
- params: {idCard}
- });
- }
|