case-data-admin/src/views/business/case-clinical-article/case-clinical-article-list.vue

419 lines
13 KiB
Vue

<!--
* 病例库-临床-文章
*
* @Author: xing
* @Date: 2025-08-04 10:17:15
* @Copyright gdxz
-->
<template>
<!---------- 查询表单form begin ----------->
<a-form class="smart-query-form">
<a-row class="smart-query-form-row">
<a-form-item label="关键字" class="smart-query-form-item">
<a-input style="width: 200px" v-model:value="queryForm.keywords" placeholder="疾病名称/标题/作者" />
</a-form-item>
<a-form-item label="状态" name="articleStatus" class="smart-query-form-item">
<SmartEnumSelect enum-name="STATUS_ENUM" v-model:value="queryForm.articleStatus" width="160px" />
</a-form-item>
<a-form-item class="smart-query-form-item">
<a-button type="primary" @click="onSearch">
<template #icon>
<SearchOutlined />
</template>
查询
</a-button>
<a-button @click="resetQuery" class="smart-margin-left10">
<template #icon>
<ReloadOutlined />
</template>
重置
</a-button>
</a-form-item>
</a-row>
</a-form>
<!---------- 查询表单form end ----------->
<a-card size="small" :bordered="false" :hoverable="true">
<!---------- 表格操作行 begin ----------->
<a-row class="smart-table-btn-block">
<div class="smart-table-operate-block">
<a-button @click="showForm" type="primary" size="small">
<template #icon>
<PlusOutlined />
</template>
新建
</a-button>
<a-button @click="confirmBatchDelete" type="primary" danger size="small" :disabled="selectedRowKeyList.length == 0">
<template #icon>
<DeleteOutlined />
</template>
批量删除
</a-button>
</div>
<div class="smart-table-setting-block">
<TableOperator v-model="columns" :tableId="null" :refresh="queryData" />
</div>
</a-row>
<!---------- 表格操作行 end ----------->
<!---------- 表格 begin ----------->
<a-table
size="small"
:scroll="{ y: 800 }"
:dataSource="tableData"
:columns="columns"
rowKey="articleId"
bordered
:loading="tableLoading"
:pagination="false"
:row-selection="{ selectedRowKeys: selectedRowKeyList, onChange: onSelectChange }"
>
<template #bodyCell="{ text, record, column }">
<template v-if="column.dataIndex === 'certImage'">
<FilePreview :file-list="text" type="picture" />
</template>
<template v-if="column.dataIndex === 'shareQrcode'">
<FilePreview :file-list="text" type="picture" />
</template>
<template v-if="column.dataIndex === 'caseClinicalArticleAuthor'">
<div v-if="text && text.length > 0" class="author-list-display">
<div v-for="author in text" :key="author.authorId" class="author-item-display">
<span class="author-name">{{ author.caseClinicalDoctor?.doctorName }}</span>
<span class="author-hospital">{{ author.caseClinicalDoctor?.hospitalName }}</span>
</div>
</div>
<span v-else>-</span>
</template>
<template v-if="column.dataIndex === 'caseClinicalArticleLabel'">
<div v-if="text && text.length > 0" class="label-list-display">
<div v-for="label in text" :key="label.articleLabelId" class="label-item-display">
<span class="label-name">{{ label.labelName }}</span>
</div>
</div>
<span v-else>-</span>
</template>
<template v-if="column.dataIndex === 'articleStatus'">
<a-switch
:checked="text === 1"
@change="(checked) => onStatusChange(record, checked)"
:loading="record.statusLoading"
size="small"
/>
</template>
<template v-if="column.dataIndex === 'articleTitle'">
<div class="text-wrap">{{ text }}</div>
</template>
<template v-if="column.dataIndex === 'pushDate'">
<div class="text-wrap">{{ text }}</div>
</template>
<template v-if="column.dataIndex === 'createdAt'">
<div class="text-wrap">{{ text }}</div>
</template>
<template v-if="column.dataIndex === 'action'">
<div class="smart-table-operate">
<a-button @click="showForm(record)" type="link">编辑</a-button>
<a-button @click="onDelete(record)" danger type="link">删除</a-button>
</div>
</template>
</template>
</a-table>
<!---------- 表格 end ----------->
<div class="smart-query-table-page">
<a-pagination
showSizeChanger
showQuickJumper
show-less-items
:pageSizeOptions="PAGE_SIZE_OPTIONS"
:defaultPageSize="queryForm.pageSize"
v-model:current="queryForm.pageNum"
v-model:pageSize="queryForm.pageSize"
:total="total"
@change="queryData"
@showSizeChange="queryData"
:show-total="(total) => `${total}`"
/>
</div>
<CaseClinicalArticleForm ref="formRef" @reloadList="queryData"/>
</a-card>
</template>
<script setup>
import { reactive, ref, onMounted } from 'vue';
import { message, Modal } from 'ant-design-vue';
import { SmartLoading } from '/@/components/framework/smart-loading';
import { caseClinicalArticleApi } from '/@/api/business/case-clinical-article/case-clinical-article-api';
import { PAGE_SIZE_OPTIONS } from '/@/constants/common-const';
import { smartSentry } from '/@/lib/smart-sentry';
import TableOperator from '/@/components/support/table-operator/index.vue';
import FilePreview from '/@/components/support/file-preview/index.vue';
import CaseClinicalArticleForm from './case-clinical-article-form.vue';
import SmartEnumSelect from "/@/components/framework/smart-enum-select/index.vue";
// ---------------------------- 表格列 ----------------------------
const columns = ref([
{
title: '标题',
dataIndex: 'articleTitle',
ellipsis: true,
width: 200,
},
{
title: '作者',
dataIndex: 'caseClinicalArticleAuthor',
ellipsis: true,
width: 200,
},
{
title: '标签',
dataIndex: 'caseClinicalArticleLabel',
ellipsis: true,
width: 200,
},
{
title: '状态',
dataIndex: 'articleStatus',
resizable: true,
filterOptions: {
type: 'enum-select',
enumName: 'STATUS_ENUM',
},
width: 150,
},
{
title: '阅读量',
dataIndex: 'readNum',
ellipsis: true,
},
{
title: '收藏量',
dataIndex: 'collectNum',
ellipsis: true,
},
{
title: '评论数',
dataIndex: 'commentNum',
ellipsis: true,
},
{
title: '发表时间',
dataIndex: 'pushDate',
ellipsis: true,
},
{
title: '创建时间',
dataIndex: 'createdAt',
ellipsis: true,
},
{
title: '操作',
dataIndex: 'action',
fixed: 'right',
width: 90,
},
]);
// ---------------------------- 查询数据表单和方法 ----------------------------
const queryFormState = {
keywords: undefined, //关键字
articleStatus: undefined, //状态
pageNum: 1,
pageSize: 10,
};
// 查询表单form
const queryForm = reactive({ ...queryFormState });
// 表格加载loading
const tableLoading = ref(false);
// 表格数据
const tableData = ref([]);
// 总数
const total = ref(0);
// 重置查询条件
function resetQuery() {
let pageSize = queryForm.pageSize;
Object.assign(queryForm, queryFormState);
queryForm.pageSize = pageSize;
queryData();
}
// 搜索
function onSearch(){
queryForm.pageNum = 1;
queryData();
}
// 查询数据
async function queryData() {
tableLoading.value = true;
try {
let queryResult = await caseClinicalArticleApi.queryPage(queryForm);
tableData.value = queryResult.data.list;
total.value = queryResult.data.total;
} catch (e) {
smartSentry.captureError(e);
} finally {
tableLoading.value = false;
}
}
onMounted(queryData);
// ---------------------------- 添加/修改 ----------------------------
const formRef = ref();
function showForm(data) {
formRef.value.show(data);
}
// ---------------------------- 单个删除 ----------------------------
//确认删除
function onDelete(data){
Modal.confirm({
title: '提示',
content: '确定要删除选吗?',
okText: '删除',
okType: 'danger',
onOk() {
requestDelete(data);
},
cancelText: '取消',
onCancel() {},
});
}
//请求删除
async function requestDelete(data){
SmartLoading.show();
try {
let deleteForm = {
goodsIdList: selectedRowKeyList.value,
};
await caseClinicalArticleApi.delete(data.articleId);
message.success('删除成功');
queryData();
} catch (e) {
smartSentry.captureError(e);
} finally {
SmartLoading.hide();
}
}
// ---------------------------- 批量删除 ----------------------------
// 选择表格行
const selectedRowKeyList = ref([]);
function onSelectChange(selectedRowKeys) {
selectedRowKeyList.value = selectedRowKeys;
}
// 批量删除
function confirmBatchDelete() {
Modal.confirm({
title: '提示',
content: '确定要批量删除这些数据吗?',
okText: '删除',
okType: 'danger',
onOk() {
requestBatchDelete();
},
cancelText: '取消',
onCancel() {},
});
}
//请求批量删除
async function requestBatchDelete() {
try {
SmartLoading.show();
await caseClinicalArticleApi.batchDelete(selectedRowKeyList.value);
message.success('删除成功');
queryData();
} catch (e) {
smartSentry.captureError(e);
} finally {
SmartLoading.hide();
}
}
// ---------------------------- 状态切换 ----------------------------
// 状态切换
async function onStatusChange(record, checked) {
try {
record.statusLoading = true;
const newStatus = checked ? 1 : 2;
await caseClinicalArticleApi.updateStatus(record.articleId, newStatus);
record.articleStatus = newStatus;
message.success('状态更新成功');
} catch (e) {
smartSentry.captureError(e);
// 恢复原状态
record.articleStatus = checked ? 2 : 1;
} finally {
record.statusLoading = false;
}
}
</script>
<style scoped>
.author-list-display {
display: flex;
flex-direction: column;
gap: 2px;
}
.author-item-display {
display: flex;
flex-direction: column;
gap: 1px;
}
.author-item-display .author-name {
font-weight: 500;
color: #262626;
font-size: 12px;
}
.author-item-display .author-hospital {
color: #8c8c8c;
font-size: 11px;
}
.label-list-display {
display: flex;
flex-direction: column;
gap: 2px;
}
.label-item-display {
display: flex;
flex-direction: column;
gap: 1px;
}
.label-item-display .label-name {
font-weight: 500;
color: #1890ff;
font-size: 12px;
}
.text-wrap {
word-break: break-all;
white-space: pre-wrap;
line-height: 1.4;
}
</style>