1、解决供应商审核 审核界面报错

2、供应商搜索改为模糊搜索
This commit is contained in:
1378012178@qq.com 2026-01-26 16:14:48 +08:00
parent e96bdfd192
commit e86a8f90b1
3 changed files with 6 additions and 10 deletions

View File

@ -89,7 +89,7 @@ const opeMediaAddress = import.meta.env.VITE_OPE_MEDIA_ADDRESS
fixed: 'right',
},
beforeFetch: async (params) => {
queryParam.applyStatus = '2'
// queryParam.applyStatus = '2'
return Object.assign(params, queryParam);
},
},

View File

@ -24,6 +24,7 @@
<script lang="ts" setup>
import { ref, nextTick, defineExpose } from 'vue';
import NuConfigSuppliersApplyForm from './NuConfigSuppliersApplyForm.vue'
import NuConfigSuppliersApplyUpInfoForm from './NuConfigSuppliersApplyUpInfoForm.vue'
import JModal from '/@/components/Modal/src/JModal/JModal.vue';

View File

@ -7,32 +7,26 @@
<a-col :lg="6">
<a-form-item name="suppliersName">
<template #label><span title="供应商名称">供应商名</span></template>
<a-input placeholder="请输入供应商名称" v-model:value="queryParam.suppliersName" allow-clear ></a-input>
<j-input placeholder="请输入供应商名称" v-model:value="queryParam.suppliersName" allow-clear></j-input>
</a-form-item>
</a-col>
<a-col :lg="6">
<a-form-item name="personInCharge">
<template #label><span title="负责人">负责人</span></template>
<a-input placeholder="请输入负责人" v-model:value="queryParam.personInCharge" allow-clear ></a-input>
<j-input placeholder="请输入负责人" v-model:value="queryParam.personInCharge" allow-clear ></j-input>
</a-form-item>
</a-col>
<template v-if="toggleSearchStatus">
<a-col :lg="6">
<a-form-item name="contactNumber">
<template #label><span title="联系电话">联系电话</span></template>
<a-input placeholder="请输入联系电话" v-model:value="queryParam.contactNumber" allow-clear ></a-input>
<j-input placeholder="请输入联系电话" v-model:value="queryParam.contactNumber" allow-clear ></j-input>
</a-form-item>
</a-col>
</template>
<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">
<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>
<a @click="toggleSearchStatus = !toggleSearchStatus" style="margin-left: 8px">
{{ toggleSearchStatus ? '收起' : '展开' }}
<Icon :icon="toggleSearchStatus ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" />
</a>
</a-col>
</span>
</a-col>
@ -65,6 +59,7 @@
import { list, deleteOne, batchDelete, getImportUrl, getExportUrl } from './ConfigSuppliersInfo.api';
import { downloadFile } from '/@/utils/common/renderUtils';
import ConfigSuppliersInfoModal from './components/ConfigSuppliersInfoModal.vue'
import JInput from '/@/components/Form/src/jeecg/components/JInput.vue';
import { useUserStore } from '/@/store/modules/user';
import { defHttp } from '/@/utils/http/axios';