|
@@ -1,9 +1,9 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div class="page">
|
3
|
3
|
<div class="page__top">
|
4
|
|
- <div class="shop-main">
|
|
4
|
+ <div class="shop-main" v-if="isAdmin">
|
5
|
5
|
<div class="name">当前门店:</div>
|
6
|
|
- <div class="shop" v-if="!hideShop" @click="goShopSelect">
|
|
6
|
+ <div class="shop" @click="goShopSelect">
|
7
|
7
|
<div class="shop__name">
|
8
|
8
|
<!-- 最多6字 -->
|
9
|
9
|
{{ curShopName }}
|
|
@@ -11,6 +11,16 @@
|
11
|
11
|
</div>
|
12
|
12
|
</div>
|
13
|
13
|
</div>
|
|
14
|
+ <div class="shop-main" v-else>
|
|
15
|
+ <div class="name">当前门店:</div>
|
|
16
|
+ <div class="shop">
|
|
17
|
+ <div class="shop__name">
|
|
18
|
+ <!-- 最多6字 -->
|
|
19
|
+ {{ user.storeName }}
|
|
20
|
+ <!-- <i class="iconfont iconyoujiantou shop__arrow"></i> -->
|
|
21
|
+ </div>
|
|
22
|
+ </div>
|
|
23
|
+ </div>
|
14
|
24
|
<div class="scan">
|
15
|
25
|
<my-image
|
16
|
26
|
class="scan-img"
|
|
@@ -1109,7 +1119,22 @@ export default {
|
1109
|
1119
|
},
|
1110
|
1120
|
|
1111
|
1121
|
curShopId() {
|
1112
|
|
- return this.$store.state.common.curShop.id;
|
|
1122
|
+ if(this.isAdmin){
|
|
1123
|
+ return this.$store.state.common.curShop.id;
|
|
1124
|
+ }else{
|
|
1125
|
+ return this.user.storeId;
|
|
1126
|
+ }
|
|
1127
|
+ },
|
|
1128
|
+ isAdmin() {
|
|
1129
|
+ //店铺管理员 系统管理员
|
|
1130
|
+ if (
|
|
1131
|
+ this.user.roleId === "50c41c5d-b54c-43ed-b587-10dcb60e72e5" ||
|
|
1132
|
+ this.user.roleId === "75b71b24-25de-40ac-a866-c8f5555b8b92"
|
|
1133
|
+ ) {
|
|
1134
|
+ return true;
|
|
1135
|
+ } else {
|
|
1136
|
+ return false;
|
|
1137
|
+ }
|
1113
|
1138
|
},
|
1114
|
1139
|
},
|
1115
|
1140
|
|