| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <detail
- :on-manager="onManager"
- :data="data"
- :base-info="baseInfo"
- statusModule="policydefinition" />
- </template>
- <script>
- import {
- getCategoryTableColumn,
- getConditionTableColumn,
- getParameterTableColumn,
- } from '../utils/columns'
- export default {
- name: 'PolicydefinitionDetail',
- props: {
- data: {
- type: Object,
- required: true,
- },
- onManager: {
- type: Function,
- required: true,
- },
- },
- data () {
- return {
- baseInfo: [
- getCategoryTableColumn(),
- getConditionTableColumn(),
- getParameterTableColumn(),
- ],
- }
- },
- }
- </script>
|