|
@@ -7,10 +7,25 @@
|
|
|
<div class="right-menu">
|
|
|
<el-dropdown class="avatar-container" trigger="click">
|
|
|
<div class="avatar-wrapper">
|
|
|
- <img src="https://pic.rmb.bdstatic.com/bjh/840702eef7eb4f6196853a99323c87cb.png" class="user-avatar">
|
|
|
+ <p>当前所属门店:</p>
|
|
|
<i class="el-icon-caret-bottom"/>
|
|
|
</div>
|
|
|
- <el-dropdown-menu slot="dropdown" class="user-dropdown">
|
|
|
+ <el-dropdown-menu slot="dropdown">
|
|
|
+ <el-dropdown-item
|
|
|
+ v-for="item in outletList"
|
|
|
+ :key="item.id"
|
|
|
+ @click.native="handleSelectOutlet(item)">
|
|
|
+ <span style="display:block;">{{ item.bar_name }}</span>
|
|
|
+ </el-dropdown-item>
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </el-dropdown>
|
|
|
+ <i style="margin-right: 30px;"></i>
|
|
|
+ <el-dropdown class="avatar-container" trigger="click">
|
|
|
+ <div class="avatar-wrapper">
|
|
|
+ <p>{{ name }}</p>
|
|
|
+ <i class="el-icon-caret-bottom"/>
|
|
|
+ </div>
|
|
|
+ <el-dropdown-menu slot="dropdown">
|
|
|
<router-link to="/">
|
|
|
<el-dropdown-item>
|
|
|
主页
|
|
@@ -44,7 +59,9 @@ export default {
|
|
|
computed: {
|
|
|
...mapGetters([
|
|
|
'sidebar',
|
|
|
- 'avatar'
|
|
|
+ 'avatar',
|
|
|
+ 'name',
|
|
|
+ 'outletList'
|
|
|
])
|
|
|
},
|
|
|
data () {
|
|
@@ -54,6 +71,11 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ created () {
|
|
|
+ this.$store.dispatch('common/fetchOutletList')
|
|
|
+ this.$store.dispatch('common/fetchCategory')
|
|
|
+ this.$store.dispatch('common/fetchGoodsAttr')
|
|
|
+ },
|
|
|
methods: {
|
|
|
modPassword () {
|
|
|
this.modPasswordDialog.show = true
|
|
@@ -64,6 +86,20 @@ export default {
|
|
|
async logout () {
|
|
|
await this.$store.dispatch('user/logout')
|
|
|
this.$router.push(`/login`)
|
|
|
+ },
|
|
|
+ // TODO 切换门店接口
|
|
|
+ handleSelectOutlet (item) {
|
|
|
+ this.$confirm('确定要切换门店吗', '确认', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(async () => {
|
|
|
+ const data = await this.$fetch('', { id: item.id }, 'get')
|
|
|
+ if (data.code === 200) {
|
|
|
+ this.$message.success('切换成功成功')
|
|
|
+ this.logout()
|
|
|
+ }
|
|
|
+ }).catch(() => {})
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -128,18 +164,11 @@ export default {
|
|
|
margin-top: 5px;
|
|
|
position: relative;
|
|
|
|
|
|
- .user-avatar {
|
|
|
- cursor: pointer;
|
|
|
- width: 40px;
|
|
|
- height: 40px;
|
|
|
- border-radius: 10px;
|
|
|
- }
|
|
|
-
|
|
|
.el-icon-caret-bottom {
|
|
|
cursor: pointer;
|
|
|
position: absolute;
|
|
|
right: -20px;
|
|
|
- top: 25px;
|
|
|
+ top: 20px;
|
|
|
font-size: 12px;
|
|
|
}
|
|
|
}
|