Commit 0a6e7a56 authored by 盖献康's avatar 盖献康

检查管理-代码生成加修改布局

parent 4427adc2
import request from '@/utils/request'
// 查询业务管理-检查管理列表
export function listManage(query) {
return request({
url: '/business/manage/list',
method: 'get',
params: query
})
}
// 查询业务管理-检查管理详细
export function getManage(id) {
return request({
url: '/business/manage/' + id,
method: 'get'
})
}
// 新增业务管理-检查管理
export function addManage(data) {
return request({
url: '/business/manage',
method: 'post',
data: data
})
}
// 修改业务管理-检查管理
export function updateManage(data) {
return request({
url: '/business/manage',
method: 'put',
data: data
})
}
// 删除业务管理-检查管理
export function delManage(id) {
return request({
url: '/business/manage/' + id,
method: 'delete'
})
}
...@@ -300,6 +300,16 @@ export const constantRoutes = [ ...@@ -300,6 +300,16 @@ export const constantRoutes = [
meta: { meta: {
title: '挂号详情', icon: 'component' title: '挂号详情', icon: 'component'
} }
},
// 检查管理
{
path: 'medical-record-management',
component: () => import('@/views/service-management/medical-record-management/medical-record-management.vue'),
name: 'medicalRecordManagement',
props: true,
meta: {
title: '检查管理', icon: 'component'
}
} }
] ]
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment