This commit is contained in:
shaohaojiecoder
2020-02-08 22:27:56 +08:00
parent 07814b85f9
commit bd82a0e27c
33 changed files with 147 additions and 85 deletions

View File

@@ -38,7 +38,7 @@
@click="() => handleReset(clearFilters, column)"
size="small"
style="width: 90px"
>重置</a-button>
>{{ $t('button.reset') }}</a-button>
</div>
<a-icon slot="filterIcon" slot-scope="filtered" type="search" :style="{ color: filtered ? '#108ee9' : undefined }" />
@@ -71,7 +71,7 @@
<span slot="action" slot-scope="text, record">
<template>
<a @click="handleEdit(record)">编辑</a>
<a @click="handleEdit(record)">{{ $t('tip.edit') }}</a>
<a-divider type="vertical"/>
<a-popconfirm
@@ -81,7 +81,7 @@
okText=""
cancelText=""
>
<a>删除</a>
<a>{{ $t('tip.delete') }}</a>
</a-popconfirm>
</template>
</span>