| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <detail
- :data="data"
- :onManager="onManager"
- :base-info="baseInfo"
- status-module="samluser"
- :is-edit-name="false" />
- </template>
- <script>
- import { getBrandTableColumn, getCopyWithContentTableColumn, getAccountTableColumn } from '@/utils/common/tableColumn'
- export default {
- name: 'SamluserDetail',
- props: {
- onManager: {
- type: Function,
- required: true,
- },
- data: {
- type: Object,
- required: true,
- },
- },
- data () {
- return {
- baseInfo: [
- getBrandTableColumn(),
- getCopyWithContentTableColumn({
- field: 'owner_name',
- title: this.$t('cloudenv.clouduser_list_t4'),
- }),
- getAccountTableColumn({ field: 'cloudaccount', title: this.$t('common.text00108') }),
- ],
- }
- },
- }
- </script>
|