Commit bdb147dd57c0be3cc20430c2fed15e5507060be0
1 parent
08318c3b
fix:增大按钮间距
Showing
1 changed file
with
8 additions
and
4 deletions
src/views/community/housekeeper/index.vue
| ... | ... | @@ -194,12 +194,12 @@ watchEffect(() => { |
| 194 | 194 | query: { buildingId: scope.row.id }, |
| 195 | 195 | }" |
| 196 | 196 | > |
| 197 | - <el-button type="text" size="mini">房屋管理</el-button> | |
| 197 | + <el-button type="text" size="mini" class="btn">房屋管理</el-button> | |
| 198 | 198 | </router-link> |
| 199 | - <el-button type="text" size="mini" @click="edit(scope.row)" | |
| 199 | + <el-button type="text" size="mini" @click="edit(scope.row)" class="btn" | |
| 200 | 200 | >编辑</el-button |
| 201 | 201 | > |
| 202 | - <el-button type="text" size="mini" @click="remove(scope.row.id)" | |
| 202 | + <el-button type="text" size="mini" @click="remove(scope.row.id)" class="btn" | |
| 203 | 203 | >删除</el-button |
| 204 | 204 | > |
| 205 | 205 | </template> |
| ... | ... | @@ -246,4 +246,8 @@ watchEffect(() => { |
| 246 | 246 | </div> |
| 247 | 247 | </template> |
| 248 | 248 | |
| 249 | -<style></style> | |
| 249 | +<style scoped> | |
| 250 | +.btn{ | |
| 251 | + margin-left:8px | |
| 252 | +} | |
| 253 | +</style> | ... | ... |