样式调整

This commit is contained in:
曹磊 2026-03-20 17:35:46 +08:00
parent 0ac4842f4b
commit a180010fb8
23 changed files with 110 additions and 56 deletions

View File

@ -106,6 +106,11 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
width: 300, width: 300,
fixed: 'right', fixed: 'right',
}, },
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
beforeFetch: async (params) => { beforeFetch: async (params) => {
return Object.assign(params, queryParam); return Object.assign(params, queryParam);
}, },

View File

@ -81,6 +81,11 @@
fieldMapToTime: [ fieldMapToTime: [
], ],
}, },
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 290, width: 290,
fixed:'right' fixed:'right'

View File

@ -108,6 +108,11 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
// labelWidth: 200, // labelWidth: 200,
schemas: searchFormSchema, schemas: searchFormSchema,
}, },
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 180, width: 180,
fixed: 'right', fixed: 'right',

View File

@ -57,6 +57,11 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
// labelWidth: 200, // labelWidth: 200,
schemas: searchFormSchema, schemas: searchFormSchema,
}, },
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 180, width: 180,
fixed: 'right', fixed: 'right',

View File

@ -79,6 +79,11 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
useSearchForm: false, useSearchForm: false,
immediate: false, immediate: false,
showActionColumn: false, showActionColumn: false,
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 120, width: 120,
fixed: 'right', fixed: 'right',

View File

@ -73,6 +73,11 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
useSearchForm: false, useSearchForm: false,
immediate: false, immediate: false,
showActionColumn: false, showActionColumn: false,
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 120, width: 120,
fixed: 'right', fixed: 'right',

View File

@ -1,5 +1,5 @@
<template> <template>
<div class="p-2"> <div>
<a-tabs v-model:activeKey="activeKey" type="card" @change="handleChange"> <a-tabs v-model:activeKey="activeKey" type="card" @change="handleChange">
<a-tab-pane key="3" tab="抄表"> <a-tab-pane key="3" tab="抄表">
<ApiRequestLogList ref="ApiRequestLogListModal3"></ApiRequestLogList> <ApiRequestLogList ref="ApiRequestLogListModal3"></ApiRequestLogList>

View File

@ -17,7 +17,7 @@ import DepartUtilsList from './ApiLogList.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>('80%'); const width = ref<string>('1200');
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();

View File

@ -1,5 +1,5 @@
<template> <template>
<div class="p-2"> <div>
<a-tabs v-model:activeKey="activeKey" type="card" @change="handleChange"> <a-tabs v-model:activeKey="activeKey" type="card" @change="handleChange">
<a-tab-pane key="42" tab="抄表"> <a-tab-pane key="42" tab="抄表">
<ApiRequestLogList ref="ApiRequestLogListModal42"></ApiRequestLogList> <ApiRequestLogList ref="ApiRequestLogListModal42"></ApiRequestLogList>

View File

@ -17,7 +17,7 @@ import WaterApiLogList from './WaterApiLogList.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>('80%'); const width = ref<string>('1200');
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();

View File

@ -105,6 +105,11 @@ import { defHttp } from '/@/utils/http/axios';
fieldMapToTime: [ fieldMapToTime: [
], ],
}, },
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 290, width: 290,
fixed:'right' fixed:'right'

View File

@ -122,6 +122,11 @@
fieldMapToTime: [ fieldMapToTime: [
], ],
}, },
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 200, width: 200,
fixed:'right' fixed:'right'

View File

@ -1,5 +1,5 @@
<template> <template>
<a-drawer :title="title" :width="'70vw'" v-model:visible="visible" :closable="true" <a-drawer :title="title" v-model:visible="visible" :closable="true"
:footer-style="{ textAlign: 'right' }" :bodyStyle="{ padding: '14px' }" @close="handleCancel"> :footer-style="{ textAlign: 'right' }" :bodyStyle="{ padding: '14px' }" @close="handleCancel">
<RemarksList ref="remarksList" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false"></RemarksList> <RemarksList ref="remarksList" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false"></RemarksList>
<template #footer> <template #footer>
@ -14,7 +14,7 @@ import RemarksList from './RemarksList.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<number>(1600); const width = ref<number>(1200);
const visible = ref<boolean>(false); const visible = ref<boolean>(false);
const disableSubmit = ref<boolean>(false); const disableSubmit = ref<boolean>(false);
const remarksList = ref(); const remarksList = ref();

View File

@ -60,6 +60,11 @@ import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectT
schemas: searchFormSchema, schemas: searchFormSchema,
showAdvancedButton: false showAdvancedButton: false
}, },
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 90, width: 90,
fixed:'right' fixed:'right'

View File

@ -1,5 +1,5 @@
<template> <template>
<div class="p-2"> <div>
<a-tabs v-model:activeKey="activeKey" type="card" @change="handleChange"> <a-tabs v-model:activeKey="activeKey" type="card" @change="handleChange">
<a-tab-pane key="1" tab="抄表"> <a-tab-pane key="1" tab="抄表">
<ApiLogList ref="apiLogList"></ApiLogList> <ApiLogList ref="apiLogList"></ApiLogList>

View File

