footTool.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <view class="footTool">
  3. <view v-for="(setting,i) in settings" :key="i" class="page_item_btn" @click="operate(i)"
  4. hover-class="seimin-btn-hover">{{setting.name}}</view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. methods: {
  10. operate(i) {
  11. this.$emit('operate', i);
  12. }
  13. },
  14. props: {
  15. settings: {
  16. type: Array,
  17. default: () => []
  18. }
  19. }
  20. };
  21. </script>
  22. <style lang="less">
  23. .footTool {
  24. position: fixed;
  25. left: 0;
  26. right: 0;
  27. bottom: 0;
  28. z-index: 9999;
  29. height: 88rpx;
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. box-sizing: border-box;
  34. border-radius: 4rpx;
  35. .page_item_btn {
  36. flex: 1;
  37. height: 88rpx;
  38. background-image: linear-gradient(to right, #72c172, #3bb197);
  39. border-radius: 8rpx;
  40. line-height: 88rpx;
  41. color: #fff;
  42. font-size: 36rpx;
  43. font-weight: 700;
  44. text-align: center;
  45. margin-right: 16rpx;
  46. &:last-of-type {
  47. margin-right: 0;
  48. }
  49. &:only-of-type {
  50. margin: 0;
  51. }
  52. }
  53. }
  54. </style>