basalMetabolism.vue 615 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view class="container">
  3. <view class="navigation-bar">基础代谢率</view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. onLoad() {
  13. },
  14. methods: {
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. .container {
  20. display: flex;
  21. flex-direction: column;
  22. align-items: center;
  23. justify-content: center;
  24. height: 100%;
  25. width:100%;
  26. }
  27. .navigation-bar
  28. {
  29. display: flex;
  30. align-items: center;
  31. justify-content: center;
  32. width:100%;
  33. height: 15%;
  34. font-weight: 700;
  35. color: white;
  36. background-color: rgb(115,164,164);
  37. }
  38. </style>