common-button.vue 546 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="button-save">
  3. <view class="p-fixed left0 right0 bottom0 d-flex j-center a-center bg-color-white" style="height: 100rpx;">
  4. <view
  5. class="main-linear text-center text-color-white"
  6. style="height: 80rpx;line-height: 80rpx; width: 690rpx;border-radius: 50rpx;">保存</view>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. };
  15. }
  16. }
  17. </script>
  18. <style>
  19. .button-save {
  20. z-index: 5;
  21. position: fixed;
  22. }
  23. </style>