1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div>
- 图形
- </div>
- </template>
- <script>
- import {ajax} from '@/common/biConfig'
- import $ from 'jquery'
- export default {
- data(){
-
- },
- props: {
- pageInfo: {
- type: Object,
- required: true,
- },
- },
- mounted(){
- },
- computed: {
- },
- methods: {
-
- },
- watch: {
- }
- }
- </script>
- <style lang="less" scoped>
- </style>
|