123456789101112131415161718192021222324252627282930 |
- <template>
- <div> </div>
- </template>
- <script>
- import components from './_import-components/xm-law-feedback-open-import'
- export const metaInfo = {
- name: '反馈-法律审查-直接打开待办',
- order: 100,
- }
- export default {
- name: 'XmLawFeedbackOpen',
- components,
- props: {
- dataSource: {
- type: Object,
- default: () => {},
- },
- },
- data() {
- return {}
- },
- methods: {},
- }
- </script>
- <style module lang="scss">
- @use '@/common/design' as *;
- </style>
|