57 lines
1.8 KiB
Vue
57 lines
1.8 KiB
Vue
<template>
|
|
<view class="posixzy disjbac bacf pad-zy32 btnBKS">
|
|
<view class="posir">
|
|
<image @tap="backHome" class="posia backH" src="/static/public/back-home-02.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="disac fon26 colf">
|
|
<view @tap="lianK" class="disac posir lianShare" style="background-color: #3875F6; border-top-left-radius: 51rpx;border-bottom-left-radius: 51rpx;">
|
|
<image src="/static/public/bottom-customer.png" class="mar-zy20" style="width: 47rpx;height: 47rpx;" mode="aspectFill"></image>
|
|
<view>联系客服</view>
|
|
<button class="fon24 posia" style="opacity: 0;top: 0;left: 0;right: 0;bottom: 0;" open-type="contact">客服</button>
|
|
</view>
|
|
<view class="disac posir lianShare" style="background-color: #38CE51;border-top-right-radius: 51rpx;border-bottom-right-radius: 51rpx;">
|
|
<image src="/static/public/bottom-shear.png" style="width: 47rpx;height: 47rpx;margin-left: 15rpx;margin-right: 8rpx;" mode="aspectFill">
|
|
</image>
|
|
<view>分享给好友</view>
|
|
<button class="posia" open-type="share" style="top: 0;right: 0;left: 0;bottom: 0;opacity: 0;">分享</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name:"bottom-tab",
|
|
data() {
|
|
return {
|
|
haveImg: true,
|
|
};
|
|
},
|
|
methods:{
|
|
backHome() {
|
|
uni.reLaunch({
|
|
url: '/pages/tabbar/pagehome/pagehome'
|
|
})
|
|
},
|
|
lianK() { //客服
|
|
this.$requst.post('user/rand-bind-service').then(res => {})
|
|
this.$toolAll.tools.closeTimer() //清空埋点倒计时
|
|
this.$requst.post('user/record', {
|
|
type: 'other',
|
|
action: 'ask',
|
|
id: 0
|
|
}).then(res => {}, error => {})
|
|
let maiOjb = {
|
|
e: 5, //内容咨询
|
|
t: new Date().getTime() //当前时间戳
|
|
}
|
|
this.$toolAll.tools.maiDian(maiOjb);
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|