Browse Source

根据角色筛选效果实现

qin_26
liwenxuan 2 months ago
parent
commit
14daa9ab40
  1. 7
      src/components/DesignForm/formControlPropertiNew.vue

7
src/components/DesignForm/formControlPropertiNew.vue

@ -4232,6 +4232,7 @@ function searchClick(){
function resetClick(){
expandQueryParamNumber.value = ''
expandQueryParamName.value = ''
expandQueryParam.value = ''
handleLeftTabChange(activeTab.value)
}
@ -5932,7 +5933,7 @@ const aiAgentList = ref([
>全部移除</el-button
>
</div>
<el-table :data="controlData.control.roleCheckDataList" style="height: 440px">
<el-table :data="controlData.control.roleCheckDataList" style="height: 440px;padding-top: 2px;" :row-style="{ height: '39.8px' }" :cell-style="{ padding: '1.5px 0' }">
<!-- <el-table-column prop="userName" label="照片" width="60px" align="center">
<template #default="scope">
<el-avatar
@ -5949,9 +5950,9 @@ const aiAgentList = ref([
{{ scope.row.name }}({{ scope.row.number }})
</template>
</el-table-column>
<el-table-column label="操作" width="60px">
<el-table-column label="" width="60px" >
<template #default="{ row }">
<el-button size="small" type="danger" @click="delRowClick(row)"
<el-button size="small" type="danger" @click="delRowClick(row)"
>移除</el-button
>
</template>

Loading…
Cancel
Save