This commit is contained in:
2024-04-08 17:21:33 +08:00
parent cb4dfceccd
commit 0a2d988621

View File

@ -1,391 +0,0 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="患者信息表id" prop="patientId">
<el-input
v-model="queryParams.patientId"
placeholder="请输入患者信息表id"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="宣教表id" prop="propagandaId">
<el-input
v-model="queryParams.propagandaId"
placeholder="请输入宣教表id"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="所属科室名称" prop="departmentName">
<el-input
v-model="queryParams.departmentName"
placeholder="请输入所属科室名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="宣教标题" prop="propagandaTitle">
<el-input
v-model="queryParams.propagandaTitle"
placeholder="请输入宣教标题"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="宣教ID" prop="propagandaCode">
<el-input
v-model="queryParams.propagandaCode"
placeholder="请输入宣教ID"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="宣教封面文件存放地址" prop="propagandaCoverPath">
<el-input
v-model="queryParams.propagandaCoverPath"
placeholder="请输入宣教封面文件存放地址"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="所属病种名称" prop="diseaseTypeName">
<el-input
v-model="queryParams.diseaseTypeName"
placeholder="请输入所属病种名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="宣教链接" prop="propagandaLink">
<el-input
v-model="queryParams.propagandaLink"
placeholder="请输入宣教链接"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="宣教二维码图片存放地址" prop="propagandaBarcodePath">
<el-input
v-model="queryParams.propagandaBarcodePath"
placeholder="请输入宣教二维码图片存放地址"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['manage:propaganda:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['manage:propaganda:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['manage:propaganda:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['manage:propaganda:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="propagandaList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="主键id" align="center" prop="id" />
<el-table-column label="患者信息表id" align="center" prop="patientId" />
<el-table-column label="宣教表id" align="center" prop="propagandaId" />
<el-table-column label="所属科室名称" align="center" prop="departmentName" />
<el-table-column label="宣教标题" align="center" prop="propagandaTitle" />
<el-table-column label="宣教类型用药知识MEDICATION_KNOWLEDGE疾病科普DISEASE_POPULARIZATION运动营养SPORT_NUTRITION其他知识OTHER_KNOWLEDGE
定制内容CUSTOMIZED_CONTENT" align="center" prop="propagandaType" />
<el-table-column label="宣教ID" align="center" prop="propagandaCode" />
<el-table-column label="宣教正文内容" align="center" prop="propagandaContent" />
<el-table-column label="宣教封面文件存放地址" align="center" prop="propagandaCoverPath" />
<el-table-column label="宣教文章摘要" align="center" prop="articleSummary" />
<el-table-column label="语音播报" align="center" prop="voicebroadcast" />
<el-table-column label="所属病种名称" align="center" prop="diseaseTypeName" />
<el-table-column label="宣教链接" align="center" prop="propagandaLink" />
<el-table-column label="宣教二维码图片存放地址" align="center" prop="propagandaBarcodePath" />
<el-table-column label="备注" align="center" prop="remark" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['manage:propaganda:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['manage:propaganda:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改患者宣教信息对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="患者信息表id" prop="patientId">
<el-input v-model="form.patientId" placeholder="请输入患者信息表id" />
</el-form-item>
<el-form-item label="宣教表id" prop="propagandaId">
<el-input v-model="form.propagandaId" placeholder="请输入宣教表id" />
</el-form-item>
<el-form-item label="所属科室名称" prop="departmentName">
<el-input v-model="form.departmentName" placeholder="请输入所属科室名称" />
</el-form-item>
<el-form-item label="宣教标题" prop="propagandaTitle">
<el-input v-model="form.propagandaTitle" placeholder="请输入宣教标题" />
</el-form-item>
<el-form-item label="宣教ID" prop="propagandaCode">
<el-input v-model="form.propagandaCode" placeholder="请输入宣教ID" />
</el-form-item>
<el-form-item label="宣教正文内容">
<editor v-model="form.propagandaContent" :min-height="192"/>
</el-form-item>
<el-form-item label="宣教封面文件存放地址" prop="propagandaCoverPath">
<el-input v-model="form.propagandaCoverPath" placeholder="请输入宣教封面文件存放地址" />
</el-form-item>
<el-form-item label="宣教文章摘要" prop="articleSummary">
<el-input v-model="form.articleSummary" type="textarea" placeholder="请输入内容" />
</el-form-item>
<el-form-item label="语音播报" prop="voicebroadcast">
<el-input v-model="form.voicebroadcast" type="textarea" placeholder="请输入内容" />
</el-form-item>
<el-form-item label="所属病种名称" prop="diseaseTypeName">
<el-input v-model="form.diseaseTypeName" placeholder="请输入所属病种名称" />
</el-form-item>
<el-form-item label="宣教链接" prop="propagandaLink">
<el-input v-model="form.propagandaLink" placeholder="请输入宣教链接" />
</el-form-item>
<el-form-item label="宣教二维码图片存放地址" prop="propagandaBarcodePath">
<el-input v-model="form.propagandaBarcodePath" placeholder="请输入宣教二维码图片存放地址" />
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" placeholder="请输入备注" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listPropaganda, getPropaganda, delPropaganda, addPropaganda, updatePropaganda } from "@/api/manage/propaganda";
export default {
name: "Propaganda",
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
propagandaList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
patientId: null,
propagandaId: null,
departmentName: null,
propagandaTitle: null,
propagandaType: null,
propagandaCode: null,
propagandaContent: null,
propagandaCoverPath: null,
articleSummary: null,
voicebroadcast: null,
diseaseTypeName: null,
propagandaLink: null,
propagandaBarcodePath: null,
},
//
form: {},
//
rules: {
patientId: [
{ required: true, message: "患者信息表id不能为空", trigger: "blur" }
],
}
};
},
created() {
this.getList();
},
methods: {
/** 查询患者宣教信息列表 */
getList() {
this.loading = true;
listPropaganda(this.queryParams).then(response => {
this.propagandaList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
patientId: null,
propagandaId: null,
departmentName: null,
propagandaTitle: null,
propagandaType: null,
propagandaCode: null,
propagandaContent: null,
propagandaCoverPath: null,
articleSummary: null,
voicebroadcast: null,
diseaseTypeName: null,
propagandaLink: null,
propagandaBarcodePath: null,
remark: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加患者宣教信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getPropaganda(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改患者宣教信息";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updatePropaganda(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addPropaganda(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除患者宣教信息编号为"' + ids + '"的数据项?').then(function() {
return delPropaganda(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('manage/propaganda/export', {
...this.queryParams
}, `propaganda_${new Date().getTime()}.xlsx`)
}
}
};
</script>