前端最新版本同步

This commit is contained in:
Zhang.WH
2025-09-25 10:36:07 +08:00
parent a3a06d6f3c
commit 1276dc4adb
117 changed files with 11964 additions and 2466 deletions

View File

@@ -9,6 +9,15 @@ export function searchTraceNo(data) {
})
}
// 获取处方打印数据
export function advicePrint(data) {
return request({
url:'/app-common/advice-print',
method: 'get',
params: data,
})
}
import axios from 'axios';
const env = import.meta.env.MODE;
@@ -18,7 +27,7 @@ if(env == 'development'){
return axios.create(
{
// axios中请求配置有baseURL选项表示请求URL公共部分
baseURL: '/ybplugin',
baseURL: '',//ybplugin
// 超时
timeout: 60000
}