u-bottom.vue 767 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <view class="bottom-wrap" :style="[{customStyle,'color': color || 'rgba(255, 255, 255, 0.5)'}]">
  3. <view class="bottom" :style="[customStyle]">
  4. <view class="bottom-p">如您有任何问题,欢迎拨打服务热线</view>
  5. <view class="bottom-p">400-5555-8888</view>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. name:'u-bottom',
  12. props:{
  13. customStyle:{
  14. type: Object,
  15. default() {
  16. return {};
  17. }
  18. },
  19. color:{
  20. type: String,
  21. default: ''
  22. }
  23. },
  24. }
  25. </script>
  26. <style lang="scss" >
  27. .bottom-wrap{
  28. text-align: center;
  29. .bottom{
  30. position: fixed;
  31. left: 0;
  32. right: 0;
  33. bottom: 76rpx;
  34. font-size: 26rpx;
  35. line-height: 33rpx;
  36. .bottom-p + .bottom-p{
  37. margin-top: 10rpx;
  38. }
  39. }
  40. }
  41. </style>