TestInformation.vue 578 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="test-information-module">
  3. <common-title title="试验信息"></common-title>
  4. <div class="visualization-common-border">
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. import commonTitle from '../components/commonTitle.vue'
  10. export default {
  11. components: { commonTitle },
  12. name: '',
  13. data () {
  14. return {
  15. }
  16. },
  17. created () {
  18. },
  19. mounted () {
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style scoped>
  26. @import '~@/assets/less/uStyle.less';
  27. </style>
  28. <style lang="less">
  29. .test-information-module{
  30. width: 100%;
  31. height: 100%;
  32. }
  33. </style>