55 lines
1.1 KiB
Vue
55 lines
1.1 KiB
Vue
<template>
|
|
<view class="contentgb">
|
|
<view class="return_top">
|
|
<view class="z-bootm-img1" @click="returnbom()">
|
|
<u-image width="40rpx" height="14rpx" src="@/static/images/fb1.png" mode="widthFit"></u-image>
|
|
</view>
|
|
<view class="z-bootm-l"></view>
|
|
<view class="z-bootm-img2" @click="returnbom()">
|
|
<u-image width="38rpx" height="38rpx" src="@/static/images/fb2.png" mode="widthFit"></u-image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {
|
|
returnbom() {
|
|
console.log(1);
|
|
uni.sendHostEvent('closeApp', (ret) => {
|
|
//发送消息成功回调
|
|
console.log('关闭应用' + JSON.stringify(ret));
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.contentgb {
|
|
width: 166rpx;
|
|
height: 56rpx;
|
|
|
|
.return_top {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 166rpx;
|
|
height: 56rpx;
|
|
background: rgba(255, 255, 255, 0.6);
|
|
border-radius: 44rpx 44rpx;
|
|
position: relative;
|
|
|
|
.z-bootm-l {
|
|
width: 1px;
|
|
height: 32rpx;
|
|
background: rgba(0, 0, 0, 0.2);
|
|
margin: 0 16rpx;
|
|
}
|
|
}
|
|
}
|
|
</style> |