Merge pull request 'fix : 下拉框箭头显示' (#690) from dd into master

Reviewed-on: http://git.feashow.cn/clay/mosr-web/pulls/690
This commit is contained in:
2024-08-11 14:31:28 +00:00
3 changed files with 13 additions and 8 deletions

View File

@@ -22,9 +22,9 @@
<el-table-column
prop="nodeName"
label="节点名称">
<template #default="scope">
{{scope.row.nodeId==-1?'发起节点':scope.row.nodeName}}
</template>
<!-- <template #default="scope">-->
<!-- {{scope.row.nodeId==-1?'发起节点':scope.row.nodeName}}-->
<!-- </template>-->
</el-table-column>
<el-table-column
prop="name"

View File

@@ -54,7 +54,8 @@ const searchConfig = ref([
clearable: true,
data: [],
filterable: true,
checkStrictly: true
checkStrictly: true,
remote: true
},
},
{
@@ -83,7 +84,8 @@ const searchConfig = ref([
placeholder: '请选择',
clearable: true,
cacheKey: 'normal_disable',
remote: true
remote: true,
filterable: true
}
},
{

View File

@@ -25,7 +25,8 @@ const searchConfig = ref([
clearable: true,
data: [],
filterable: true,
checkStrictly: true
checkStrictly: true,
remote: true
},
on: {
change: async (val) =>{
@@ -43,7 +44,8 @@ const searchConfig = ref([
clearable: true,
data: [],
filterable: true,
checkStrictly: true
checkStrictly: true,
remote: true
}
},
{
@@ -72,7 +74,8 @@ const searchConfig = ref([
placeholder: '请输入',
cacheKey: 'normal_disable',
clearable: true,
remote: true
remote: true,
filterable:true
}
},
])