mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-15 14:03:36 +08:00
perf: 规范注册本地图标时的命名规则,使其更好地配合图标选择器
This commit is contained in:
@@ -86,7 +86,7 @@ const optionsIcon: Array<OptionsType> = [
|
||||
},
|
||||
{
|
||||
label: "周三",
|
||||
icon: "terminalWindowLine"
|
||||
icon: "ri:terminal-window-line"
|
||||
},
|
||||
{
|
||||
label: "周四"
|
||||
@@ -103,7 +103,7 @@ const optionsOnlyIcon: Array<OptionsType> = [
|
||||
icon: HomeFilled
|
||||
},
|
||||
{
|
||||
icon: "terminalWindowLine"
|
||||
icon: "ri:terminal-window-line"
|
||||
},
|
||||
{
|
||||
icon: "streamline-emojis:cow-face"
|
||||
@@ -131,7 +131,7 @@ const optionsLabel: Array<OptionsType> = [
|
||||
{
|
||||
label: () => (
|
||||
<div>
|
||||
{h(useRenderIcon("terminalWindowLine"), {
|
||||
{h(useRenderIcon("ri:terminal-window-line"), {
|
||||
class: "m-auto mt-1 w-[18px] h-[18px]"
|
||||
})}
|
||||
<p>周二</p>
|
||||
|
||||
@@ -110,7 +110,7 @@ const handleManageProduct = product => {
|
||||
<el-icon class="el-input__icon">
|
||||
<IconifyIconOffline
|
||||
v-show="searchValue.length === 0"
|
||||
icon="search"
|
||||
icon="ri:search-line"
|
||||
/>
|
||||
</el-icon>
|
||||
</template>
|
||||
|
||||
@@ -58,7 +58,7 @@ const {
|
||||
<el-form-item>
|
||||
<el-button
|
||||
type="primary"
|
||||
:icon="useRenderIcon('search')"
|
||||
:icon="useRenderIcon('ri:search-line')"
|
||||
:loading="loading"
|
||||
@click="onSearch"
|
||||
>
|
||||
|
||||
@@ -48,7 +48,7 @@ const {
|
||||
<el-form-item>
|
||||
<el-button
|
||||
type="primary"
|
||||
:icon="useRenderIcon('search')"
|
||||
:icon="useRenderIcon('ri:search-line')"
|
||||
:loading="loading"
|
||||
@click="onSearch"
|
||||
>
|
||||
|
||||
@@ -74,7 +74,7 @@ const {
|
||||
<el-form-item>
|
||||
<el-button
|
||||
type="primary"
|
||||
:icon="useRenderIcon('search')"
|
||||
:icon="useRenderIcon('ri:search-line')"
|
||||
:loading="loading"
|
||||
@click="onSearch"
|
||||
>
|
||||
|
||||
@@ -95,7 +95,7 @@ const {
|
||||
<el-form-item>
|
||||
<el-button
|
||||
type="primary"
|
||||
:icon="useRenderIcon('search')"
|
||||
:icon="useRenderIcon('ri:search-line')"
|
||||
:loading="loading"
|
||||
@click="onSearch"
|
||||
>
|
||||
|
||||
@@ -110,7 +110,7 @@ defineExpose({ onTreeReset });
|
||||
<el-icon class="el-input__icon">
|
||||
<IconifyIconOffline
|
||||
v-show="searchValue.length === 0"
|
||||
icon="search"
|
||||
icon="ri:search-line"
|
||||
/>
|
||||
</el-icon>
|
||||
</template>
|
||||
|
||||
@@ -36,7 +36,7 @@ const { loading, columns, dataList, pagination, Empty, onCurrentChange } =
|
||||
circle
|
||||
size="small"
|
||||
:title="`查看序号为${row.id}的详情`"
|
||||
:icon="useRenderIcon('search')"
|
||||
:icon="useRenderIcon('ri:search-line')"
|
||||
/>
|
||||
</template>
|
||||
</pure-table>
|
||||
|
||||
Reference in New Issue
Block a user