@ -65,6 +65,11 @@ const { prefixCls, tableContext } = useListPage({
// fieldMapToTime: [ // fieldMapToTime: [
// ], // ],
// }, // },
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 120, width: 120,
fixed: 'right', fixed: 'right',
@ -136,31 +141,32 @@ defineExpose({
<style lang="less" scoped> <style lang="less" scoped>
.jeecg-basic-table-form-container { .jeecg-basic-table-form-container {
padding: 0; padding: 0;
margin-bottom: 12px;
.table-page-search-submitButtons { .table-page-search-submitButtons {
display: block; display: block;
margin-bottom: 12px; margin-bottom: 24px;
white-space: nowrap; white-space: nowrap;
} }
.query-group-cust{
.query-group-cust {
min-width: 100px !important; min-width: 100px !important;
} }
.query-group-split-cust{
.query-group-split-cust {
width: 30px; width: 30px;
display: inline-block; display: inline-block;
text-align: center text-align: center
} }
.ant-form-item-label >label {
.ant-form-item:not(.ant-form-item-with-help) { position: relative;
margin-bottom: 12px; display: inline-flex;
align-items: center;
max-width: 100%;
color: rgba(51, 51, 51, 0.88);
font-size: 14px;
}
.ant-form-item:not(.ant-form-item-with-help){
margin-bottom: 16px;
height: 32px; height: 32px;
} }
:deep(.ant-picker),:deep(.ant-input-number){
:deep(.ant-picker),
:deep(.ant-input-number) {
width: 100%; width: 100%;
} }
} }

View File

@ -89,6 +89,11 @@
fieldMapToTime: [ fieldMapToTime: [
], ],
}, },
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 180, width: 180,
fixed:'right' fixed:'right'

View File

@ -1,6 +1,6 @@
<template> <template>
<a-spin :spinning="confirmLoading"> <a-spin :spinning="confirmLoading">
<div class="p-2"> <div>
<!--查询区域--> <!--查询区域-->
<div class="jeecg-basic-table-form-container"> <div class="jeecg-basic-table-form-container">
<a-form ref="formRef" :model="queryParam" :label-col="labelCol" <a-form ref="formRef" :model="queryParam" :label-col="labelCol"
@ -93,6 +93,11 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
useSearchForm: false, useSearchForm: false,
showIndexColumn: true, showIndexColumn: true,
showActionColumn: false, showActionColumn: false,
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 180, width: 180,
fixed: 'right', fixed: 'right',
@ -220,9 +225,4 @@ defineExpose({
width: 100%; width: 100%;
} }
} }
.p-2{
height: calc(100vh - 120px);
}
</style> </style>

View File

@ -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" :model="queryParam" :label-col="labelCol" <a-form ref="formRef" :model="queryParam" :label-col="labelCol"
@ -82,6 +82,11 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
useSearchForm: false, useSearchForm: false,
showIndexColumn: true, showIndexColumn: true,
showActionColumn: false, showActionColumn: false,
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 180, width: 180,
fixed: 'right', fixed: 'right',
@ -190,8 +195,5 @@ defineExpose({
} }
} }
.p-2{
height: calc(100vh - 120px);
}
</style> </style>

View File

@ -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" :model="queryParam" :label-col="labelCol" <a-form ref="formRef" :model="queryParam" :label-col="labelCol"
@ -77,6 +77,11 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
canResize: false, canResize: false,
useSearchForm: false, useSearchForm: false,
showIndexColumn: true, showIndexColumn: true,
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 180, width: 180,
fixed: 'right', fixed: 'right',
@ -192,9 +197,4 @@ defineExpose({
width: 100%; width: 100%;
} }
} }
.p-2{
height: calc(100vh - 120px);
}
</style> </style>

View File

@ -1,6 +1,6 @@
<template> <template>
<a-spin :spinning="confirmLoading"> <a-spin :spinning="confirmLoading">
<div class="p-2"> <div>
<!--查询区域--> <!--查询区域-->
<div class="jeecg-basic-table-form-container"> <div class="jeecg-basic-table-form-container">
<a-form ref="formRef" :model="queryParam" :label-col="labelCol" <a-form ref="formRef" :model="queryParam" :label-col="labelCol"
@ -92,6 +92,11 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
useSearchForm: false, useSearchForm: false,
showIndexColumn: true, showIndexColumn: true,
showActionColumn: false, showActionColumn: false,
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 180, width: 180,
fixed: 'right', fixed: 'right',
@ -217,9 +222,4 @@ defineExpose({
width: 100%; width: 100%;
} }
} }
.p-2{
height: calc(100vh - 120px);
}
</style> </style>

View File

@ -1,6 +1,6 @@
<template> <template>
<a-spin :spinning="confirmLoading"> <a-spin :spinning="confirmLoading">
<div class="p-2"> <div>
<!--查询区域--> <!--查询区域-->
<div class="jeecg-basic-table-form-container"> <div class="jeecg-basic-table-form-container">
<a-form ref="formRef" :model="queryParam" :label-col="labelCol" <a-form ref="formRef" :model="queryParam" :label-col="labelCol"
@ -119,6 +119,11 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
canResize: false, canResize: false,
useSearchForm: false, useSearchForm: false,
showIndexColumn: true, showIndexColumn: true,
pagination: {
current: 1,
pageSize: 15,
pageSizeOptions: ['15', '50', '70', '100'],
},
actionColumn: { actionColumn: {
width: 100, width: 100,
fixed: 'right', fixed: 'right',
@ -293,8 +298,4 @@ defineExpose({
} }
} }
.p-2{
height: calc(100vh - 120px);
}
</style> </style>

View File

@ -221,7 +221,6 @@ function searchReset() {
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
.jeecg-basic-table-form-container { .jeecg-basic-table-form-container {
padding: 0; padding: 0;
.table-page-search-submitButtons { .table-page-search-submitButtons {
@ -246,8 +245,4 @@ function searchReset() {
} }
} }
.p-2{
height: calc(100vh - 120px);
}
</style> </style>