seiminFooterBtn.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <view class="seiminFooterBtn">
  3. <button :class="btn.type" :type="btn.type" v-for="(btn,i) in btns" :key="i" @click="btn.click">{{btn.name}}</button>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: "seiminFooterBtn",
  9. data() {
  10. return {};
  11. },
  12. props: {
  13. btns: {
  14. type: Array,
  15. default: () => []
  16. },
  17. },
  18. methods: {},
  19. };
  20. </script>
  21. <style lang="scss" scoped>
  22. .seiminFooterBtn {
  23. position: fixed;
  24. left: 0;
  25. bottom: 0;
  26. width: 100%;
  27. height: 100rpx;
  28. z-index: 9;
  29. background-color: #fff;
  30. border-top: 1px solid rgba(0, 0, 0, 0.1);
  31. padding: 0 25rpx;
  32. @include flex(space-between, center);
  33. uni-button {
  34. flex: 1;
  35. margin-right: 16rpx;
  36. height: 66rpx;
  37. font-size: 32rpx;
  38. @include flex(center, center);
  39. &::after {
  40. border: none;
  41. }
  42. &:last-of-type {
  43. margin-right: 0;
  44. }
  45. }
  46. .default {
  47. background-color: #fff;
  48. border: 1px solid $defaultColor;
  49. color: $defaultColor;
  50. }
  51. .primary {
  52. @include btn_background;
  53. color: #fff;
  54. }
  55. }
  56. </style>