特易招,招聘小程序
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.
 
 
 

36 lines
449 B

<template>
<view class="page">
<navbar
title="关于本程序"
leftClick
@leftClick="$utils.navigateBack"
/>
<view class="content">
<uv-parse :content="configList.config_aboutus"></uv-parse>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style scoped lang="scss">
.page{
.content{
padding: 20rpx;
background-color: #fff;
}
}
</style>