工单小程序2024-11-20
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

38 lines
481 B

<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>