Skip to content

Commit 6ffb423

Browse files
author
zhongzhenlong
committed
finished
1 parent 3dc962d commit 6ffb423

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
"node": ">= 4.0.0",
9191
"npm": ">= 3.0.0"
9292
},
93-
"browserlist": [
93+
"browserslist": [
9494
"> 1%",
9595
"last 2 versions",
9696
"not ie <= 8"

src/pages/layout/header.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,10 @@
285285
min-width: 50px;
286286
text-align: center;
287287
}
288+
.navbar-custom-menu .el-dropdown-link img{
289+
background-color: #108ee9;
290+
}
291+
288292
.navbar-custom-menu .el-dropdown-link:hover{
289293
background: #f9f9f9;
290294
}

src/pages/sys/user.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</el-table-column>
3333
<el-table-column
3434
label="照片" width="76">
35-
<template scope="scope">
35+
<template slot-scope="scope">
3636
<img :src='scope.row.avatar' style="height: 35px;vertical-align: middle;" alt="">
3737
</template>
3838
</el-table-column>
@@ -50,12 +50,12 @@
5050
</el-table-column>
5151
<el-table-column
5252
label="状态">
53-
<template scope="scope">
53+
<template slot-scope="scope">
5454
{{ scope.row.status===1 ? '已激活' : '未激活' }}
5555
</template>
5656
</el-table-column>
5757
<el-table-column label="操作" width="285">
58-
<template scope="scope">
58+
<template slot-scope="scope">
5959
<el-button
6060
size="small"
6161
type="default"

0 commit comments

Comments
 (0)