将加盟机构信息、机构加盟申请、机构信息变更三个功能中搜索条件进行变更:企业名称、联系人合并为一个查询组件,查询时同时模糊匹配企业名称、联系人、联系电话
This commit is contained in:
parent
11631ee6b0
commit
45ef787ccf
|
|
@ -7,8 +7,8 @@
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24">
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
<a-form-item name="title">
|
<a-form-item name="title">
|
||||||
<template #label><span title="机构名称">机构名称</span></template>
|
<template #label><span title="企业信息">企业信息</span></template>
|
||||||
<a-input placeholder="请输入机构名称" v-model:value="queryParam.title" allow-clear></a-input>
|
<a-input placeholder="请输入机构名称/负责人/联系电话" v-model:value="queryParam.title" allow-clear></a-input>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
|
|
|
||||||
|
|
@ -6,17 +6,17 @@
|
||||||
:wrapper-col="wrapperCol">
|
:wrapper-col="wrapperCol">
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24">
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
<a-form-item name="comName">
|
<a-form-item name="title">
|
||||||
<template #label><span title="企业名称">企业名称</span></template>
|
<template #label><span title="企业信息">企业信息</span></template>
|
||||||
<JInput v-model:value="queryParam.comName" placeholder="请输入企业名称" />
|
<JInput v-model:value="queryParam.title" placeholder="请输入机构名称/负责人/联系电话" :type="'default'"/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :lg="6">
|
<!-- <a-col :lg="6">
|
||||||
<a-form-item name="orgLeader">
|
<a-form-item name="orgLeader">
|
||||||
<template #label><span title="机构负责人">机构负责人</span></template>
|
<template #label><span title="机构负责人">机构负责人</span></template>
|
||||||
<JInput v-model:value="queryParam.orgLeader" placeholder="请输入机构负责人" />
|
<JInput v-model:value="queryParam.orgLeader" placeholder="请输入机构负责人" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col> -->
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
<a-form-item name="createTime">
|
<a-form-item name="createTime">
|
||||||
<template #label><span title="申请日期">申请日期</span></template>
|
<template #label><span title="申请日期">申请日期</span></template>
|
||||||
|
|
@ -308,6 +308,7 @@ function searchQuery() {
|
||||||
*/
|
*/
|
||||||
function searchReset() {
|
function searchReset() {
|
||||||
formRef.value.resetFields();
|
formRef.value.resetFields();
|
||||||
|
queryParam.title = ''
|
||||||
selectedRowKeys.value = [];
|
selectedRowKeys.value = [];
|
||||||
//刷新数据
|
//刷新数据
|
||||||
reload();
|
reload();
|
||||||
|
|
|
||||||
|
|
@ -6,15 +6,15 @@
|
||||||
:wrapper-col="wrapperCol">
|
:wrapper-col="wrapperCol">
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24">
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
<a-form-item name="comName">
|
<a-form-item name="title">
|
||||||
<template #label><span title="企业名称">企业名称</span></template>
|
<template #label><span title="企业信息">企业信息</span></template>
|
||||||
<JInput v-model:value="queryParam.comName" placeholder="请输入企业名称"/>
|
<JInput v-model:value="queryParam.title" placeholder="请输入机构名称/负责人/联系电话" :type="'default'" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
<a-form-item name="orgLeader">
|
<a-form-item name="orgLeader">
|
||||||
<template #label><span title="机构负责人">机构负责人</span></template>
|
<template #label><span title="机构负责人">机构负责人</span></template>
|
||||||
<JInput v-model:value="queryParam.orgLeader" placeholder="请输入机构负责人"/>
|
<JInput v-model:value="queryParam.orgLeader" placeholder="请输入机构负责人" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
|
|
@ -97,7 +97,7 @@ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
||||||
pagination: {
|
pagination: {
|
||||||
current: 1,
|
current: 1,
|
||||||
pageSize: 15,
|
pageSize: 15,
|
||||||
pageSizeOptions: ['15','50', '70', '100'],
|
pageSizeOptions: ['15', '50', '70', '100'],
|
||||||
},
|
},
|
||||||
beforeFetch: async (params) => {
|
beforeFetch: async (params) => {
|
||||||
let rangerQuery = await setRangeQuery();
|
let rangerQuery = await setRangeQuery();
|
||||||
|
|
@ -221,6 +221,7 @@ function searchQuery() {
|
||||||
*/
|
*/
|
||||||
function searchReset() {
|
function searchReset() {
|
||||||
formRef.value.resetFields();
|
formRef.value.resetFields();
|
||||||
|
queryParam.title = ''
|
||||||
selectedRowKeys.value = [];
|
selectedRowKeys.value = [];
|
||||||
//刷新数据
|
//刷新数据
|
||||||
reload();
|
reload();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue