Commit 01ac4e867dbb75d98dc1e8cd4dfc1acc6f47d130
1 parent
b0ac8d7c
fix bug
Showing
2 changed files
with
5 additions
and
5 deletions
src/views/community/houses/index.vue
| ... | ... | @@ -158,7 +158,7 @@ watchEffect(() => { |
| 158 | 158 | <el-table-column label="房间号" prop="roomNumber"></el-table-column> |
| 159 | 159 | <el-table-column label="建筑面积" prop="grossArea"></el-table-column> |
| 160 | 160 | <el-table-column label="使用面积" prop="useArea"></el-table-column> |
| 161 | - <el-table-column label="操作" width="350px"> | |
| 161 | + <el-table-column label="操作" width="380px"> | |
| 162 | 162 | <template #default="scope"> |
| 163 | 163 | <el-button |
| 164 | 164 | type="text" |
| ... | ... | @@ -173,7 +173,7 @@ watchEffect(() => { |
| 173 | 173 | >取消绑定</el-button |
| 174 | 174 | > |
| 175 | 175 | |
| 176 | - <el-button type="text" size="mini" @click="check(scope.row.id)" | |
| 176 | + <el-button type="text" size="mini" @click="check(scope.row.id)" style="margin-left:10px" | |
| 177 | 177 | >查看房屋</el-button |
| 178 | 178 | > |
| 179 | 179 | <router-link |
| ... | ... | @@ -182,10 +182,10 @@ watchEffect(() => { |
| 182 | 182 | query: { houseId: scope.row.id }, |
| 183 | 183 | }" |
| 184 | 184 | > |
| 185 | - <el-button type="text" size="mini">查看业主</el-button> | |
| 185 | + <el-button type="text" size="mini" style="margin-left:10px">查看业主</el-button> | |
| 186 | 186 | </router-link> |
| 187 | 187 | |
| 188 | - <el-button type="text" size="mini" @click="remove(scope.row.id)" | |
| 188 | + <el-button type="text" size="mini" @click="remove(scope.row.id)" style="margin-left:10px" | |
| 189 | 189 | >删除</el-button |
| 190 | 190 | > |
| 191 | 191 | </template> | ... | ... |