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

4 months ago
2 months ago
4 months ago
2 months ago
4 months ago
  1. <template>
  2. <view class="page">
  3. <navbar
  4. title="关于本程序"
  5. leftClick
  6. @leftClick="$utils.navigateBack"
  7. />
  8. <view class="content">
  9. <uv-parse :content="configList.config_aboutus"></uv-parse>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style scoped lang="scss">
  24. .page{
  25. .content{
  26. padding: 20rpx;
  27. background-color: #fff;
  28. }
  29. }
  30. </style>