114 lines
4.1 KiB
Vue
114 lines
4.1 KiB
Vue
<template>
|
||
<div class="default-main ba-table-box">
|
||
<el-alert class="ba-table-alert" v-if="baTable.table.remark" :title="baTable.table.remark" type="info" show-icon />
|
||
|
||
<!-- 表格顶部菜单 -->
|
||
<TableHeader
|
||
:buttons="['refresh', 'add', 'edit', 'delete', 'comSearch', 'quickSearch', 'columnDisplay']"
|
||
:quick-search-placeholder="t('Quick search placeholder', { fields: t('auth.admin.username') + '/' + t('auth.admin.nickname') })"
|
||
/>
|
||
|
||
<!-- 表格 -->
|
||
<!-- 要使用`el-table`组件原有的属性,直接加在Table标签上即可 -->
|
||
<Table />
|
||
|
||
<!-- 表单 -->
|
||
<PopupForm />
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import { provide } from 'vue'
|
||
import baTableClass from '/@/utils/baTable'
|
||
import PopupForm from './popupForm.vue'
|
||
import Table from '/@/components/table/index.vue'
|
||
import TableHeader from '/@/components/table/header/index.vue'
|
||
import { defaultOptButtons } from '/@/components/table'
|
||
import { baTableApi } from '/@/api/common'
|
||
import { useAdminInfo } from '/@/stores/adminInfo'
|
||
import { useI18n } from 'vue-i18n'
|
||
|
||
defineOptions({
|
||
name: 'auth/admin',
|
||
})
|
||
|
||
const { t } = useI18n()
|
||
const adminInfo = useAdminInfo()
|
||
|
||
const optButtons = defaultOptButtons(['edit', 'delete'])
|
||
optButtons[1].display = (row) => {
|
||
return row.id != adminInfo.id
|
||
}
|
||
|
||
const baTable = new baTableClass(
|
||
new baTableApi('/admin/auth.Admin/'),
|
||
{
|
||
column: [
|
||
{ type: 'selection', align: 'center', operator: false },
|
||
{ label: t('Id'), prop: 'id', align: 'center', operator: '=', operatorPlaceholder: t('Id'), width: 70 },
|
||
{ label: t('auth.admin.username'), prop: 'username', align: 'center', operator: 'LIKE', operatorPlaceholder: t('Fuzzy query') },
|
||
{ label: t('auth.admin.nickname'), prop: 'nickname', align: 'center', operator: 'LIKE', operatorPlaceholder: t('Fuzzy query') },
|
||
{
|
||
label: t('auth.admin.group'),
|
||
prop: 'group_name_arr',
|
||
align: 'center',
|
||
minWidth: 150,
|
||
operator: false,
|
||
render: 'tags',
|
||
},
|
||
{ label: t('auth.admin.invite_code'), prop: 'invite_code', align: 'center', operator: 'LIKE', operatorPlaceholder: t('Fuzzy query') },
|
||
{ label: t('auth.admin.avatar'), prop: 'avatar', align: 'center', render: 'image', operator: false },
|
||
{ label: t('auth.admin.email'), prop: 'email', align: 'center', operator: 'LIKE', operatorPlaceholder: t('Fuzzy query') },
|
||
{ label: t('auth.admin.mobile'), prop: 'mobile', align: 'center', operator: 'LIKE', operatorPlaceholder: t('Fuzzy query') },
|
||
{
|
||
label: t('auth.admin.Last login'),
|
||
prop: 'last_login_time',
|
||
align: 'center',
|
||
render: 'datetime',
|
||
sortable: 'custom',
|
||
operator: 'RANGE',
|
||
width: 160,
|
||
},
|
||
{ label: t('Create time'), prop: 'create_time', align: 'center', render: 'datetime', sortable: 'custom', operator: 'RANGE', width: 160 },
|
||
{
|
||
label: t('State'),
|
||
prop: 'status',
|
||
align: 'center',
|
||
operator: 'eq',
|
||
sortable: false,
|
||
render: 'switch',
|
||
replaceValue: { disable: t('Disable'), enable: t('Enable') },
|
||
customRenderAttr: {
|
||
switch: () => ({
|
||
activeValue: 'enable',
|
||
inactiveValue: 'disable',
|
||
}),
|
||
},
|
||
},
|
||
{
|
||
label: t('Operate'),
|
||
align: 'center',
|
||
minWidth: '80',
|
||
render: 'buttons',
|
||
buttons: optButtons,
|
||
operator: false,
|
||
fixed: 'right',
|
||
},
|
||
],
|
||
dblClickNotEditColumn: [undefined, 'status'],
|
||
},
|
||
{
|
||
defaultItems: {
|
||
status: 'enable',
|
||
},
|
||
}
|
||
)
|
||
|
||
provide('baTable', baTable)
|
||
|
||
baTable.mount()
|
||
baTable.getData()
|
||
</script>
|
||
|
||
<style scoped lang="scss"></style>
|