Browse Source

feat: i18n

main
xingyu 2 years ago
parent
commit
f2ea548f26
  1. 2
      src/views/bpm/task/done/index.vue
  2. 2
      src/views/system/notify/message/index.vue
  3. 2
      src/views/system/notify/my/index.vue

2
src/views/bpm/task/done/index.vue

@ -42,7 +42,7 @@ function handleAudit(record: Recordable) {
<template v-if="column.key === 'action'">
<TableAction
:actions="[
{ icon: IconEnum.VIEW, label: '详情', onClick: openDetail.bind(null, record) },
{ icon: IconEnum.VIEW, label: t('action.detail'), onClick: openDetail.bind(null, record) },
{ icon: IconEnum.VIEW, label: '流程', onClick: handleAudit.bind(null, record) },
]"
/>

2
src/views/system/notify/message/index.vue

@ -42,7 +42,7 @@ function handleShowInfo(record: Recordable) {
<TableAction
:actions="[
{
label: '详情',
label: t('action.detail'),
icon: IconEnum.LOG,
onClick: handleShowInfo.bind(null, record),
},

2
src/views/system/notify/my/index.vue

@ -112,7 +112,7 @@ function handleInfo(record: any) {
},
{
icon: IconEnum.LOG,
label: '详情',
label: t('action.detail'),
onClick: handleInfo.bind(null, record),
},
]"