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

72 lines
1.0 KiB

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