File tree Expand file tree Collapse file tree 1 file changed +9
-13
lines changed Expand file tree Collapse file tree 1 file changed +9
-13
lines changed Original file line number Diff line number Diff line change 49
49
/>
50
50
</el-form-item >
51
51
<el-form-item >
52
- <!-- TODO 按钮图标不对 已解决 -->
53
- <el-button type =" primary" :icon =" Search" @click =" handleQuery" >搜索</el-button >
54
- <el-button :icon =" Refresh" @click =" resetQuery" >重置</el-button >
52
+ <el-button type =" primary" @click =" handleQuery" >
53
+ <Icon icon =" ep:search" class =" mr-5px" /> 搜索
54
+ </el-button >
55
+ <el-button @click =" resetQuery" ><Icon icon =" ep:refresh" class =" mr-5px" /> 重置</el-button >
55
56
</el-form-item >
56
57
</el-form >
57
58
63
64
<el-button
64
65
type =" primary"
65
66
plain
66
- :icon =" Plus"
67
67
@click =" openModal('create')"
68
68
v-hasPermi =" ['infra:config:create']"
69
69
>
70
- 新增
70
+ < Icon icon = " ep:plus " class = " mr-5px " /> 新增
71
71
</el-button >
72
72
</el-col >
73
- <!-- TODO 芋艿,图标不对 已解决 -->
74
73
<el-col :span =" 1.5" >
75
74
<el-button
76
75
type =" warning"
77
- :icon =" Download"
78
76
@click =" handleExport"
79
77
:loading =" exportLoading"
80
78
v-hasPermi =" ['infra:config:export']"
81
79
>
82
- 导出
80
+ < Icon icon = " ep:download " class = " mr-5px " /> 导出
83
81
</el-button >
84
82
</el-col >
85
83
<!-- TODO 芋艿:右侧导航 -->
111
109
<span >{{ dayjs(scope.row.createTime).format('YYYY-MM-DD HH:mm:ss') }}</span >
112
110
</template >
113
111
</el-table-column >
114
- <!-- TODO 芋艿:icon 有问题,会换行 已解决 -->
112
+ <!-- TODO 芋艿:宽度;里面的 css -->
115
113
<el-table-column label =" 操作" align =" center" class-name =" small-padding fixed-width" >
116
114
<template #default =" scope " >
117
115
<el-button
118
116
link
119
117
type =" primary"
120
- :icon =" Edit"
121
118
@click =" openModal('update', scope.row.id)"
122
119
v-hasPermi =" ['infra:config:update']"
123
120
>
124
- 修改
121
+ < Icon icon = " ep:edit " /> 修改
125
122
</el-button >
126
123
<el-button
127
124
link
128
125
type =" primary"
129
- :icon =" Delete"
130
126
@click =" handleDelete(scope.row)"
131
127
v-hasPermi =" ['infra:config:delete']"
132
128
>
133
- 删除
129
+ < Icon icon = " ep:delete " /> 删除
134
130
</el-button >
135
131
</template >
136
132
</el-table-column >
You can’t perform that action at this time.
0 commit comments