You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

167 lines
4.7 KiB

<template>
<ContentWrap>
<!-- 搜索工作栏 -->
<el-form
class="-mb-15px"
:model="queryParams"
ref="queryFormRef"
:inline="true"
label-width="100px"
>
<el-form-item label="群组名称" prop="name">
<el-input
v-model="queryParams.name"
placeholder="请输入群组名称"
clearable
@keyup.enter="handleQuery"
class="!w-240px"
/>
</el-form-item>
<el-form-item label="所属机构" prop="orgname">
<el-input
v-model="queryParams.orgname"
placeholder="请输入所属机构"
clearable
@keyup.enter="handleQuery"
class="!w-240px"
/>
</el-form-item>
<el-form-item>
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
<el-button type="primary" plain @click="openForm('create')">
<Icon icon="ep:plus" class="mr-5px" /> 新增
</el-button>
</el-form-item>
</el-form>
</ContentWrap>
<!-- 列表 -->
<ContentWrap>
<el-table
row-key="id"
v-loading="loading"
:data="list"
:stripe="true"
:show-overflow-tooltip="true"
>
<el-table-column label="群组名称" align="center" prop="name" min-width="150px" />
<el-table-column label="所属机构" align="center" prop="orgname" min-width="150px" />
<el-table-column label="群组类型" align="center" prop="type" min-width="100px" />
<el-table-column label="发言时长限制(秒)" align="center" prop="cg_speech_limit_second" min-width="140px">
<template #default="scope">
{{ scope.row.cg_speech_limit_second ?? '-' }}
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remarks" min-width="200px">
<template #default="scope">
{{ scope.row.remarks || '-' }}
</template>
</el-table-column>
<el-table-column label="操作" align="center" min-width="150px" fixed="right">
<template #default="scope">
<el-button link type="primary" @click="openForm('update', scope.row.id)">
编辑
</el-button>
<el-button link type="danger" @click="handleDelete(scope.row.id)">
删除
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<Pagination
:total="total"
v-model:page="queryParams.pageNo"
v-model:limit="queryParams.pageSize"
@pagination="getList"
/>
</ContentWrap>
<!-- 表单弹窗添加/修改 -->
<GroupForm ref="formRef" @success="getList" />
</template>
<script setup lang="ts">
import { getGroupList, deleteGroup, type GroupListParams, type Group } from '@/api/interphone/group'
import GroupForm from './GroupForm.vue'
/** 群组管理 */
defineOptions({ name: 'InterphoneGroup' })
const message = useMessage() // 消息弹窗
const loading = ref(true) // 列表的加载中
const list = ref<Group[]>([]) // 列表的数据
const total = ref(0) // 列表的总页数
const queryParams = reactive<GroupListParams>({
pageNo: 1,
pageSize: 10,
name: undefined,
orgname: undefined
})
const queryFormRef = ref() // 搜索的表单
/** 查询列表 */
const getList = async () => {
loading.value = true
try {
const res = await getGroupList(queryParams)
if (res.code === 20001) {
list.value = res.data || []
total.value = res.count || 0
} else {
message.error(res.msg || '获取群组列表失败')
}
} catch (error) {
console.error('获取群组列表失败:', error)
message.error('获取群组列表失败')
} finally {
loading.value = false
}
}
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.pageNo = 1
getList()
}
/** 重置按钮操作 */
const resetQuery = () => {
queryFormRef.value.resetFields()
handleQuery()
}
/** 添加/修改操作 */
const formRef = ref()
const openForm = (type: 'create' | 'update', id?: string) => {
formRef.value.open(type, id)
}
/** 删除按钮操作 */
const handleDelete = async (id: string) => {
try {
await message.delConfirm('确定要删除该群组吗?')
const res = await deleteGroup({ id })
if (res.code === 20001) {
message.success('删除成功')
await getList()
} else {
message.error(res.msg || '删除失败')
}
} catch (error) {
if (error !== 'cancel') {
console.error('删除群组失败:', error)
message.error('删除失败')
}
}
}
/** 初始化 **/
onMounted(() => {
getList()
})
</script>