|
@@ -2,24 +2,31 @@
|
2
|
2
|
<div>
|
3
|
3
|
<div class="topTagBox flex" style="min-width: 1200px;" id="customerAnalysis">
|
4
|
4
|
<div class="left flex-align-center">
|
5
|
|
- <div :class="['tagItem',tagType==1?'tagItem_active':'']" @click="changeType(1);">邀请入群配置</div>
|
6
|
5
|
<div :class="['tagItem',tagType==2?'tagItem_active':'']" @click="changeType(2);">安卓设备绑定</div>
|
|
6
|
+ <div :class="['tagItem',tagType==1?'tagItem_active':'']" @click="changeType(1);">邀请入群配置</div>
|
|
7
|
+ <div :class="['tagItem',tagType==3?'tagItem_active':'']" @click="changeType(3);">客户共享配置</div>
|
7
|
8
|
</div>
|
8
|
9
|
</div>
|
9
|
|
- <inviteRuleList v-if="tagType==1" />
|
10
|
10
|
<deviceBind v-if="tagType==2" />
|
|
11
|
+ <inviteRuleList v-if="tagType==1" />
|
|
12
|
+ <customerShare v-if="tagType==3" />
|
11
|
13
|
</div>
|
12
|
14
|
</template>
|
13
|
15
|
|
14
|
16
|
<script>
|
15
|
17
|
import inviteRuleList from './inviteRuleList.vue'
|
16
|
18
|
import deviceBind from './deviceBind/index.vue'
|
|
19
|
+import customerShare from './customerShare/index.vue'
|
17
|
20
|
export default {
|
18
|
|
- name: "smartPushV3",
|
19
|
|
- components: { inviteRuleList, deviceBind, },
|
|
21
|
+ name: "InviteIntoGroup",
|
|
22
|
+ components: {
|
|
23
|
+ inviteRuleList,
|
|
24
|
+ deviceBind,
|
|
25
|
+ customerShare,
|
|
26
|
+ },
|
20
|
27
|
data() {
|
21
|
28
|
return {
|
22
|
|
- tagType: this.$route.query.tag || 1,
|
|
29
|
+ tagType: this.$route.query.tag || 2,
|
23
|
30
|
}
|
24
|
31
|
},
|
25
|
32
|
methods:{
|