|
@@ -99,6 +99,7 @@
|
|
|
>
|
|
>
|
|
|
</template>
|
|
</template>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+ <div class="info" style="position: relative">联系人:{{ item.contactName }}</div>
|
|
|
<div class="info">
|
|
<div class="info">
|
|
|
类型:{{ item.storeCategory }}
|
|
类型:{{ item.storeCategory }}
|
|
|
<!-- <el-popover popper-class="zpover zpover6" placement="bottom-start" trigger="click">
|
|
<!-- <el-popover popper-class="zpover zpover6" placement="bottom-start" trigger="click">
|
|
@@ -111,8 +112,13 @@
|
|
|
<van-icon name="question-o" size="18" slot="reference" />
|
|
<van-icon name="question-o" size="18" slot="reference" />
|
|
|
</el-popover> -->
|
|
</el-popover> -->
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="info" style="position: relative">
|
|
|
|
|
- 联系人:{{ item.contactName }}
|
|
|
|
|
|
|
+ <div class="info" style="position: relative" @click="buryingPointFn(item)">
|
|
|
|
|
+ 联系电话:<a
|
|
|
|
|
+ v-if="item.telephone"
|
|
|
|
|
+ style="color: #0057ba; font-weight: bold; text-decoration: underline"
|
|
|
|
|
+ :href="'tel:' + item.telephone"
|
|
|
|
|
+ >{{ item.telephone }}<van-icon name="phone"
|
|
|
|
|
+ /></a>
|
|
|
<div style="position: absolute; bottom: 0; right: 14px">
|
|
<div style="position: absolute; bottom: 0; right: 14px">
|
|
|
<el-popover
|
|
<el-popover
|
|
|
popper-class="zpover"
|
|
popper-class="zpover"
|
|
@@ -308,13 +314,6 @@
|
|
|
</el-popover>
|
|
</el-popover>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="info" v-if="item.telephone" @click="buryingPointFn(item)">
|
|
|
|
|
- 联系电话:<a
|
|
|
|
|
- style="color: #0057ba; font-weight: bold; text-decoration: underline"
|
|
|
|
|
- :href="'tel:' + item.telephone"
|
|
|
|
|
- >{{ item.telephone }}<van-icon name="phone"
|
|
|
|
|
- /></a>
|
|
|
|
|
- </div>
|
|
|
|
|
<div class="info" v-if="item.addressLine">
|
|
<div class="info" v-if="item.addressLine">
|
|
|
地址:{{ item.addressLine
|
|
地址:{{ item.addressLine
|
|
|
}}<img
|
|
}}<img
|
|
@@ -372,7 +371,20 @@
|
|
|
style="background-color: white">
|
|
style="background-color: white">
|
|
|
<van-icon :name="times" color="#ee0a24" size="32" />
|
|
<van-icon :name="times" color="#ee0a24" size="32" />
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="statstext" v-if="item.stateString == '已拜访'">已拜访</div>
|
|
|
|
|
|
|
+ <template v-if="item.stateString == '已拜访'">
|
|
|
|
|
+ <div
|
|
|
|
|
+ class="statstext"
|
|
|
|
|
+ style="border-bottom-left-radius: 15px; border-top-left-radius: 15px"
|
|
|
|
|
+ v-if="item.jinpaiStore"
|
|
|
|
|
+ @click="openPerfectStore(item)">
|
|
|
|
|
+ 已拜访<br />
|
|
|
|
|
+ <div style="margin: 3px 0; font-size: 12px">
|
|
|
|
|
+ <p style="line-height: 18px; margin: 0">点击查看</p>
|
|
|
|
|
+ <p style="line-height: 18px; margin: 0">完美门店</p>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="statstext" v-else>已拜访</div>
|
|
|
|
|
+ </template>
|
|
|
<div class="btnbox">
|
|
<div class="btnbox">
|
|
|
<van-row>
|
|
<van-row>
|
|
|
<van-col
|
|
<van-col
|
|
@@ -1603,6 +1615,17 @@ export default {
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ // 完美门店
|
|
|
|
|
+ openPerfectStore(val) {
|
|
|
|
|
+ this.$router.push({
|
|
|
|
|
+ path: '/perfectStore',
|
|
|
|
|
+ query: {
|
|
|
|
|
+ visitId: val.visitId,
|
|
|
|
|
+ storeId: val.storeId,
|
|
|
|
|
+ storeCode: val.storeCode,
|
|
|
|
|
+ },
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
},
|
|
},
|
|
|
};
|
|
};
|
|
|
</script>
|
|
</script>
|