fix: 岗位搜索标签positionCode显示不对

This commit is contained in:
TsMask
2024-04-17 09:47:45 +08:00
parent 1a2939ab01
commit 17e72f1db1

View File

@@ -406,7 +406,11 @@ function fnGetList(pageNum?: number) {
} }
tablePagination.total = res.total; tablePagination.total = res.total;
tableState.data = res.rows; tableState.data = res.rows;
if (tablePagination.total <=(queryParams.pageNum - 1) * tablePagination.pageSize &&queryParams.pageNum !== 1) { if (
tablePagination.total <=
(queryParams.pageNum - 1) * tablePagination.pageSize &&
queryParams.pageNum !== 1
) {
tableState.loading = false; tableState.loading = false;
fnGetList(queryParams.pageNum - 1); fnGetList(queryParams.pageNum - 1);
} }
@@ -439,22 +443,22 @@ onMounted(() => {
<a-row :gutter="16"> <a-row :gutter="16">
<a-col :lg="6" :md="12" :xs="24"> <a-col :lg="6" :md="12" :xs="24">
<a-form-item <a-form-item
:label="t('views.system.post.positionId')" :label="t('views.system.post.positionName')"
name="postCode" name="postName"
> >
<a-input <a-input
v-model:value="queryParams.postCode" v-model:value="queryParams.postName"
allow-clear allow-clear
></a-input> ></a-input>
</a-form-item> </a-form-item>
</a-col> </a-col>
<a-col :lg="6" :md="12" :xs="24"> <a-col :lg="6" :md="12" :xs="24">
<a-form-item <a-form-item
:label="t('views.system.post.positionName')" :label="t('views.system.post.positionCode')"
name="postName" name="postCode"
> >
<a-input <a-input
v-model:value="queryParams.postName" v-model:value="queryParams.postCode"
allow-clear allow-clear
></a-input> ></a-input>
</a-form-item> </a-form-item>