修改bug
This commit is contained in:
parent
6e29053285
commit
78c3e4d3dc
|
|
@ -72,10 +72,16 @@ export const columns: BasicColumn[] = [
|
|||
},
|
||||
width: 100
|
||||
},
|
||||
// {
|
||||
// title: '审核内容',
|
||||
// align: "center",
|
||||
// dataIndex: 'applyContent',
|
||||
// width: 150
|
||||
// },
|
||||
{
|
||||
title: '审核内容',
|
||||
title: '入驻日期',
|
||||
align: "center",
|
||||
dataIndex: 'applyContent',
|
||||
dataIndex: 'createTime',
|
||||
width: 150
|
||||
},
|
||||
];
|
||||
|
|
@ -151,7 +157,7 @@ export const columns2: BasicColumn[] = [
|
|||
width: 100
|
||||
},
|
||||
{
|
||||
title: '审核内容',
|
||||
title: '驳回原因',
|
||||
align: "center",
|
||||
dataIndex: 'applyContent',
|
||||
width: 150
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
<a-col :lg="6">
|
||||
<a-form-item name="paramTitle">
|
||||
<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-col>
|
||||
<a-col :lg="6">
|
||||
|
|
@ -22,6 +22,12 @@
|
|||
</a-select>
|
||||
</a-form-item>
|
||||
</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">
|
||||
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
||||
<a-col :lg="6">
|
||||
|
|
@ -98,13 +104,13 @@
|
|||
const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] = tableContext;
|
||||
const labelCol = reactive({
|
||||
xs:24,
|
||||
sm:4,
|
||||
xl:4,
|
||||
xxl:4
|
||||
sm:8,
|
||||
xl:8,
|
||||
xxl:8
|
||||
});
|
||||
const wrapperCol = reactive({
|
||||
xs: 24,
|
||||
sm: 20,
|
||||
sm: 18,
|
||||
});
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue