@@ -351,13 +417,22 @@ function previewHandler(event: MouseEvent) {
-
@@ -377,9 +450,7 @@ function previewHandler(event: MouseEvent) {
@@ -455,7 +530,7 @@ function previewHandler(event: MouseEvent) {
display: flex;
align-items: center;
justify-content: center;
- color: #FFF;
+ color: #fff;
margin-right: 6px;
cursor: pointer;
}
@@ -525,7 +600,7 @@ function previewHandler(event: MouseEvent) {
background: rgba(216, 216, 216, 0.4);
border-radius: 7px;
padding: 10px;
- color: #FFF;
+ color: #fff;
}
.time {
@@ -533,7 +608,7 @@ function previewHandler(event: MouseEvent) {
z-index: 3;
left: 2%;
bottom: 2%;
- color: #FFF;
+ color: #fff;
display: flex;
align-items: center;
}
@@ -547,7 +622,7 @@ function previewHandler(event: MouseEvent) {
display: flex;
align-items: left;
flex-direction: column;
- justify-content: center
+ justify-content: center;
}
}
diff --git a/src/views/task/content/TaskTable.vue b/src/views/task/content/TaskTable.vue
index 0b9754d..7f290cf 100644
--- a/src/views/task/content/TaskTable.vue
+++ b/src/views/task/content/TaskTable.vue
@@ -4,52 +4,20 @@ defineProps({
type: Object as PropType
,
required: true,
},
-})
+ taskTableData: {
+ type: Array,
+ default: () => [[]],
+ },
+});
-
- | 拜访终端名称 |
-
- {{ data?.ocrPicture?.field3 }}
- |
- 定位信息 |
-
- {{ data?.ocrPicture?.field10 }}
- |
-
-
- | 拜访日期 |
- {{ data?.ocrPicture?.field1 }} |
- 定位距离 |
- {{ data?.ocrPicture?.field12 }} |
-
-
- | 拜访小结 |
- {{ data?.ocrPicture?.field8 }} |
- 拜访项目类别 |
- {{ data?.ocrPicture?.field17 }} |
-
-
- | 科室名称 |
- {{ data?.ocrPicture?.field7 }} |
- 病例号 |
- |
-
-
- | 拜访级别 |
- {{ data?.ocrPicture?.field6 }} |
- 下阶段计划 |
- |
-
-
- | 是否为重复图片 |
- {{ data?.ocrPicture?.field14 }} |
- 附件信息 |
-
-
- |
+
+ | {{ item[0]["label"] }} |
+ {{ item[0]["value"] }} |
+ {{ item[1]["label"] }} |
+ {{ item[1]["value"] }} |
diff --git a/src/views/task/modal/CustomSettingModal.vue b/src/views/task/modal/CustomSettingModal.vue
index 5e5dd78..a0fcf60 100644
--- a/src/views/task/modal/CustomSettingModal.vue
+++ b/src/views/task/modal/CustomSettingModal.vue
@@ -104,6 +104,7 @@ async function handleSumbit(e: MouseEvent) {
userField += `${v.id},`;
}
});
+ userField = userField.slice(0,userField.length-1);
savefield(props.reviewType, userInfo.id, userField);
e.preventDefault();
closeModal();
diff --git a/src/views/worksheet/modal/CustomFieldModal.vue b/src/views/worksheet/modal/CustomFieldModal.vue
index f3322e5..0676f17 100644
--- a/src/views/worksheet/modal/CustomFieldModal.vue
+++ b/src/views/worksheet/modal/CustomFieldModal.vue
@@ -104,6 +104,7 @@ async function handleSumbit(e: MouseEvent) {
onList.value.map((v) => {
userField += `${v.id},`;
});
+ userField = userField.slice(0,userField.length-1);
savefield(props.reviewType, userInfo.id, userField);
e.preventDefault();
closeModal();