Merge pull request 'master' (#691) from master into prod

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

View File

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

View File

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

View File

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