142 lines
2.9 KiB
Vue
142 lines
2.9 KiB
Vue
<template>
|
||
<view>
|
||
<!-- 修改后(兼容英文) -->
|
||
<block v-if="text == '客服' || text == 'Contact'">
|
||
<button hoverClass="none" openType="contact" sessionFrom="weapp" showMessageCard="true" class="action-icon-wrap" style="background: transparent;padding: 0;margin: 0;" @click="contactClick">
|
||
<view class="iconfont color-title" :class="icon"></view>
|
||
<text>{{ text }}</text>
|
||
<view class="corner-mark color-base-bg" v-if="cornerMark.length" :style="{ background: cornerMarkBg+'!important', color: cornerMarkColor }">{{ cornerMark }}</view>
|
||
</button>
|
||
</block>
|
||
<block v-else>
|
||
<view class="action-icon-wrap" @click="clickEvent">
|
||
<view class="iconfont " :class="icon"></view>
|
||
<text>{{ text }}</text>
|
||
<view class="corner-mark color-base-bg" :class="{'max' : parseInt(cornerMark)>99}" v-if="cornerMark.length" :style="{ background: cornerMarkBg+'!important', color: cornerMarkColor }">{{ cornerMark > 99 ? '99+' : cornerMark }}</view>
|
||
</view>
|
||
</block>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import nsContact from '@/components/ns-contact/ns-contact.vue';
|
||
export default {
|
||
name: 'ns-goods-action-icon',
|
||
props: {
|
||
icon: {
|
||
type: String,
|
||
default: ''
|
||
},
|
||
text: {
|
||
type: String,
|
||
default: ''
|
||
},
|
||
cornerMark: {
|
||
type: String,
|
||
default: ''
|
||
},
|
||
cornerMarkBg: {
|
||
type: String,
|
||
default: ''
|
||
},
|
||
cornerMarkColor: {
|
||
type: String,
|
||
default: '#fff'
|
||
},
|
||
openType: {
|
||
type: String,
|
||
default: ''
|
||
},
|
||
sendData: {
|
||
type: Object,
|
||
default: function() {
|
||
return {
|
||
title: '',
|
||
path: '',
|
||
img: ''
|
||
};
|
||
}
|
||
},
|
||
chatParam: {
|
||
type: Object,
|
||
default: function(){
|
||
return {}
|
||
}
|
||
}
|
||
},
|
||
components:{
|
||
nsContact
|
||
},
|
||
methods: {
|
||
clickEvent() {
|
||
console.log('【组件内部】非客服按钮被点击,触发clickEvent');
|
||
this.$emit('click');
|
||
},
|
||
contactClick() {
|
||
console.log('【组件内部】客服按钮(Contact)被点击,触发contactClick');
|
||
}
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.action-icon-wrap {
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
height: 100rpx;
|
||
min-width: 90rpx;
|
||
text-align: center;
|
||
position: relative;
|
||
margin-right: 6rpx;
|
||
}
|
||
.action-icon-wrap button {
|
||
width: 100%;
|
||
height: 100%;
|
||
position: absolute;
|
||
border: none;
|
||
z-index: 1;
|
||
padding: 0;
|
||
margin: 0;
|
||
background: none;
|
||
top: 0;
|
||
left: 0;
|
||
opacity: 0;
|
||
}
|
||
|
||
.action-icon-wrap button::after {
|
||
border: none !important;
|
||
}
|
||
|
||
.action-icon-wrap .iconfont {
|
||
margin: 0 auto 10rpx;
|
||
line-height: 1;
|
||
font-size: 40rpx;
|
||
}
|
||
|
||
.action-icon-wrap .corner-mark {
|
||
position: absolute;
|
||
z-index: 99;
|
||
font-size: $font-size-activity-tag;
|
||
top: 4rpx;
|
||
right: 12rpx;
|
||
color: #fff;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
width: 24rpx;
|
||
height: 24rpx;
|
||
padding: 6rpx;
|
||
border-radius: 50%;
|
||
&.max{
|
||
right:-4rpx;
|
||
width: 40rpx;
|
||
border-radius: 24rpx;
|
||
}
|
||
}
|
||
|
||
.action-icon-wrap text {
|
||
font-size: $font-size-tag;
|
||
line-height: 1;
|
||
}
|
||
</style> |