|
|
- <template>
- <!-- 帮助中心 -->
- <view class="page">
- <navbar
- title="帮助中心"
- leftClick
- @leftClick="$utils.navigateBack"/>
- <view class="box">
- <view class="center">
- <h2>帮助中心</h2>
- </view>
-
- </view>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
-
- <style scoped lang="scss">
- .page{
- .box{margin-top: 150rpx;
- display: flex;
- justify-content: center;
- }
- }
-
- </style>
|