景徳镇旅游微信小程序
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.

93 lines
1.3 KiB

8 months ago
  1. <template>
  2. <view class="submit">
  3. <view class=""
  4. @click="">
  5. <uv-icon
  6. size="40rpx"
  7. name="chat"></uv-icon>
  8. <view class="">
  9. 客服
  10. </view>
  11. </view>
  12. <view class=""
  13. @click="">
  14. <uv-icon
  15. size="40rpx"
  16. name="star"></uv-icon>
  17. <!-- star-fill -->
  18. <view class="">
  19. 收藏
  20. </view>
  21. </view>
  22. <view class=""
  23. @click="$emit('share')">
  24. <uv-icon
  25. size="40rpx"
  26. name="share-square"></uv-icon>
  27. <view class="">
  28. 分享
  29. </view>
  30. </view>
  31. <view class="btn"
  32. @click="$emit('submit')">
  33. {{ submiitTitle }}
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. export default {
  39. name:"submit",
  40. props : {
  41. submiitTitle : {
  42. default : '立即租赁',
  43. type : String,
  44. }
  45. },
  46. data() {
  47. return {
  48. }
  49. },
  50. methods: {
  51. }
  52. }
  53. </script>
  54. <style lang="scss" scoped>
  55. .submit{
  56. position: fixed;
  57. bottom: 0;
  58. left: 0;
  59. width: 100vw;
  60. background-color: #fff;
  61. height: 100rpx;
  62. display: flex;
  63. justify-content: center;
  64. align-items: center;
  65. font-size: 24rpx;
  66. .btn{
  67. background: $uni-color;
  68. width: 600rpx;
  69. height: 80rpx;
  70. color: #fff;
  71. border-radius: 40rpx;
  72. font-size: 28rpx;
  73. }
  74. view{
  75. width: 100rpx;
  76. margin: 0 10rpx;
  77. display: flex;
  78. justify-content: center;
  79. align-items: center;
  80. flex-direction: column;
  81. }
  82. }
  83. </style>