修改bug
This commit is contained in:
parent
23d41237ed
commit
ce0a28c298
|
@ -11,6 +11,12 @@ export const columns: BasicColumn[] = [
|
||||||
dataIndex: 'orgName',
|
dataIndex: 'orgName',
|
||||||
width:260
|
width:260
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '机构编码',
|
||||||
|
align: "center",
|
||||||
|
dataIndex: 'orgCode',
|
||||||
|
width:120
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '平台类型',
|
title: '平台类型',
|
||||||
align: "center",
|
align: "center",
|
||||||
|
@ -21,12 +27,12 @@ export const columns: BasicColumn[] = [
|
||||||
align: "center",
|
align: "center",
|
||||||
dataIndex: 'workType_dictText'
|
dataIndex: 'workType_dictText'
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
title: '标题',
|
// title: '标题',
|
||||||
align: "center",
|
// align: "center",
|
||||||
dataIndex: 'title',
|
// dataIndex: 'title',
|
||||||
width:260
|
// width:260
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
title: '工单状态',
|
title: '工单状态',
|
||||||
align: "center",
|
align: "center",
|
||||||
|
|
|
@ -5,17 +5,22 @@
|
||||||
<a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
|
<a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24">
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
<a-form-item name="requestStatus">
|
<a-form-item name="paramStatus">
|
||||||
<template #label><span title="请求状态">请求状态</span></template>
|
<template #label><span title="反馈状态">本次反馈状态</span></template>
|
||||||
<j-select-multiple placeholder="请选择请求状态" v-model:value="queryParam.requestStatus" dictCode="dbsb_status" allow-clear />
|
<a-select placeholder="请选择反馈状态" v-model:value="queryParam.paramStatus" all-clear>
|
||||||
|
<a-select-option value="">全部</a-select-option>
|
||||||
|
<a-select-option value="0">成功</a-select-option>
|
||||||
|
<a-select-option value="1">失败</a-select-option>
|
||||||
|
</a-select>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
<a-form-item name="resolveStatus">
|
<a-form-item name="paramsRequestTime">
|
||||||
<template #label><span title="反馈状态">反馈状态</span></template>
|
<template #label><span title="抄表时间">本次抄表时间</span></template>
|
||||||
<j-select-multiple placeholder="请选择反馈状态" v-model:value="queryParam.resolveStatus" dictCode="dbsb_status" allow-clear />
|
<a-date-picker placeholder="请选择日期" format="YYYY-MM-DD" valueFormat="YYYY-MM-DD" v-model:value="queryParam.paramsRequestTime" style="width: 100%" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
|
||||||
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
||||||
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
|
|
|
@ -1,4 +1,25 @@
|
||||||
<template>
|
<template>
|
||||||
|
<div class="p-2">
|
||||||
|
<!--查询区域-->
|
||||||
|
<div class="jeecg-basic-table-form-container">
|
||||||
|
<a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
|
||||||
|
<a-row :gutter="24">
|
||||||
|
<a-col :lg="6">
|
||||||
|
<a-form-item name="paramsRequestTime">
|
||||||
|
<template #label><span title="抄表时间">操作时间</span></template>
|
||||||
|
<a-date-picker placeholder="请选择日期" format="YYYY-MM-DD" valueFormat="YYYY-MM-DD" v-model:value="queryParam.paramsRequestTime" style="width: 100%" />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
|
||||||
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
||||||
|
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
||||||
|
<a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery">查询</a-button>
|
||||||
|
<a-button type="primary" preIcon="ant-design:reload-outlined" @click="searchReset" style="margin-left: 8px">重置</a-button>
|
||||||
|
</span>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</a-form>
|
||||||
|
</div>
|
||||||
<!--引用表格-->
|
<!--引用表格-->
|
||||||
<BasicTable @register="registerTable">
|
<BasicTable @register="registerTable">
|
||||||
<!--插槽:table标题-->
|
<!--插槽:table标题-->
|
||||||
|
@ -7,6 +28,7 @@
|
||||||
<template v-slot:bodyCell="{ column, record, index, text }">
|
<template v-slot:bodyCell="{ column, record, index, text }">
|
||||||
</template>
|
</template>
|
||||||
</BasicTable>
|
</BasicTable>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" name="yiweilian-apiLogList" setup>
|
<script lang="ts" name="yiweilian-apiLogList" setup>
|
||||||
|
@ -31,16 +53,15 @@
|
||||||
canResize:false,
|
canResize:false,
|
||||||
showActionColumn: false,
|
showActionColumn: false,
|
||||||
// showTableSetting: false,
|
// showTableSetting: false,
|
||||||
formConfig: {
|
// formConfig: {
|
||||||
//labelWidth: 120,
|
// schemas: logQuerySchema,
|
||||||
schemas: logQuerySchema,
|
// autoSubmitOnEnter:false,
|
||||||
autoSubmitOnEnter:false,
|
// showAdvancedButton:false,
|
||||||
showAdvancedButton:false,
|
// fieldMapToNumber: [
|
||||||
fieldMapToNumber: [
|
// ],
|
||||||
],
|
// fieldMapToTime: [
|
||||||
fieldMapToTime: [
|
// ],
|
||||||
],
|
// },
|
||||||
},
|
|
||||||
actionColumn: {
|
actionColumn: {
|
||||||
width: 120,
|
width: 120,
|
||||||
fixed: 'right',
|
fixed: 'right',
|
||||||
|
@ -110,5 +131,28 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
.jeecg-basic-table-form-container {
|
||||||
|
padding: 0;
|
||||||
|
.table-page-search-submitButtons {
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
.query-group-cust{
|
||||||
|
min-width: 100px !important;
|
||||||
|
}
|
||||||
|
.query-group-split-cust{
|
||||||
|
width: 30px;
|
||||||
|
display: inline-block;
|
||||||
|
text-align: center
|
||||||
|
}
|
||||||
|
.ant-form-item:not(.ant-form-item-with-help){
|
||||||
|
margin-bottom: 16px;
|
||||||
|
height: 32px;
|
||||||
|
}
|
||||||
|
:deep(.ant-picker),:deep(.ant-input-number){
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue