修改bug

This commit is contained in:
yangjun 2026-03-06 11:16:52 +08:00
parent 6e29053285
commit 78c3e4d3dc
2 changed files with 20 additions and 8 deletions

View File

@ -72,10 +72,16 @@ export const columns: BasicColumn[] = [
}, },
width: 100 width: 100
}, },
// {
// title: '审核内容',
// align: "center",
// dataIndex: 'applyContent',
// width: 150
// },
{ {
title: '审核内容', title: '入驻日期',
align: "center", align: "center",
dataIndex: 'applyContent', dataIndex: 'createTime',
width: 150 width: 150
}, },
]; ];
@ -151,7 +157,7 @@ export const columns2: BasicColumn[] = [
width: 100 width: 100
}, },
{ {
title: '审核内容', title: '驳回原因',
align: "center", align: "center",
dataIndex: 'applyContent', dataIndex: 'applyContent',
width: 150 width: 150

View File

@ -7,7 +7,7 @@
<a-col :lg="6"> <a-col :lg="6">
<a-form-item name="paramTitle"> <a-form-item name="paramTitle">
<template #label><span title="供应商信息">供应商信息</span></template> <template #label><span title="供应商信息">供应商信息</span></template>
<JInput v-model:value="queryParam.paramTitle" placeholder="请输入供应商名称/负责人/联系电话" /> <a-input v-model:value="queryParam.paramTitle" placeholder="请输入供应商名称/负责人/联系电话" />
</a-form-item> </a-form-item>
</a-col> </a-col>
<a-col :lg="6"> <a-col :lg="6">
@ -22,6 +22,12 @@
</a-select> </a-select>
</a-form-item> </a-form-item>
</a-col> </a-col>
<a-col :lg="6">
<a-form-item name="rzrq">
<template #label><span title="入驻日期">入驻日期</span></template>
<a-date-picker placeholder="请选择入驻日期" v-model:value="queryParam.rzrq" value-format="YYYY-MM-DD" style="width: 100%" allow-clear />
</a-form-item>
</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">
@ -98,13 +104,13 @@
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:4, xl:8,
xxl:4 xxl:8
}); });
const wrapperCol = reactive({ const wrapperCol = reactive({
xs: 24, xs: 24,
sm: 20, sm: 18,
}); });