diff --git a/src/api/system/dictionary.ts b/src/api/system/dictionary.ts
index 451d1a24..1cf9ab26 100644
--- a/src/api/system/dictionary.ts
+++ b/src/api/system/dictionary.ts
@@ -29,6 +29,12 @@ export const deleteDictionary =(id:string) => request.delete(`/dictionary/${id}`
*/
export const queryDicItem = (data:any)=>request.post('/dictionary-item/_query',data)
+/**
+ * 查询字典项不分页
+ */
+export const queryDicItemNoPage = (data:any) => request.post('/dictionary-item/_query/no-paging',data)
+
+
/**
* 保存字典项
*/
diff --git a/src/views/account/Center/components/StationMessage/components/NotificationRecord/components/ViewDialog.vue b/src/views/account/Center/components/StationMessage/components/NotificationRecord/components/ViewDialog.vue
index f327f525..a31b86a9 100644
--- a/src/views/account/Center/components/StationMessage/components/NotificationRecord/components/ViewDialog.vue
+++ b/src/views/account/Center/components/StationMessage/components/NotificationRecord/components/ViewDialog.vue
@@ -11,7 +11,7 @@
+ v-else-if="['workflow-task-cc', 'workflow-task-todo', 'workflow-task-reject', 'workflow-process-finish', 'workflow-process-repealed','workflow-task-transfer-todo'].includes(data?.topicProvider)">
{
} else if (props.type === 'system-monitor') {
return ['system-event'];
} else if(props.type === 'workflow-notification'){
- return ['workflow-task-cc','workflow-task-todo','workflow-task-reject', 'workflow-process-finish', 'workflow-process-repealed']
+ return ['workflow-task-cc','workflow-task-todo','workflow-task-reject', 'workflow-process-finish', 'workflow-process-repealed','workflow-task-transfer-todo']
}
else {
return [
diff --git a/src/views/account/Center/components/data.ts b/src/views/account/Center/components/data.ts
index d79b38e3..b4639874 100644
--- a/src/views/account/Center/components/data.ts
+++ b/src/views/account/Center/components/data.ts
@@ -77,6 +77,10 @@ const workflowNotice = [
provider: 'workflow-process-repealed',
name: '关闭通知',
},
+ {
+ provider: 'workflow-task-transfer-todo',
+ name: '转办通知'
+ }
],
},
]
diff --git a/src/views/account/Center/index.vue b/src/views/account/Center/index.vue
index 2e9bf1cc..1520822d 100644
--- a/src/views/account/Center/index.vue
+++ b/src/views/account/Center/index.vue
@@ -251,7 +251,7 @@ onUnmounted(() => {
.person-content-item {
padding: 10px 20px;
background-color: #fff;
- overflow: hidden;
+ // overflow: hidden;
}
.person-content {
@@ -261,7 +261,7 @@ onUnmounted(() => {
}
.person-content-item-content {
- height: calc(100vh - 251px);
+ // height: calc(100vh - 251px);
width: 100%;
padding: 10px 0;
}
diff --git a/src/views/system/Dictionary/components/Right/index.vue b/src/views/system/Dictionary/components/Right/index.vue
index 6b3bc8e1..49723fce 100644
--- a/src/views/system/Dictionary/components/Right/index.vue
+++ b/src/views/system/Dictionary/components/Right/index.vue
@@ -42,7 +42,7 @@