diff --git a/src/api/checkCode/index.ts b/src/api/checkCode/index.ts
index 3c4cf73..180d284 100644
--- a/src/api/checkCode/index.ts
+++ b/src/api/checkCode/index.ts
@@ -54,9 +54,9 @@ export function fetchCodeReqmain(query?: Object) {
// 查询报告单列表
export function reportList(query?: Object) {
return request({
- url: '/report/ReportList',
- method: 'post',
- data: query,
+ url: '/transitLisReport/lisReportList',
+ method: 'get',
+ params: query,
});
}
// 查询报告Pdf预览
@@ -70,25 +70,25 @@ export function reportViewPdf(query?: Object) {
// 查询报告Pdf打印
export function reportPrintPdf(query?: Object) {
return request({
- url: '/report/print',
- method: 'post',
- data: query,
+ url: '/transitLisReport/printLisReport',
+ method: 'get',
+ params: query,
});
}
// 查询项目报告
export function reportResult(query?: Object) {
return request({
- url: '/report/result',
- method: 'post',
- data: query,
+ url: '/transitLisReport/reportDetail',
+ method: 'get',
+ params: query,
});
}
// 查询微生物报告
export function reportMedList(query?: Object) {
return request({
- url: '/report/MedList',
- method: 'post',
- data: query,
+ url: '/transitLisReport/reportDetailMed',
+ method: 'get',
+ params: query,
});
}
// 查询微生物报告
diff --git a/src/assets/images/profile.jpg b/src/assets/images/profile.jpg
index b3a940b..bcc14d3 100644
Binary files a/src/assets/images/profile.jpg and b/src/assets/images/profile.jpg differ
diff --git a/src/views/liswork/Issueorder/index.vue b/src/views/liswork/Issueorder/index.vue
index 7e5384f..bce46bd 100644
--- a/src/views/liswork/Issueorder/index.vue
+++ b/src/views/liswork/Issueorder/index.vue
@@ -32,7 +32,7 @@
-
+
@@ -48,9 +48,9 @@
{{itemclassList.find((item) => item.itemclassCode == row.newitemclass)?.itemclassName}}
-
+
+
共有{{ barcodes }}个样本类型
@@ -270,14 +271,12 @@ const handleQuery = () => {
)
labPatList.value = tableData.value
- if (!labpat.value.status) {
- const item = res.data.find(item => item.patId == labpat.value.patId)
+ const item = res.data.find(item => item.patId == labpat.value.patId)
- nextTick(() => {
- tableRef.value.setCurrentRow(item)
- handleRowClick({ row: item })
- })
- }
+ nextTick(() => {
+ tableRef.value.setCurrentRow(item)
+ handleRowClick({ row: item })
+ })
})
}
// 获取病人代号查询信息
@@ -453,7 +452,7 @@ const sqXmColumns = ref([
{ field: 'newitemclass', title: '类别', align: 'center', width: 100, slotName: 'newitemclass', resizable: true },
{ field: 'newitemclass_tips', title: '采样提示', align: 'center', width: 80, resizable: true },
{ field: 'itemname', title: '简称', align: 'center', resizable: true },
- { field: 'newbarcode', title: '条码号', align: 'center', width: 120, resizable: true, headerSlot: 'newbarcode' },
+ { field: 'newbarcode', title: '条码号', align: 'center', width: 120, resizable: true, },
{ field: 'amount', title: '单价', align: 'center', width: 60, resizable: true },
{ field: 'itemclass_yblx', title: '样本', align: 'center', width: 80, slotName: 'itemclass_yblx', resizable: true },
{ field: 'status', title: '状态', align: 'center', resizable: true, width: 80, slotName: 'status' },
@@ -484,12 +483,11 @@ const sqxmCzList = computed(() => {
// 数据分组
const { tableData } = useGroupTableData(
sqXmList.value,
- 'itemclass',
+ 'barcode',
['newitemclass', 'newbarcode', 'newitemclass_tips'],
'orderDate',
['itemclass', 'barcode', 'itemclass_tips'],
)
-
return tableData.value
})
@@ -562,6 +560,12 @@ const getXmList = () => {
getXmItemInfo().then(res => {
processedTableData.value = processTableData(res.data);
filterData.value = [...processedTableData.value]
+
+ listregdict({ dictType: 'CLASS' }).then(response => {
+ xmdlList.value = response.rows;
+ activeName.value = xmdlList.value.length > 0 ? xmdlList.value[0].dictCode : '';
+ handleTabClick({ paneName: activeName.value });
+ });
})
}
@@ -569,14 +573,10 @@ const itemclassList = ref([]) // 容器类别
onMounted(() => {
- changeDays(3)
getXmList()
+ changeDays(3)
getDictData('PT', 'SX', 'AU', 'ZT', 'ZJLX', 'DEPT', 'DOCTOR', 'SLZQ', 'BT', 'SQDZT')
- listregdict({ dictType: 'CLASS' }).then(response => {
- xmdlList.value = response.rows;
- activeName.value = xmdlList.value.length > 0 ? xmdlList.value[0].dictCode : '';
- handleTabClick({ paneName: activeName.value });
- });
+
listitemclass({ pageSize: 9999, pageNum: 1 }).then(response => {
itemclassList.value = response.rows;
})
@@ -643,6 +643,13 @@ onMounted(() => {
font-weight: 600;
}
+.yblxtext {
+ font-style: 15px;
+ color: #123d64;
+ font-weight: 600;
+ text-align: center;
+}
+
.title {
font-size: 14px;
color: #000;
diff --git a/src/views/login.vue b/src/views/login.vue
index 414b469..e80290b 100644
--- a/src/views/login.vue
+++ b/src/views/login.vue
@@ -28,7 +28,7 @@
-
+
diff --git a/src/views/regional/circulation/bbqs/index.vue b/src/views/regional/circulation/bbqs/index.vue
index 2660022..cd5aba1 100644
--- a/src/views/regional/circulation/bbqs/index.vue
+++ b/src/views/regional/circulation/bbqs/index.vue
@@ -96,7 +96,6 @@ const queryParams = ref({
pageNum: 1,
srcHospName: userStore.sysLoginParam.loginYLJGName,
times: [],
- status: 50
})
const tableData = ref([])
const columns = ref([
diff --git a/src/views/regional/dict/itemclass/index.vue b/src/views/regional/dict/itemclass/index.vue
index e88ddfb..7917418 100644
--- a/src/views/regional/dict/itemclass/index.vue
+++ b/src/views/regional/dict/itemclass/index.vue
@@ -40,7 +40,11 @@
:cell-style="tableCellStyle" height="calc(100vh - 250px)">
-
+
+
+ {{xmdlList.find(item => item.dictCode == scope.row.classid)?.dictName}}
+
+
@@ -49,7 +53,7 @@
-
+
@@ -76,7 +80,7 @@
-
+
diff --git a/src/views/regional/dict/itemvs/index.vue b/src/views/regional/dict/itemvs/index.vue
index de17369..5e9fce9 100644
--- a/src/views/regional/dict/itemvs/index.vue
+++ b/src/views/regional/dict/itemvs/index.vue
@@ -4,7 +4,7 @@
+ showOverflowTooltip :cell-style="cellStyle" height="80vh" style="width: 100%;">
@@ -14,7 +14,7 @@
+ showOverflowTooltip style="width: 100%;" height="80vh" border>
@@ -36,7 +36,7 @@
+ showOverflowTooltip height="80vh" border style="width: 100%;">
{{leftTableData.find(item => item.itemclassCode === row.itemclass)?.itemclassName}}
diff --git a/src/views/regional/dict/regdictxm/index.vue b/src/views/regional/dict/regdictxm/index.vue
index e3d8d07..74d7ca1 100644
--- a/src/views/regional/dict/regdictxm/index.vue
+++ b/src/views/regional/dict/regdictxm/index.vue
@@ -30,7 +30,7 @@
-
@@ -168,7 +168,9 @@ function cancel() {
}
/** 表单重置 */
function reset() {
- form.value = {};
+ form.value = {
+ status: "0"
+ };
proxy.resetForm("postRef");
}
/** 搜索按钮操作 */
diff --git a/src/views/regional/inspectionReport/report/index.vue b/src/views/regional/inspectionReport/report/index.vue
index 8a3eb1b..cd03143 100644
--- a/src/views/regional/inspectionReport/report/index.vue
+++ b/src/views/regional/inspectionReport/report/index.vue
@@ -72,62 +72,64 @@
-
-
+
+
-
+
-
-
- 打印报告
+ 打印报告
-
-
-
-
-
-
- 武汉市汉阳区江堤街社区卫生服务中心
-
-
- {{ row.alarmflag == 1 ? '危' : '' }}
-
-
- {{ row.jzbz == 1 ? '急' : '' }}
-
-
+
+
+
+
+
+
+ {{ row.alarmflag == 1 ? '危' : '' }}
+
+
+ {{ row.jzbz == 1 ? '急' : '' }}
+
+
+
+
+
+
- 对比历史
+
-
-
-
- {{ formatJgbz(row.jgbz) }}
-
-
-
+
+
+
+ {{ formatJgbz(row.jgbz) }}
+
+
+
-
-
-
+
+
+
+
@@ -170,24 +172,15 @@