|
|
- <template>
- <view class="submit">
- <view class=""
- @click="$emit('share')">
- <button open-type="share"
- class="share">
- <uv-icon
- size="40rpx"
- name="share-square"></uv-icon>
- <view class="">
- 分享
- </view>
- </button>
- </view>
- <view class=""
- @click="$utils.navigateTo('/index/cart')">
- <button
- class="share">
- <uv-icon
- size="40rpx"
- name="shopping-cart"></uv-icon>
- <view class="">
- 购物车
- </view>
- </button>
- </view>
- <view class="btn"
- @click="$emit('submit')">
- {{ submiitTitle }}
- </view>
- </view>
- </template>
-
- <script>
- export default {
- name:"submit",
- props : {
- submiitTitle : {
- default : '立即租赁',
- type : String,
- }
- },
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </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;
- .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;
- }
- .share{
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- font-size: 24rpx;
- margin: 0;
- padding: 0;
- background-color: #fff;
- &::after{
- border: none;
- }
- }
- }
- </style>
|