mirror of
https://github.com/jumpserver/lina.git
synced 2025-11-12 21:34:02 +00:00
72 lines
1.5 KiB
Vue
72 lines
1.5 KiB
Vue
<template>
|
|
<el-row :gutter="24">
|
|
<el-col :md="20" :sm="22">
|
|
<ListTable v-bind="config" />
|
|
</el-col>
|
|
</el-row>
|
|
</template>
|
|
|
|
<script>
|
|
import ListTable from '@/components/Table/ListTable/index.vue'
|
|
import { toM2MJsonParams } from '@/utils/jms'
|
|
|
|
export default {
|
|
name: 'AssetJsonTab',
|
|
components: {
|
|
ListTable
|
|
},
|
|
props: {
|
|
object: {
|
|
type: Object,
|
|
default: () => {}
|
|
}
|
|
},
|
|
data() {
|
|
const [key, value] = toM2MJsonParams(this.object.assets)
|
|
return {
|
|
config: {
|
|
headerActions: {
|
|
hasLeftActions: false,
|
|
hasImport: false,
|
|
hasExport: false
|
|
},
|
|
tableConfig: {
|
|
url: `/api/v1/assets/assets/?${key}=${value}`,
|
|
columns: ['name', 'address', 'platform',
|
|
'type', 'is_active'
|
|
],
|
|
columnsMeta: {
|
|
name: {
|
|
label: this.$t('assets.Asset'),
|
|
formatter: (row) => {
|
|
const to = {
|
|
name: 'AssetDetail',
|
|
params: { id: row.id }
|
|
}
|
|
if (this.$hasPerm('assets.view_asset')) {
|
|
return <router-link to={to} class='text-link'>{row.name}</router-link>
|
|
} else {
|
|
return <span>{row.name}</span>
|
|
}
|
|
}
|
|
},
|
|
actions: {
|
|
has: false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
iUrl() {
|
|
return `/api/v1/users/users/`
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|