mirror of
				https://github.com/yangjian102621/geekai.git
				synced 2025-11-04 08:13:43 +08:00 
			
		
		
		
	feat(ui): 调整
This commit is contained in:
		@@ -11,7 +11,7 @@ function useAsyncTable<T extends Record<string, unknown>>(
 | 
			
		||||
): TableReturn {
 | 
			
		||||
  const paginationState = reactive({
 | 
			
		||||
    current: 1,
 | 
			
		||||
    pageSize: 10,
 | 
			
		||||
    pageSize: 20,
 | 
			
		||||
    total: 0,
 | 
			
		||||
  });
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -37,7 +37,7 @@ const columns = [
 | 
			
		||||
 | 
			
		||||
const expandable = reactive({
 | 
			
		||||
  title: "",
 | 
			
		||||
  width: 80,
 | 
			
		||||
  width: 50,
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
// 数据
 | 
			
		||||
 
 | 
			
		||||
@@ -100,8 +100,9 @@ const handleRemove = async (id, reload) => {
 | 
			
		||||
      />
 | 
			
		||||
    </template>
 | 
			
		||||
    <template #actions="{ record, reload }">
 | 
			
		||||
      <a-link @click="openFormModal(reload, record)">编辑</a-link>
 | 
			
		||||
      <a-link @click="openResetPWDModal(reload, record)">修改密码</a-link>
 | 
			
		||||
      <template v-if="record.id !== 1">
 | 
			
		||||
        <a-link @click="openFormModal(reload, record)">编辑</a-link>
 | 
			
		||||
        <a-popconfirm
 | 
			
		||||
          content="是否删除?"
 | 
			
		||||
          position="left"
 | 
			
		||||
@@ -111,5 +112,6 @@ const handleRemove = async (id, reload) => {
 | 
			
		||||
          <a-link status="danger">删除</a-link>
 | 
			
		||||
        </a-popconfirm>
 | 
			
		||||
      </template>
 | 
			
		||||
    </template>
 | 
			
		||||
  </SearchTable>
 | 
			
		||||
</template>
 | 
			
		||||
 
 | 
			
		||||
@@ -37,6 +37,7 @@ const columns: SearchTableColumns[] = [
 | 
			
		||||
  {
 | 
			
		||||
    title: "过期时间",
 | 
			
		||||
    dataIndex: "expired_time",
 | 
			
		||||
    width: 180,
 | 
			
		||||
    render: ({ record }) => {
 | 
			
		||||
      return dateFormat(record.expired_time);
 | 
			
		||||
    },
 | 
			
		||||
@@ -44,6 +45,7 @@ const columns: SearchTableColumns[] = [
 | 
			
		||||
  {
 | 
			
		||||
    title: "注册时间",
 | 
			
		||||
    dataIndex: "created_at",
 | 
			
		||||
    width: 180,
 | 
			
		||||
    render: ({ record }) => {
 | 
			
		||||
      return dateFormat(record.created_at);
 | 
			
		||||
    },
 | 
			
		||||
@@ -51,6 +53,8 @@ const columns: SearchTableColumns[] = [
 | 
			
		||||
  {
 | 
			
		||||
    title: "操作",
 | 
			
		||||
    slotName: "actions",
 | 
			
		||||
    width: 180,
 | 
			
		||||
    fixed: "right",
 | 
			
		||||
  },
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user