diff --git a/src/api/liswork/work/LisWork.ts b/src/api/liswork/work/LisWork.ts
index 2068fbf..c5459d1 100644
--- a/src/api/liswork/work/LisWork.ts
+++ b/src/api/liswork/work/LisWork.ts
@@ -273,3 +273,12 @@ export function getGroupInstrdList(query?: Object) {
params: query
})
}
+// 结果修改记录
+export function getresultchangelog(query?: Object) {
+ return request({
+ url: '/liswork/getresultchangelog',
+ method: 'get',
+ params: query
+ })
+}
+
diff --git a/src/assets/styles/ruoyi.scss b/src/assets/styles/ruoyi.scss
index f9754e7..693bf2e 100644
--- a/src/assets/styles/ruoyi.scss
+++ b/src/assets/styles/ruoyi.scss
@@ -316,6 +316,29 @@
border-color: #aef5ef;
}
+ // 表格input宽度
+ .full-width-input .el-input__inner {
+ width: 100%;
+ height: 100%;
+
+ background: transparent !important;
+ border: none !important;
+ }
+
+ .full-width-input {
+ .el-input__wrapper {
+ // box-shadow: 0 0 0 1px rgba(64, 158, 255, 0.2);
+ box-shadow: none;
+ background: transparent !important;
+ padding: 0 !important;
+ outline: none;
+
+ &:hover {
+ box-shadow: none !important;
+ }
+ }
+ }
+
/** 表单布局 **/
.form-header {
diff --git a/src/views/liswork/work/combination/index.vue b/src/views/liswork/work/combination/index.vue
index 04afe15..3249bd2 100644
--- a/src/views/liswork/work/combination/index.vue
+++ b/src/views/liswork/work/combination/index.vue
@@ -5,7 +5,7 @@
-
+
diff --git a/src/views/liswork/work/components/labresult.vue b/src/views/liswork/work/components/labresult.vue
index 1112341..8d44203 100644
--- a/src/views/liswork/work/components/labresult.vue
+++ b/src/views/liswork/work/components/labresult.vue
@@ -19,17 +19,17 @@
-
+
{{ $index + 1 }}
- 修改前结果:
- 修改日期:
- 修改人:
- 上次审核时间:
- 上次审核人:
+ 修改前结果:{{ lastResult.csjg }}
+ 修改日期:{{ lastResult.xgrq }}
+ 修改人:{{ formatYs(lastResult.xgr) }}
+ 上次审核时间:{{ lastResult.shsj }}
+ 上次审核人:{{ formatYs(lastResult.shys) }}
@@ -159,13 +159,18 @@
@@ -798,27 +813,4 @@ watch(
.custom-table-container {
flex: 1;
}
-
-
-.full-width-input .el-input__inner {
- width: 100%;
- height: 100%;
-
- background: transparent !important;
- border: none !important;
-}
-
-.full-width-input {
- :deep(.el-input__wrapper) {
- // box-shadow: 0 0 0 1px rgba(64, 158, 255, 0.2);
- box-shadow: none;
- background: transparent !important;
- padding: 0 !important;
- outline: none;
-
- &:hover {
- box-shadow: none !important;
- }
- }
-}
diff --git a/src/views/liswork/work/reexamination/index.vue b/src/views/liswork/work/reexamination/index.vue
index 3e33297..050e276 100644
--- a/src/views/liswork/work/reexamination/index.vue
+++ b/src/views/liswork/work/reexamination/index.vue
@@ -1,10 +1,17 @@
+
+ 新增
+ 保存
+
-
+
-
+
+
+
+
+
删除
@@ -44,6 +51,10 @@ const getReexamination = () => {
watch(() => queryParams.value, () => {
getReexamination();
}, { immediate: true })
+
+const handleCsjgEnter = (row: any) => {
+ console.log('复查结果修改', row);
+}