<template>
|
|
<view class="submit">
|
|
<!-- <view class=""
|
|
@click="$emit('share')">
|
|
<uv-icon
|
|
size="40rpx"
|
|
name="share-square"></uv-icon>
|
|
<view class="">
|
|
分享
|
|
</view>
|
|
</view>
|
|
<view class=""
|
|
@click="$utils.navigateTo('/index/cart')">
|
|
<uv-icon
|
|
size="40rpx"
|
|
name="shopping-cart"></uv-icon>
|
|
<view class="">
|
|
购物车
|
|
</view>
|
|
</view> -->
|
|
<view class="btn"
|
|
@click="submit">
|
|
{{ submiitTitle }}
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name:"submit",
|
|
props : {
|
|
submiitTitle : {
|
|
default : '立即购买',
|
|
type : String,
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
submit(){
|
|
if(!uni.getStorageSync('token')){
|
|
return this.$utils.toLogin()
|
|
}
|
|
this.$emit('submit')
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.submit{
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
background-color: #fff;
|
|
height: 100rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 24rpx;
|
|
z-index: 99;
|
|
.btn{
|
|
background: $uni-color;
|
|
width: 600rpx;
|
|
height: 80rpx;
|
|
color: #fff;
|
|
border-radius: 40rpx;
|
|
font-size: 28rpx;
|
|
}
|
|
view{
|
|
width: 100rpx;
|
|
margin: 0 10rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
</style>
|