建材商城系统20241014
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.

40 lines
502 B

  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. <quick-order-entry
  12. ref="quickOrderEntry"
  13. />
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. }
  21. },
  22. methods: {
  23. }
  24. }
  25. </script>
  26. <style scoped lang="scss">
  27. .page{
  28. .content{
  29. padding: 20rpx;
  30. background-color: #fff;
  31. }
  32. }
  33. </style>