1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <div class="test-information-module">
- <common-title title="试验信息"></common-title>
- <div class="visualization-common-border">
- </div>
- </div>
- </template>
- <script>
- import commonTitle from '../components/commonTitle.vue'
- export default {
- components: { commonTitle },
- name: '',
- data () {
- return {
- }
- },
- created () {
- },
- mounted () {
- },
- methods: {
- }
- }
- </script>
- <style scoped>
- @import '~@/assets/less/uStyle.less';
- </style>
- <style lang="less">
- .test-information-module{
- width: 100%;
- height: 100%;
- }
- </style>
|