mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-09-09 08:57:14 +08:00
154 lines
5.2 KiB
Vue
154 lines
5.2 KiB
Vue
<template>
|
|
<div class="table-page">
|
|
<GiTable
|
|
title="存储管理"
|
|
row-key="id"
|
|
:data="dataList"
|
|
:columns="columns"
|
|
:loading="loading"
|
|
:scroll="{ x: '100%', y: '100%', minWidth: 1300 }"
|
|
:pagination="pagination"
|
|
:disabled-tools="['size']"
|
|
:disabled-column-keys="['name']"
|
|
@refresh="search"
|
|
>
|
|
<template #toolbar-left>
|
|
<a-input-search v-model="queryForm.description" placeholder="搜索名称/编码/描述" allow-clear @search="search" />
|
|
<a-select
|
|
v-model="queryForm.status"
|
|
:options="DisEnableStatusList"
|
|
placeholder="请选择状态"
|
|
allow-clear
|
|
style="width: 150px"
|
|
@change="search"
|
|
/>
|
|
<a-button @click="reset">
|
|
<template #icon><icon-refresh /></template>
|
|
<template #default>重置</template>
|
|
</a-button>
|
|
</template>
|
|
<template #toolbar-right>
|
|
<a-button v-permission="['system:storage:add']" type="primary" @click="onAdd">
|
|
<template #icon><icon-plus /></template>
|
|
<template #default>新增</template>
|
|
</a-button>
|
|
</template>
|
|
<template #name="{ record }">
|
|
<a-space fill>
|
|
<span>{{ record.name }}</span>
|
|
<a-tag v-if="record.isDefault" color="arcoblue" size="small" class="gi_round">
|
|
<template #default>默认</template>
|
|
</a-tag>
|
|
</a-space>
|
|
</template>
|
|
<template #type="{ record }">
|
|
<GiCellTag :value="record.type" :dict="storage_type_enum" />
|
|
</template>
|
|
<template #status="{ record }">
|
|
<GiCellStatus :status="record.status" />
|
|
</template>
|
|
<template #action="{ record }">
|
|
<a-space>
|
|
<a-link v-permission="['system:storage:update']" title="修改" @click="onUpdate(record)">修改</a-link>
|
|
<a-link
|
|
v-permission="['system:storage:delete']"
|
|
status="danger"
|
|
:disabled="record.isDefault"
|
|
:title="record.isDefault ? '默认存储不能删除' : '删除'"
|
|
@click="onDelete(record)"
|
|
>
|
|
删除
|
|
</a-link>
|
|
</a-space>
|
|
</template>
|
|
</GiTable>
|
|
|
|
<StorageAddDrawer ref="StorageAddDrawerRef" @save-success="search" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import StorageAddDrawer from './StorageAddDrawer.vue'
|
|
import { type StorageQuery, type StorageResp, deleteStorage, listStorage } from '@/apis/system/storage'
|
|
import type { TableInstanceColumns } from '@/components/GiTable/type'
|
|
import { DisEnableStatusList } from '@/constant/common'
|
|
import { useTable } from '@/hooks'
|
|
import { useDict } from '@/hooks/app'
|
|
import { isMobile } from '@/utils'
|
|
import has from '@/utils/has'
|
|
|
|
defineOptions({ name: 'SystemStorage' })
|
|
|
|
const { storage_type_enum } = useDict('storage_type_enum')
|
|
|
|
const queryForm = reactive<StorageQuery>({
|
|
sort: ['createTime,desc'],
|
|
})
|
|
|
|
const {
|
|
tableData: dataList,
|
|
loading,
|
|
pagination,
|
|
search,
|
|
handleDelete,
|
|
} = useTable((page) => listStorage({ ...queryForm, ...page }), { immediate: true })
|
|
const columns: TableInstanceColumns[] = [
|
|
{
|
|
title: '序号',
|
|
width: 66,
|
|
align: 'center',
|
|
render: ({ rowIndex }) => h('span', {}, rowIndex + 1 + (pagination.current - 1) * pagination.pageSize),
|
|
},
|
|
{ title: '名称', dataIndex: 'name', slotName: 'name', width: 140, ellipsis: true, tooltip: true },
|
|
{ title: '编码', dataIndex: 'code', ellipsis: true, tooltip: true },
|
|
{ title: '状态', dataIndex: 'status', slotName: 'status', align: 'center' },
|
|
{ title: '类型', dataIndex: 'type', slotName: 'type', align: 'center', ellipsis: true, tooltip: true },
|
|
{ title: '访问密钥', dataIndex: 'accessKey', ellipsis: true, tooltip: true },
|
|
{ title: '终端节点', dataIndex: 'endpoint', ellipsis: true, tooltip: true },
|
|
{ title: '桶名称', dataIndex: 'bucketName', ellipsis: true, tooltip: true },
|
|
{ title: '域名', dataIndex: 'domain', ellipsis: true, tooltip: true },
|
|
{ title: '描述', dataIndex: 'description', ellipsis: true, tooltip: true },
|
|
{ title: '创建人', dataIndex: 'createUserString', ellipsis: true, tooltip: true, show: false },
|
|
{ title: '创建时间', dataIndex: 'createTime', width: 180 },
|
|
{ title: '修改人', dataIndex: 'updateUserString', ellipsis: true, tooltip: true, show: false },
|
|
{ title: '修改时间', dataIndex: 'updateTime', width: 180, show: false },
|
|
{
|
|
title: '操作',
|
|
dataIndex: 'action',
|
|
slotName: 'action',
|
|
width: 130,
|
|
align: 'center',
|
|
fixed: !isMobile() ? 'right' : undefined,
|
|
show: has.hasPermOr(['system:storage:update', 'system:storage:delete']),
|
|
},
|
|
]
|
|
|
|
// 重置
|
|
const reset = () => {
|
|
queryForm.description = undefined
|
|
queryForm.status = undefined
|
|
search()
|
|
}
|
|
|
|
// 删除
|
|
const onDelete = (record: StorageResp) => {
|
|
return handleDelete(() => deleteStorage(record.id), {
|
|
content: `是否确定删除存储「${record.name}」?`,
|
|
showModal: true,
|
|
})
|
|
}
|
|
|
|
const StorageAddDrawerRef = ref<InstanceType<typeof StorageAddDrawer>>()
|
|
// 新增
|
|
const onAdd = () => {
|
|
StorageAddDrawerRef.value?.onAdd()
|
|
}
|
|
|
|
// 修改
|
|
const onUpdate = (record: StorageResp) => {
|
|
StorageAddDrawerRef.value?.onUpdate(record.id)
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss"></style>
|