fix: bug#11223
This commit is contained in:
parent
735994f12f
commit
f25468066b
|
@ -128,6 +128,11 @@
|
|||
}"
|
||||
></BadgeStatus>
|
||||
</template>
|
||||
<template #registryTime="slotProps">
|
||||
<span>{{
|
||||
dayjs(slotProps.registryTime).format('YYYY-MM-DD YY:mm:ss')
|
||||
}}</span>
|
||||
</template>
|
||||
</j-pro-table>
|
||||
</j-modal>
|
||||
</template>
|
||||
|
@ -145,6 +150,7 @@ import {
|
|||
import { message } from 'jetlinks-ui-components';
|
||||
import { dictType } from '../typing';
|
||||
import { useDepartmentStore } from '@/store/department';
|
||||
import dayjs from 'dayjs';
|
||||
|
||||
const departmentStore = useDepartmentStore();
|
||||
|
||||
|
|
|
@ -282,12 +282,14 @@ const columns = [
|
|||
key: 'permission',
|
||||
ellipsis: true,
|
||||
scopedSlots: true,
|
||||
width: 300,
|
||||
},
|
||||
{
|
||||
title: '注册时间',
|
||||
dataIndex: 'registryTime',
|
||||
key: 'registryTime',
|
||||
ellipsis: true,
|
||||
scopedSlots: true,
|
||||
search: {
|
||||
type: 'date',
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue