diff --git a/src/api/liswork/xtwh/xmFeeinstrApi.ts b/src/api/liswork/xtwh/xmFeeinstrApi.ts
new file mode 100644
index 0000000..90374d5
--- /dev/null
+++ b/src/api/liswork/xtwh/xmFeeinstrApi.ts
@@ -0,0 +1,39 @@
+//仪器收费项目对照
+// @ts-ignore
+import request from '@/utils/request'
+
+//查询已分配数据
+export function queryService(params:any){
+ return request({
+ url: '/feeinstr/query',
+ method: 'get',
+ params
+ })
+}
+
+//查询未分配的项目数据
+export function queryXmService(params:any){
+ return request({
+ url: '/feeinstr/queryXm',
+ method: 'get',
+ params
+ })
+}
+
+//新增数据
+export function addService(params:any){
+ return request({
+ url: '/feeinstr/add',
+ method: 'post',
+ params
+ })
+}
+
+//删除数据
+export function delService(params:any){
+ return request({
+ url: '/feeinstr/del',
+ method: 'delete',
+ params
+ })
+}
\ No newline at end of file
diff --git a/src/api/system/parameter.ts b/src/api/system/parameter.ts
index 1779402..6ecf44c 100644
--- a/src/api/system/parameter.ts
+++ b/src/api/system/parameter.ts
@@ -41,4 +41,13 @@ export function paramTree(query?: Object) {
method: 'get',
params: query,
});
+}
+
+// 查询某个参数
+export function queryOneService(yq: string,xxdh: string) {
+ return request({
+ url: '/param/queryOne',
+ method: 'get',
+ params: {yq,xxdh}
+ });
}
\ No newline at end of file
diff --git a/src/views/liswork/xtwh/xmFeeInstr/index.vue b/src/views/liswork/xtwh/xmFeeInstr/index.vue
new file mode 100644
index 0000000..e53cb18
--- /dev/null
+++ b/src/views/liswork/xtwh/xmFeeInstr/index.vue
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+
+
+ 说明:双击左侧列表,能删除对照数据,双击右边列表能新增数据到对照当中
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+