帧视界壹通告,付费看视频的微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

75 lines
1.1 KiB

<template>
<view class="submit">
<!-- <view class=""
@click="$emit('draft')">
<uv-icon
size="40rpx"
name="file-text"></uv-icon>
<view class="">
存草稿
</view>
</view>
<view class=""
@click="$emit('preview')">
<uv-icon
size="40rpx"
name="eye-fill"></uv-icon>
<view class="">
预览
</view>
</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;
.btn{
background: $uni-linear-gradient-btn-color;
width: 600rpx;
height: 80rpx;
color: #fff;
border-radius: 15rpx;
}
view{
width: 100rpx;
margin: 0 10rpx;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
}
</style>