generated from Leo_Ding/web-template
388 lines
11 KiB
Vue
388 lines
11 KiB
Vue
<template>
|
|
<x-search-bar class="mb-8-2">
|
|
<template #default="{ gutter, colSpan }">
|
|
<a-form :model="searchFormData" layout="inline" labelAlign="left">
|
|
<a-row :gutter="[24, 24]">
|
|
<!-- 所在区域 -->
|
|
<a-col :span="8">
|
|
<a-form-item label="所在节点" name="currentNode">
|
|
<a-tree-select v-model:value="value" show-search style="width: 100%"
|
|
:dropdown-style="{ maxHeight: '400px', overflow: 'auto' }" placeholder="Please select"
|
|
allow-clear tree-default-expand-all :tree-data="treeData" tree-node-filter-prop="label">
|
|
<template #title="{ value: val, label }">
|
|
<b v-if="val === 'parent 1-1'" style="color: #08c">sss</b>
|
|
<template v-else>{{ label }}</template>
|
|
</template>
|
|
</a-tree-select>
|
|
</a-form-item>
|
|
</a-col>
|
|
<!-- 所在区域 -->
|
|
<a-col :span="8">
|
|
<a-form-item label="所在区域" name="region">
|
|
<AreaCascader v-model:value="searchFormData.currentNode" @change="onAreaChange" />
|
|
</a-form-item>
|
|
</a-col>
|
|
<!-- 姓名 -->
|
|
<a-col :span="8">
|
|
<a-form-item label="姓名" name="name">
|
|
<a-input v-model:value="searchFormData.name" placeholder="请输入姓名" />
|
|
</a-form-item>
|
|
</a-col>
|
|
|
|
<!-- 身份证号 -->
|
|
<a-col :span="8">
|
|
<a-form-item label="身份证号" name="idNumber">
|
|
<a-input v-model:value="searchFormData.idNumber" placeholder="请输入身份证号" />
|
|
</a-form-item>
|
|
</a-col>
|
|
|
|
<!-- 档案号 -->
|
|
<a-col :span="8">
|
|
<a-form-item label="档案号" name="fileNumber">
|
|
<a-input v-model:value="searchFormData.fileNumber" placeholder="请输入档案号" />
|
|
</a-form-item>
|
|
</a-col>
|
|
|
|
<!-- 操作按钮 -->
|
|
<a-col class="align-left" :span="8">
|
|
<a-space>
|
|
<a-button @click="handleResetSearch">{{ $t('button.reset') }}</a-button>
|
|
<a-button ghost type="primary" @click="handleSearch">
|
|
{{ $t('button.search') }}
|
|
</a-button>
|
|
</a-space>
|
|
</a-col>
|
|
</a-row>
|
|
</a-form>
|
|
</template>
|
|
</x-search-bar>
|
|
<a-row :gutter="8" :wrap="false">
|
|
<a-col flex="auto">
|
|
<a-card title="待分配对象列表">
|
|
<template #extra>
|
|
<a-space>
|
|
<a-button type="primary">导入</a-button>
|
|
<a-button type="dashed">导入记录</a-button>
|
|
<a-button type="primary">导出</a-button>
|
|
<a-button type="dashed">导出记录</a-button>
|
|
</a-space>
|
|
</template>
|
|
<a-table :columns="columns" :data-source="listData" bordered="true" :loading="loading"
|
|
:pagination="paginationState" :scroll="{ x: 'max-content' }" @change="onTableChange">
|
|
<template #bodyCell="{ index, column, record }">
|
|
<template v-if="column.key === 'serialNumber'">
|
|
<span>{{ index + 1 }}</span>
|
|
</template>
|
|
|
|
</template>
|
|
</a-table>
|
|
</a-card>
|
|
</a-col>
|
|
</a-row>
|
|
<edit-dialog ref="editDialogRef" @ok="onOk"></edit-dialog>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { message, Modal } from 'ant-design-vue'
|
|
import { ref } from 'vue'
|
|
import apis from '@/apis'
|
|
import { config } from '@/config'
|
|
import { usePagination } from '@/hooks'
|
|
import { useI18n } from 'vue-i18n'
|
|
import EditDialog from './components/EditDialog.vue'
|
|
import { useDicsStore } from '@/store'
|
|
import AreaCascader from '@/components/AreaCascader/index.vue'
|
|
import dayjs from 'dayjs'
|
|
defineOptions({
|
|
name: 'allocation',
|
|
})
|
|
const dicsStore = useDicsStore()
|
|
|
|
const columns = [
|
|
{
|
|
title: '序号',
|
|
dataIndex: 'serialNumber',
|
|
key: 'serialNumber',
|
|
align: 'center',
|
|
width: 80,
|
|
},
|
|
{
|
|
title: '姓名',
|
|
dataIndex: 'name',
|
|
key: 'name',
|
|
align: 'center',
|
|
width: 100,
|
|
},
|
|
{
|
|
title: '性别',
|
|
dataIndex: 'gender',
|
|
key: 'gender',
|
|
align: 'center',
|
|
width: 80,
|
|
},
|
|
{
|
|
title: '年龄',
|
|
dataIndex: 'age',
|
|
key: 'age',
|
|
align: 'center',
|
|
width: 80,
|
|
},
|
|
{
|
|
title: '身份证号',
|
|
dataIndex: 'idNumber',
|
|
key: 'idNumber',
|
|
align: 'center',
|
|
width: 180,
|
|
},
|
|
|
|
{
|
|
title: '去世时间',
|
|
dataIndex: 'diedTime',
|
|
key: 'diedTime',
|
|
align: 'center',
|
|
width: 150,
|
|
},
|
|
{
|
|
title: '去世原因',
|
|
dataIndex: 'diedReason',
|
|
key: 'diedReason',
|
|
align: 'center',
|
|
width: 120,
|
|
},
|
|
{
|
|
title: '更新时间',
|
|
dataIndex: 'updateTime',
|
|
key: 'updateTime',
|
|
align: 'center',
|
|
width: 120,
|
|
},
|
|
|
|
// --- 联系方式 ---
|
|
{
|
|
title: '联系方式1',
|
|
dataIndex: 'contact1',
|
|
key: 'contact1',
|
|
align: 'center',
|
|
width: 130,
|
|
},
|
|
{
|
|
title: '联系方式2',
|
|
dataIndex: 'contact2',
|
|
key: 'contact2',
|
|
align: 'center',
|
|
width: 130,
|
|
},
|
|
{
|
|
title: '所在区域',
|
|
dataIndex: 'region',
|
|
key: 'region',
|
|
align: 'center',
|
|
width: 120,
|
|
},
|
|
{
|
|
title: '详细地址',
|
|
dataIndex: 'detailedAddress',
|
|
key: 'detailedAddress',
|
|
align: 'center',
|
|
width: 200,
|
|
},
|
|
|
|
{
|
|
title: '所在节点',
|
|
dataIndex: 'currentNode',
|
|
key: 'currentNode',
|
|
align: 'center',
|
|
width: 120,
|
|
},
|
|
{
|
|
title: '档案号',
|
|
dataIndex: 'fileNumber',
|
|
key: 'fileNumber',
|
|
align: 'center',
|
|
width: 140,
|
|
},
|
|
// --- 档案创建日期 ---
|
|
{
|
|
title: '建档日期',
|
|
dataIndex: 'dateOfFileCreation',
|
|
key: 'dateOfFileCreation',
|
|
align: 'center',
|
|
width: 140,
|
|
customRender: ({ text, record }) => {
|
|
return text ? dayjs(text).format('YYYY-MM-DD') : '-';
|
|
},
|
|
},
|
|
];
|
|
const { t } = useI18n() // 解构出t方法
|
|
const { listData, loading, showLoading, hideLoading, paginationState, resetPagination, searchFormData } = usePagination()
|
|
const editDialogRef = ref()
|
|
const detailRef = ref()
|
|
const treeData = ref([
|
|
{
|
|
title: 'Node1',
|
|
value: '0-0',
|
|
key: '0-0',
|
|
children: [
|
|
{
|
|
value: '0-0-1',
|
|
key: '0-0-1',
|
|
slots: {
|
|
title: 'title',
|
|
},
|
|
},
|
|
{
|
|
title: 'Child Node2',
|
|
value: '0-0-2',
|
|
key: '0-0-2',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'Node2',
|
|
value: '0-1',
|
|
key: '0-1',
|
|
},
|
|
]);
|
|
const options = ref([
|
|
{
|
|
value: 'zhejiang',
|
|
label: 'Zhejiang',
|
|
children: [
|
|
{
|
|
value: 'hangzhou',
|
|
label: 'Hangzhou',
|
|
children: [
|
|
{
|
|
value: 'xihu',
|
|
label: 'West Lake',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
value: 'jiangsu',
|
|
label: 'Jiangsu',
|
|
children: [
|
|
{
|
|
value: 'nanjing',
|
|
label: 'Nanjing',
|
|
children: [
|
|
{
|
|
value: 'zhonghuamen',
|
|
label: 'Zhong Hua Men',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},])
|
|
|
|
getPageList()
|
|
|
|
async function getPageList() {
|
|
try {
|
|
const { pageSize, current } = paginationState
|
|
const { success, data, total } = await apis.serverObj
|
|
.getProjectList({
|
|
pageSize,
|
|
current: current,
|
|
...searchFormData.value,
|
|
})
|
|
.catch(() => {
|
|
throw new Error()
|
|
})
|
|
|
|
if (config('http.code.success') === success) {
|
|
listData.value = data
|
|
paginationState.total = total
|
|
}
|
|
} catch (error) {
|
|
|
|
}
|
|
}
|
|
/**核销 */
|
|
const checkHandler = (record) => {
|
|
Modal.confirm({
|
|
title: '即将核销是否继续',
|
|
content: t('button.confirm'),
|
|
okText: t('button.confirm'),
|
|
onOk: async () => {
|
|
const params = {
|
|
...record,
|
|
status: 'success'
|
|
}
|
|
const { success } = await apis.productOrder.updateItem(params.id, params).catch(() => {
|
|
// throw new Error()
|
|
})
|
|
if (config('http.code.success') === success) {
|
|
// resolve()
|
|
message.success('核销成功')
|
|
await getPageList()
|
|
}
|
|
},
|
|
})
|
|
}
|
|
/**
|
|
* 删除
|
|
*/
|
|
function handleDelete({ id }) {
|
|
Modal.confirm({
|
|
title: t('pages.system.user.delTip'),
|
|
content: t('button.confirm'),
|
|
okText: t('button.confirm'),
|
|
onOk: () => {
|
|
return new Promise((resolve, reject) => {
|
|
; (async () => {
|
|
try {
|
|
const { success } = await apis.productOrder.delItem(id).catch(() => {
|
|
throw new Error()
|
|
})
|
|
if (config('http.code.success') === success) {
|
|
resolve()
|
|
message.success(t('component.message.success.delete'))
|
|
await getPageList()
|
|
}
|
|
} catch (error) {
|
|
reject()
|
|
}
|
|
})()
|
|
})
|
|
},
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 分页
|
|
*/
|
|
function onTableChange({ current, pageSize }) {
|
|
paginationState.current = current
|
|
paginationState.pageSize = pageSize
|
|
getPageList()
|
|
}
|
|
|
|
/**
|
|
* 搜索
|
|
*/
|
|
function handleSearch() {
|
|
resetPagination()
|
|
getPageList()
|
|
}
|
|
/**
|
|
* 重置
|
|
*/
|
|
function handleResetSearch() {
|
|
searchFormData.value = {}
|
|
resetPagination()
|
|
getPageList()
|
|
}
|
|
/**
|
|
* 编辑完成
|
|
*/
|
|
async function onOk() {
|
|
await getPageList()
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="less" scoped></style>
|