diff --git a/src/api/liswork/order/index.ts b/src/api/liswork/order/index.ts new file mode 100644 index 0000000..bef75bf --- /dev/null +++ b/src/api/liswork/order/index.ts @@ -0,0 +1,62 @@ +// @ts-ignore +import request from '@/utils/request' + + +//获取项目信息 +export function queryXmInfoList(query: any) { + return request({ + url: '/reqInput/queryXmInfoList', + method: 'get', + params: query + }) +} +//保存病人信息 +export function saveReqInfo(query: any) { + return request({ + url: '/reqInput/saveReqInfo', + method: 'post', + data: query + }) +} +//保存病人信息 +export function queryPatList(query: any) { + return request({ + url: '/reqInput/queryPatList', + method: 'post', + data: query + }) +} +//查询病人信息 +export function queryPatInfo(query: any) { + return request({ + url: '/reqInput/queryPatInfo', + method: 'get', + params: query + }) +} + +//不可开单项目列表 +export function queryCreateReqList(query: any) { + return request({ + url: '/reqInput/queryCreateReqList', + method: 'get', + params: query + }) +} + +//可开单项目列表 +export function queryCanCreateReqList(query: any) { + return request({ + url: '/reqInput/queryCanCreateReqList', + method: 'get', + params: query + }) +} +//保存可开单项目 +export function saveCanCreaeReqList(query: any) { + return request({ + url: '/reqInput/saveCanCreaeReqList', + method: 'post', + data: query + }) +} \ No newline at end of file diff --git a/src/assets/styles/ruoyi.scss b/src/assets/styles/ruoyi.scss index d87144a..c295223 100644 --- a/src/assets/styles/ruoyi.scss +++ b/src/assets/styles/ruoyi.scss @@ -175,7 +175,7 @@ word-break: break-word; background-color: #1F6DD3 !important; color: #FFF; - height: 1.6875rem !important; + height: 1.875rem !important; font-size: .8125rem; } } @@ -213,8 +213,8 @@ .el-table__body-wrapper .el-table-column--selection>.cell { padding: 0 !important; - height: 1.875rem; - line-height: 1.875rem; + height: 1.8125rem; + line-height: 1.8125rem; } .el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell { @@ -224,8 +224,8 @@ .cell.el-tooltip { padding: 0 !important; - height: 1.875rem; - line-height: 1.875rem; + height: 1.8125rem; + line-height: 1.8125rem; } .el-table-header-cell .cell { @@ -241,8 +241,8 @@ .el-table__cell { padding: 0 !important; - height: 1.875rem; - line-height: 1.875rem; + height: 1.8125rem; + line-height: 1.8125rem; } .el-checkbox { diff --git a/src/views/liswork/Issueorder/components/info.vue b/src/views/liswork/Issueorder/components/info.vue index afa3651..d755b3f 100644 --- a/src/views/liswork/Issueorder/components/info.vue +++ b/src/views/liswork/Issueorder/components/info.vue @@ -1,93 +1,97 @@ \ No newline at end of file diff --git a/src/views/liswork/Issueorder/index.vue b/src/views/liswork/Issueorder/index.vue index 2070287..0619c26 100644 --- a/src/views/liswork/Issueorder/index.vue +++ b/src/views/liswork/Issueorder/index.vue @@ -9,12 +9,47 @@
- - - + + + 保存 + 新增 + 删除 - - + +
+ 项目检索:   + 开单项目 +
+
+
+ + + + + +
+ +
+
+ + + +
@@ -22,7 +57,6 @@
- @@ -35,10 +69,10 @@ - - +   -  - @@ -51,28 +85,58 @@ :scrollYConfig="{ enabled: true, rSize: 30, height: '100%', }" :row-style="rowStyle" :cell-style="cellStyle" class="mytable-style" ref="tableRef" :enable-column-drag="true" @column-drag-end="handleColumnDragEnd"> + + + + + + +
+ + + + @@ -141,4 +335,38 @@ onMounted(() => { .el-form-item { margin-bottom: 5px; } + +.top-box { + border-bottom: 1px solid #E6E9ED; + padding-bottom: 2px; +} + +.xmBoxs { + :deep(.el-checkbox__label) {} + + height: 60%; + overflow-y: auto; + + &::-webkit-scrollbar { + width: 8px; + height: 8px; + } + + &::-webkit-scrollbar-thumb { + background: #817e7e; + border-radius: 4px; + } +} + +.tips { + font-style: 15px; + color: #123d64; + font-weight: 600; +} + +.title { + font-size: 14px; + color: #000; + font-weight: 700; +} \ No newline at end of file diff --git a/src/views/liswork/micro/labpat.vue b/src/views/liswork/micro/labpat.vue index 5672d8f..2ea613c 100644 --- a/src/views/liswork/micro/labpat.vue +++ b/src/views/liswork/micro/labpat.vue @@ -354,6 +354,11 @@ onMounted(() => { .check_box { :deep(.el-checkbox__input.is-checked+.el-checkbox__label) { color: #f00 !important; + font-size: .875rem; + } + + :deep(.el-checkbox__label) { + font-size: .875rem; } } diff --git a/src/views/liswork/work/labpat.vue b/src/views/liswork/work/labpat.vue index 6f2dc7d..f5f4337 100644 --- a/src/views/liswork/work/labpat.vue +++ b/src/views/liswork/work/labpat.vue @@ -348,6 +348,11 @@ onMounted(() => { .check_box { :deep(.el-checkbox__input.is-checked+.el-checkbox__label) { color: #f00 !important; + font-size: .875rem; + } + + :deep(.el-checkbox__label) { + font-size: .875rem; } }