取消过滤条件

This commit is contained in:
lai
2024-07-23 19:17:45 +08:00
parent 5f8e9954fe
commit 447ee401cb
9 changed files with 9 additions and 43 deletions

View File

@@ -640,7 +640,7 @@ function fnTypeChange(value: any) {
/** 查询最新的UPF的所有RMUID*/
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.rows)) {
dict.allRmUid = res.rows.map((item: any) => {
return { option: item.rmUid, value: item.rmUid };
return { label: item.rmUid, value: item.rmUid };
});
}
});
@@ -1061,7 +1061,6 @@ onMounted(() => {
v-model:value="modalState.typeFrom.tenancyKey"
allow-clear
:options="dict.allRmUid"
:filter-option="filterOption"
/>
</a-form-item>
@@ -1087,7 +1086,6 @@ onMounted(() => {
<a-auto-complete
v-model:value="modalState.typeFrom.radioId"
:options="dict.allRadio"
:filter-option="filterOption"
style="width: 20%"
allow-clear
/>