smartswrtch-app/pages/daili/bangzhuxq.vue

40 lines
575 B
Vue
Raw Normal View History

2025-01-10 17:53:52 +08:00
<template>
<view>
<u-navbar :is-back="true" title='帮助中心详情' title-color="#000" :background="bgc" :border-bottom="false" id="navbar">
</u-navbar>
<view class="cont">
帮助详情
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: " #fff",
},
}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="less">
.cont{
padding: 20rpx;
box-sizing: border-box;
width: 100%;
height: 100vh;
overflow: scroll;
}
</style>