1234567891011121314151617181920212223242526272829 |
- <template>
- <div> </div>
- </template>
- <script>
- import components from './_import-components/xm-cpm-delete-flow-import'
- export const metaInfo = {
- name: '删除',
- order: 200,
- }
- export default {
- name: 'XmCpmDeleteFlow',
- components,
- props: {
- dataSource: {
- type: Object,
- default: () => {},
- },
- },
- data() {
- return {}
- },
- methods: {},
- }
- </script>
- <style module lang="scss">
- @use '@/common/design' as *;
- </style>
|