| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <view class="container">
- <view class="navigation-bar">每天消耗总热量</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onLoad() {
-
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
-
- height: 100%;
- width:100%;
- }
-
- .navigation-bar
- {
- display: flex;
- align-items: center;
- justify-content: center;
-
- width:100%;
- height: 15%;
-
- font-weight: 700;
- color: white;
-
- background-color: rgb(115,164,164);
- }
- </style>
|