app-button.vue 571 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view class="app-button">
  3. <app-form-id>
  4. <button class="button">预约</button>
  5. </app-form-id>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. name: "app-button"
  11. }
  12. </script>
  13. <style scoped lang="scss">
  14. .app-button {
  15. display: inline-block;
  16. height: #{48rpx};
  17. .button {
  18. width: 100%;
  19. display: inline-block;
  20. border: #{1rpx} solid #ff4544;
  21. height: #{48rpx};
  22. font-size: #{28rpx};
  23. color: #ff4544;
  24. padding: 0 #{28rpx};
  25. line-height: #{48rpx};
  26. border-radius: #{24rpx};
  27. background-color: #fff5f5;
  28. }
  29. }
  30. </style>