打卡 => 巡查

main
zhufu 2026-03-04 08:51:23 +08:00
parent 8b45d28b71
commit a7384bcc97
3 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,6 @@
<template>
<div class="modal-content" id="checkiinformation-show-modal">
<a-descriptions title="打卡信息详情" bordered :column="3" style="margin-bottom: 20px;">
<a-descriptions title="巡查信息详情" bordered :column="3" style="margin-bottom: 20px;">
<a-descriptions-item
v-for="item in showInfoColumn"
:label="item.label"
@ -40,10 +40,10 @@ const props = defineProps(['modalData'])
const emits = defineEmits(['closeModal'])
const showInfoColumn = [
{ label: '打卡点', key: 'pointName' },
{ label: '打卡状态', key: 'statusName' },
{ label: '打卡人员', key: 'userName' },
{ label: '打卡时间', key: 'punchTime' },
{ label: '巡查点', key: 'pointName' },
{ label: '巡查状态', key: 'statusName' },
{ label: '巡查人员', key: 'userName' },
{ label: '巡查时间', key: 'punchTime' },
{ label: '经度', key: 'lng' },
{ label: '纬度', key: 'lat' },
{ label: '现场照片', key: 'image', span: 3 },

View File

@ -40,7 +40,7 @@
const showInfoModalOpen = ref(false)
//
const [registerTable] = useTable({
title: '打卡信息列表',
title: '巡查信息列表',
api: LoadAllPage,
columns: columns,
formConfig: {

View File

@ -4,19 +4,19 @@ export const statusOptions = await asyncGetOptions('JGMinePointStatus');
export const columns: BasicColumn[] = [
{
title: '打卡点',
title: '巡查点',
dataIndex: 'PointName',
},
{
title: '打卡人员',
title: '巡查人员',
dataIndex: 'Name',
},
{
title: '打卡时间',
title: '巡查时间',
dataIndex: 'PunchTime',
},
{
title: '打卡状态',
title: '巡查状态',
dataIndex: 'PunchStatus',
},
{