diff --git a/src/api/liswork/xtwh/ReportSetting.ts b/src/api/liswork/xtwh/ReportSetting.ts
new file mode 100644
index 0000000..573ca98
--- /dev/null
+++ b/src/api/liswork/xtwh/ReportSetting.ts
@@ -0,0 +1,12 @@
+//报告单设置界面
+// @ts-ignore
+import request from '@/utils/request'
+
+//新增数据
+export function addReportService(LabReportInstr: Object){
+ return request({
+ url: '/labReportinstr/add',
+ method: 'post',
+ data: LabReportInstr
+ })
+}
\ No newline at end of file
diff --git a/src/types/Object.d.ts b/src/types/Object.d.ts
new file mode 100644
index 0000000..28c9482
--- /dev/null
+++ b/src/types/Object.d.ts
@@ -0,0 +1,9 @@
+export interface LabReportInstr {
+ yq: string; //仪器
+ xh: number; //序号
+ bgdh: string; //报告单号
+ yljg: string; //医疗机构
+ type: string; //使用类型
+ condition: string; //使用条件
+ status?: string; //状态
+}
\ No newline at end of file
diff --git a/src/types/index.d.ts b/src/types/index.d.ts
new file mode 100644
index 0000000..74f3072
--- /dev/null
+++ b/src/types/index.d.ts
@@ -0,0 +1,4 @@
+//聚合文件,导出所有的类型定义
+
+//对象文件
+export * from './Object';
\ No newline at end of file
diff --git a/src/views/liswork/xtwh/reportsetting/index.vue b/src/views/liswork/xtwh/reportsetting/index.vue
new file mode 100644
index 0000000..866eb6a
--- /dev/null
+++ b/src/views/liswork/xtwh/reportsetting/index.vue
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+ 新增
+ 删除
+ 保存
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/vite.config.js b/vite.config.js
index 7287b3c..361e5f2 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -40,8 +40,8 @@ export default defineConfig(({
proxy: {
// https://cn.vitejs.dev/config/#server-proxy
'/dev-api': {
- //target: 'http://localhost:9801',
- target: 'http://47.97.125.165:8904',
+ target: 'http://localhost:9801',
+ //target: 'http://47.97.125.165:8904',
// target: 'http://192.168.1.114:9801',
changeOrigin: true,
rewrite: (p) => p.replace(/^\/dev-api/, '')