|
|
@@ -24,11 +24,8 @@
|
|
|
(距离{{ Micrometer(item.distance) }}m)
|
|
|
</div>
|
|
|
<div class="bottomBtnBox">
|
|
|
- <div
|
|
|
- class="toVisit joinVisit"
|
|
|
- @click="storeJoinVisit(item)"
|
|
|
- v-if="item.joinInPlan">
|
|
|
- 加入计划内
|
|
|
+ <div class="toVisit joinVisit">
|
|
|
+ <span @click="storeJoinVisit(item)" v-if="item.joinInPlan">加入计划内</span>
|
|
|
</div>
|
|
|
<div class="toVisit" @click="storeVisit(item)">
|
|
|
进入拜访 <van-icon name="arrow" />
|
|
|
@@ -436,6 +433,7 @@ export default {
|
|
|
justify-content: space-between;
|
|
|
align-items: center;
|
|
|
.toVisit {
|
|
|
+ height: 32px;
|
|
|
font-size: 15px;
|
|
|
color: #1989fa;
|
|
|
display: flex;
|
|
|
@@ -443,10 +441,13 @@ export default {
|
|
|
white-space: nowrap;
|
|
|
}
|
|
|
.joinVisit {
|
|
|
- background: #1989fa;
|
|
|
- color: #fff;
|
|
|
- border-radius: 20px;
|
|
|
- padding: 5px 10px;
|
|
|
+ span {
|
|
|
+ display: inline-block;
|
|
|
+ border-radius: 20px;
|
|
|
+ padding: 5px 10px;
|
|
|
+ background: #1989fa;
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|