|
@@ -3,17 +3,17 @@
|
|
<a-form ref="formRef" name="advanced_search" class="ant-advanced-search-form" :model="searchParams">
|
|
<a-form ref="formRef" name="advanced_search" class="ant-advanced-search-form" :model="searchParams">
|
|
<a-row :gutter="24">
|
|
<a-row :gutter="24">
|
|
<a-col :span="6">
|
|
<a-col :span="6">
|
|
- <a-form-item label="企业名称" :label-col="{span:6}" name="CompanyName">
|
|
|
|
|
|
+ <a-form-item label="企业名称" :label-col="{span:6}" name="companyName">
|
|
<a-input v-model:value="searchParams.companyName" placeholder=""/>
|
|
<a-input v-model:value="searchParams.companyName" placeholder=""/>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :span="6">
|
|
<a-col :span="6">
|
|
- <a-form-item label="统一信用代码" :label-col="{span:6}" name="CompanyCode">
|
|
|
|
|
|
+ <a-form-item label="统一信用代码" :label-col="{span:6}" name="companyCode">
|
|
<a-input v-model:value="searchParams.companyCode" placeholder=""/>
|
|
<a-input v-model:value="searchParams.companyCode" placeholder=""/>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :span="6">
|
|
<a-col :span="6">
|
|
- <a-form-item label="企业状态" :label-col="{span:6}" name="RecordStatus">
|
|
|
|
|
|
+ <a-form-item label="企业状态" :label-col="{span:6}" name="recordStatus">
|
|
<a-select
|
|
<a-select
|
|
ref="select"
|
|
ref="select"
|
|
v-model:value="searchParams.recordStatus"
|
|
v-model:value="searchParams.recordStatus"
|
|
@@ -25,11 +25,28 @@
|
|
</a-select>
|
|
</a-select>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
- <a-col :span="6" style="text-align: right">
|
|
|
|
|
|
+ <a-col :span="6" style="text-align: left">
|
|
<a-button type="primary" html-type="submit" @click="onSearch" >查询</a-button>
|
|
<a-button type="primary" html-type="submit" @click="onSearch" >查询</a-button>
|
|
|
|
+ <a-button
|
|
|
|
+ style="margin: 0 8px"
|
|
|
|
+ @click="
|
|
|
|
+ () => {
|
|
|
|
+ formRef.resetFields();
|
|
|
|
+ loadData();
|
|
|
|
+ }
|
|
|
|
+ ">重置</a-button>
|
|
|
|
+ <a style="font-size: 12px" @click="expand = !expand">
|
|
|
|
+ <template v-if="expand">
|
|
|
|
+ <UpOutlined />
|
|
|
|
+ </template>
|
|
|
|
+ <template v-else>
|
|
|
|
+ <DownOutlined />
|
|
|
|
+ </template>
|
|
|
|
+ {{ expand ? '收缩' : '展开' }}
|
|
|
|
+ </a>
|
|
</a-col>
|
|
</a-col>
|
|
</a-row>
|
|
</a-row>
|
|
- <a-row :gutter="24">
|
|
|
|
|
|
+ <a-row :gutter="24" v-show="expand">
|
|
<a-col :span="6">
|
|
<a-col :span="6">
|
|
<a-form-item label="所属县区" :label-col="{span:6}" name="regionCode">
|
|
<a-form-item label="所属县区" :label-col="{span:6}" name="regionCode">
|
|
<a-select
|
|
<a-select
|
|
@@ -128,6 +145,7 @@ export default defineComponent({
|
|
selectedRowKeys: [],
|
|
selectedRowKeys: [],
|
|
loading: false
|
|
loading: false
|
|
});
|
|
});
|
|
|
|
+ const expand = ref(false);
|
|
const importOptions = ref<ImportProps>({
|
|
const importOptions = ref<ImportProps>({
|
|
title: '导入',
|
|
title: '导入',
|
|
url: 'companyService/company/importCompany ',
|
|
url: 'companyService/company/importCompany ',
|
|
@@ -274,6 +292,7 @@ export default defineComponent({
|
|
columns,
|
|
columns,
|
|
pagination,
|
|
pagination,
|
|
dataList,
|
|
dataList,
|
|
|
|
+ expand,
|
|
institutionEditModelRef,
|
|
institutionEditModelRef,
|
|
handleTableChange,
|
|
handleTableChange,
|
|
onSelectChange,
|
|
onSelectChange,
|