feat(glt): 添加送水订单模块功能
- 新增送水订单数据模型定义 - 实现送水订单分页查询、列表查询、新增、修改、删除等基础CRUD接口 - 新增批量删除送水订单功能 - 新增根据ID查询单个送水订单详情接口 - 在用户认证模块中增加操作员字段显示 - 优化用户认证页面表格展示操作员信息 - 更新开发环境配置文件中的API地址设置
This commit is contained in:
@@ -31,6 +31,19 @@
|
||||
>原因:{{ record.comments }}</div
|
||||
>
|
||||
</template>
|
||||
<template v-if="column.key === 'adminName'">
|
||||
<span class="text-gray-400">{{ record.adminName || '-' }}</span>
|
||||
</template>
|
||||
<template v-if="column.key ==='createTime'">
|
||||
<div class="flex flex-col">
|
||||
<a-tooltip title="创建时间">
|
||||
<span class="text-gray-500">{{ record.createTime }}</span>
|
||||
</a-tooltip>
|
||||
<a-tooltip :title="`审核通过时间`">
|
||||
<span class="text-purple-500">{{ record.updateTime }}</span>
|
||||
</a-tooltip>
|
||||
</div>
|
||||
</template>
|
||||
<template v-if="column.key === 'action'">
|
||||
<div>
|
||||
<a @click="openEdit(record)">修改</a>
|
||||
@@ -73,7 +86,6 @@
|
||||
UserVerifyParam
|
||||
} from '@/api/system/userVerify/model';
|
||||
import { getPageTitle } from '@/utils/common';
|
||||
import Extra from '@/views/system/user/components/Extra.vue';
|
||||
|
||||
// 表格实例
|
||||
const tableRef = ref<InstanceType<typeof EleProTable> | null>(null);
|
||||
@@ -167,6 +179,12 @@
|
||||
key: 'status',
|
||||
align: 'center'
|
||||
},
|
||||
{
|
||||
title: '操作员',
|
||||
dataIndex: 'adminName',
|
||||
key: 'adminName',
|
||||
align: 'center'
|
||||
},
|
||||
// {
|
||||
// title: '驳回',
|
||||
// dataIndex: 'comments',
|
||||
@@ -174,7 +192,7 @@
|
||||
// align: 'center',
|
||||
// },
|
||||
{
|
||||
title: '添加时间',
|
||||
title: '创建时间',
|
||||
dataIndex: 'createTime',
|
||||
key: 'createTime',
|
||||
align: 'center',
|
||||
|
||||
Reference in New Issue
Block a user