school.vue 370 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view class="content">
  3. <cu-custom bgColor="bg-bluev-head">
  4. <block slot="content">商学院</block>
  5. </cu-custom>
  6. </view>
  7. </template>
  8. <script>
  9. var app;
  10. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. onLoad() {
  16. app = this;
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style lang="scss">
  23. page{background-color: #f8f8f8;}
  24. </style>