|
@@ -22,6 +22,17 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="visits-content-bot">
|
|
|
+ <view class="btn" @click.stop="handleClickOper(1, visitsInfo)">
|
|
|
+ <text class="iconfont icon-jigouhuaxiang"></text> 机构画像
|
|
|
+ </view>
|
|
|
+ <view class="btn" @click.stop="handleClickOper(2, visitsInfo)">
|
|
|
+ <text class="iconfont icon-tianxie"></text> 填写咨询记录
|
|
|
+ </view>
|
|
|
+ <view class="btn" @click.stop="handleClickOper(3, visitsInfo)">
|
|
|
+ <text class="iconfont icon-shangcheng"></text> 商城访问记录
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -32,6 +43,7 @@ export default {
|
|
|
type: Object,
|
|
|
default: () => ({
|
|
|
image: '',
|
|
|
+ userId:'',
|
|
|
pageLabel: '',
|
|
|
name: '',
|
|
|
linkMan: '',
|
|
@@ -40,7 +52,24 @@ export default {
|
|
|
clubId: '1111'
|
|
|
})
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
+ methods:{
|
|
|
+ // 按钮操作
|
|
|
+ handleClickOper(type, club) {
|
|
|
+ //1:机构画像 2:填写咨询记录 3:商城访问记录
|
|
|
+ switch (type) {
|
|
|
+ case 1:
|
|
|
+ this.$api.navigateTo(`/pages/seller/club/club-portrait?userId=${club.userId}`)
|
|
|
+ break
|
|
|
+ case 2:
|
|
|
+ this.$api.navigateTo(`/pages/seller/remarks/add?userId=${club.userId}`)
|
|
|
+ break
|
|
|
+ case 3:
|
|
|
+ this.$api.navigateTo(`/pages/seller/club/club-visit?clubId=${club.clubId}`)
|
|
|
+ break
|
|
|
+ }
|
|
|
+ },
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
|
|
@@ -94,5 +123,51 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .visits-content-bot {
|
|
|
+ width: 100%;
|
|
|
+ height: 80rpx;
|
|
|
+ background-color: #f7f7f7;
|
|
|
+ border-radius: 8rpx;
|
|
|
+ margin-top: 20rpx;
|
|
|
+ .btn {
|
|
|
+ height: 80rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
+ line-height: 80rpx;
|
|
|
+ padding: 0 20rpx;
|
|
|
+ font-size: $font-size-24;
|
|
|
+ color: #333333;
|
|
|
+ text-align: center;
|
|
|
+ float: left;
|
|
|
+ position: relative;
|
|
|
+ &:nth-child(1) {
|
|
|
+ &:before {
|
|
|
+ content: '';
|
|
|
+ width: 1px;
|
|
|
+ height: 20rpx;
|
|
|
+ background-color: #b2b2b2;
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ top: 30rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &:nth-child(2) {
|
|
|
+ &:before {
|
|
|
+ content: '';
|
|
|
+ width: 1px;
|
|
|
+ height: 20rpx;
|
|
|
+ background-color: #b2b2b2;
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ top: 30rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .iconfont {
|
|
|
+ font-size: 30rpx;
|
|
|
+ color: #333333;
|
|
|
+ margin-right: 5rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
</style>
|