|
|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div>
|
|
|
+ <div class="rangeStore">
|
|
|
<div id="container"></div>
|
|
|
<div class="navBarTOP">
|
|
|
<van-nav-bar class="navBar" title="附近客户信息" left-arrow @click-left="onClickLeft">
|
|
|
@@ -374,9 +374,20 @@
|
|
|
">
|
|
|
<div class="text">
|
|
|
经销商:
|
|
|
- <template v-for="(item, index) in info.sfaStoreChainsContactList">
|
|
|
- <span :key="index"><span v-if="index > 0">,</span>{{ item.chainName }}</span>
|
|
|
- </template>
|
|
|
+ <div class="TCFXListItem" v-for="(item, index) in info.sfaStoreChainsContactList">
|
|
|
+ <el-popover
|
|
|
+ popper-class="zpover zpoverStoreztype"
|
|
|
+ placement="bottom-start"
|
|
|
+ trigger="click">
|
|
|
+ <div>
|
|
|
+ <div>{{ item.chainCode }}</div>
|
|
|
+ <div>{{ item.chainName }}</div>
|
|
|
+ </div>
|
|
|
+ <div slot="reference" :key="index">
|
|
|
+ {{ item.categoryDescribe }}
|
|
|
+ </div>
|
|
|
+ </el-popover>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
@@ -2133,7 +2144,7 @@ export default {
|
|
|
height: 26px;
|
|
|
}
|
|
|
</style>
|
|
|
-<style>
|
|
|
+<style lang="scss">
|
|
|
.van-tabs__nav--card .van-tab.van-tab--active {
|
|
|
background-color: #0057ba !important;
|
|
|
}
|
|
|
@@ -2242,4 +2253,13 @@ export default {
|
|
|
.textsize {
|
|
|
font-size: 14px;
|
|
|
}
|
|
|
+.rangeStore {
|
|
|
+ .TCFXListItem {
|
|
|
+ display: inline-block;
|
|
|
+ border: 1px solid #ccc;
|
|
|
+ padding: 3px 5px;
|
|
|
+ margin: 0 5px;
|
|
|
+ border-radius: 6px;
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|