帧视界壹通告,付费看视频的微信小程序
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

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. <template>
  2. <view class="submit">
  3. <!-- <view class=""
  4. @click="$emit('draft')">
  5. <uv-icon
  6. size="40rpx"
  7. name="file-text"></uv-icon>
  8. <view class="">
  9. 存草稿
  10. </view>
  11. </view>
  12. <view class=""
  13. @click="$emit('preview')">
  14. <uv-icon
  15. size="40rpx"
  16. name="eye-fill"></uv-icon>
  17. <view class="">
  18. 预览
  19. </view>
  20. </view> -->
  21. <view class="btn"
  22. @click="$emit('submit')">
  23. {{ submiitTitle }}
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. name:"submit",
  30. props : {
  31. submiitTitle : {
  32. default : '发布',
  33. type : String,
  34. }
  35. },
  36. data() {
  37. return {
  38. }
  39. },
  40. methods: {
  41. }
  42. }
  43. </script>
  44. <style lang="scss" scoped>
  45. .submit{
  46. position: fixed;
  47. bottom: 0;
  48. left: 0;
  49. width: 100vw;
  50. background-color: #fff;
  51. height: 100rpx;
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. .btn{
  56. background: $uni-linear-gradient-btn-color;
  57. width: 600rpx;
  58. height: 80rpx;
  59. color: #fff;
  60. border-radius: 15rpx;
  61. }
  62. view{
  63. width: 100rpx;
  64. margin: 0 10rpx;
  65. display: flex;
  66. justify-content: center;
  67. align-items: center;
  68. flex-direction: column;
  69. }
  70. }
  71. </style>