修改bug
This commit is contained in:
parent
8df2f9a64b
commit
ade63e09b9
|
|
@ -9,16 +9,19 @@ export const columns: BasicColumn[] = [
|
||||||
title: '姓名',
|
title: '姓名',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
|
width: 120
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '性别',
|
title: '性别',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'sex',
|
dataIndex: 'sex',
|
||||||
|
width: 120
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '年龄',
|
title: '年龄',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'dateOfBirth',
|
dataIndex: 'dateOfBirth',
|
||||||
|
width: 120
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '联系电话',
|
title: '联系电话',
|
||||||
|
|
@ -34,6 +37,7 @@ export const columns: BasicColumn[] = [
|
||||||
title: '审核状态',
|
title: '审核状态',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'status',
|
dataIndex: 'status',
|
||||||
|
width: 120
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
// title: '审核备注',
|
// title: '审核备注',
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="p-2">
|
<div>
|
||||||
<!--查询区域-->
|
<!--查询区域-->
|
||||||
<div class="jeecg-basic-table-form-container">
|
<div class="jeecg-basic-table-form-container">
|
||||||
<a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol"
|
<a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol"
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
<a-form-item name="status">
|
<a-form-item name="status">
|
||||||
<template #label><span title="审核状态">状态</span></template>
|
<template #label><span title="审核状态">状态</span></template>
|
||||||
<a-select v-model:value="queryParam.status" placeholder="请选择审核状态" style="width: 200px" :disabled="false">
|
<a-select v-model:value="queryParam.status" placeholder="请选择审核状态" style="width: 150px" :disabled="false">
|
||||||
<a-select-option value="1">待审核</a-select-option>
|
<a-select-option value="1">待审核</a-select-option>
|
||||||
<a-select-option value="2">审核通过</a-select-option>
|
<a-select-option value="2">审核通过</a-select-option>
|
||||||
<a-select-option value="3">审核驳回</a-select-option>
|
<a-select-option value="3">审核驳回</a-select-option>
|
||||||
|
|
@ -121,13 +121,13 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
||||||
const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] = tableContext;
|
const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] = tableContext;
|
||||||
const labelCol = reactive({
|
const labelCol = reactive({
|
||||||
xs: 24,
|
xs: 24,
|
||||||
sm: 4,
|
sm: 8,
|
||||||
xl: 6,
|
xl: 8,
|
||||||
xxl: 4
|
xxl: 8
|
||||||
});
|
});
|
||||||
const wrapperCol = reactive({
|
const wrapperCol = reactive({
|
||||||
xs: 24,
|
xs: 24,
|
||||||
sm: 20,
|
sm: 16,
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ import EmployeesAuditHistoryList from './EmployeesAuditHistoryList.vue'
|
||||||
import JModal from '/@/components/Modal/src/JModal/JModal.vue';
|
import JModal from '/@/components/Modal/src/JModal/JModal.vue';
|
||||||
|
|
||||||
const title = ref<string>('');
|
const title = ref<string>('');
|
||||||
const width = ref<string>('1400');
|
const width = ref<string>('1000');
|
||||||
const visible = ref<boolean>(false);
|
const visible = ref<boolean>(false);
|
||||||
const disableSubmit = ref<boolean>(false);
|
const disableSubmit = ref<boolean>(false);
|
||||||
const registerForm = ref();
|
const registerForm = ref();
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ export const columns: BasicColumn[] = [
|
||||||
dataIndex: 'guardianPhone',
|
dataIndex: 'guardianPhone',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '入驻日期',
|
title: '入住日期',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'checkinTime',
|
dataIndex: 'checkinTime',
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -105,13 +105,13 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
||||||
const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] = tableContext;
|
const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] = tableContext;
|
||||||
const labelCol = reactive({
|
const labelCol = reactive({
|
||||||
xs: 24,
|
xs: 24,
|
||||||
sm: 4,
|
sm: 8,
|
||||||
xl: 6,
|
xl: 8,
|
||||||
xxl: 4
|
xxl: 8
|
||||||
});
|
});
|
||||||
const wrapperCol = reactive({
|
const wrapperCol = reactive({
|
||||||
xs: 24,
|
xs: 24,
|
||||||
sm: 20,
|
sm: 16,
|
||||||
});
|
});
|
||||||
|
|
||||||
// 高级查询配置
|
// 高级查询配置
|
||||||
|
|
|
||||||
|
|
@ -39,8 +39,6 @@
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
|
|
||||||
{{ izAudit }} 1
|
|
||||||
|
|
||||||
<a-form style="margin-top: 14px;height: 100px;" ref="formRef" layout="horizontal" :model="formData"
|
<a-form style="margin-top: 14px;height: 100px;" ref="formRef" layout="horizontal" :model="formData"
|
||||||
:label-col="labelCol" :wrapper-col="wrapperCol" v-if="izAudit">
|
:label-col="labelCol" :wrapper-col="wrapperCol" v-if="izAudit">
|
||||||
<a-row :gutter="16">
|
<a-row :gutter="16">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue