fix : 用户nickname查询

This commit is contained in:
clay
2024-05-23 20:29:24 +08:00
parent d12fb8a12b
commit 5eb7e34571

View File

@@ -53,15 +53,6 @@ const searchConfig = ref([
clearable: true clearable: true
} }
}, },
{
label: '用户名称',
prop: 'nickName',
component: 'el-input',
props: {
placeholder: '请输入',
clearable: true
}
},
{ {
label: '状态', label: '状态',
prop: 'state', prop: 'state',
@@ -134,7 +125,7 @@ const tableConfig = reactive({
<el-button type="danger" link onClick={()=>handleDel(row)}>删除</el-button> : <el-button type="danger" link onClick={()=>handleDel(row)}>删除</el-button> :
null null
} }
</div> </div>
) )
} }
@@ -191,7 +182,7 @@ const handleDel = (row) => {
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消' cancelButtonText: '取消'
}).then(async res => { }).then(async res => {
// const { code } = await // const { code } = await
}).catch(()=>{}) }).catch(()=>{})
} }
@@ -205,4 +196,4 @@ const headBtnClick = (key) => {
<style lang="scss" scoped> <style lang="scss" scoped>
</style> </style>