271 lines
10 KiB
Vue
271 lines
10 KiB
Vue
|
|
<template>
|
|||
|
|
<div class="app-container">
|
|||
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="70px">
|
|||
|
|
<el-form-item label="姓名" prop="patientName">
|
|||
|
|
<el-input v-model="queryParams.patientName" placeholder="请输入患者姓名" clearable @keyup.enter.native="handleQuery" />
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="电话" prop="patientPhone">
|
|||
|
|
<el-input v-model="queryParams.patientPhone" placeholder="请输入患者电话" clearable @keyup.enter.native="handleQuery" />
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="医院" prop="hospitalAgencyName">
|
|||
|
|
<el-input v-model="queryParams.hospitalAgencyName" placeholder="请输入医院" 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="abnormalCauseValue">
|
|||
|
|
<el-input v-model="queryParams.abnormalCauseValue" placeholder="请输入异常原因" clearable
|
|||
|
|
@keyup.enter.native="handleQuery" />
|
|||
|
|
</el-form-item>
|
|||
|
|
<!-- (CALL_DETECTION:通话检测,MANUAL_BLACKOUT:手动拉黑,MANUAL_ADDITION:手动添加,HIS_CONNECT:HIS对接) -->
|
|||
|
|
<el-form-item label="来源" prop="blacklistSource">
|
|||
|
|
<el-select v-model="queryParams.blacklistSource" placeholder="请选择来源" clearable>
|
|||
|
|
<el-option v-for="dict in dict.type.blacklist_source" :key="dict.value" :label="dict.label"
|
|||
|
|
:value="dict.value" />
|
|||
|
|
</el-select>
|
|||
|
|
</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:blacklist: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:blacklist: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:blacklist: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:blacklist:export']">导出</el-button>
|
|||
|
|
</el-col> -->
|
|||
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|||
|
|
</el-row>
|
|||
|
|
<el-table v-loading="loading" :data="blacklistList" @selection-change="handleSelectionChange">
|
|||
|
|
<el-table-column label="序号" type="index" width="55" align="center" />
|
|||
|
|
<el-table-column label="姓名" align="center" prop="patientName" />
|
|||
|
|
<el-table-column label="电话" align="center" prop="patientPhone" width='120' />
|
|||
|
|
<el-table-column label="医院" align="center" prop="hospitalAgencyName" width='130' />
|
|||
|
|
<el-table-column label="科室名称" align="center" prop="departmentName" width='130' />
|
|||
|
|
<el-table-column label="异常原因" align="center" prop="abnormalCauseValue" />
|
|||
|
|
<el-table-column label="来源" align="center" prop="blacklistSource">
|
|||
|
|
<template slot-scope="scope">
|
|||
|
|
<dict-tag :options="dict.type.blacklist_source" :value="scope.row.blacklistSource" />
|
|||
|
|
</template>
|
|||
|
|
</el-table-column>
|
|||
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|||
|
|
<template slot-scope="scope">
|
|||
|
|
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
|
|||
|
|
</template>
|
|||
|
|
</el-table-column>
|
|||
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|||
|
|
<template slot-scope="scope">
|
|||
|
|
<el-button size="mini" type="text" @click="handleUpdate(scope.row)"
|
|||
|
|
v-hasPermi="['manage:blacklist:edit']">修改</el-button>
|
|||
|
|
<el-button size="mini" type="text" @click="handleDelete(scope.row)"
|
|||
|
|
v-hasPermi="['manage:blacklist: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="姓名" prop="patientName">
|
|||
|
|
<el-input v-model="form.patientName" placeholder="请输入姓名" />
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="身份证" prop="cardNo">
|
|||
|
|
<el-input v-model="form.cardNo" placeholder="请输入身份证" />
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="电话" prop="patientPhone">
|
|||
|
|
<el-input v-model="form.patientPhone" placeholder="请输入电话" />
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="医院名称" prop="hospitalAgencyName">
|
|||
|
|
<el-input v-model="form.hospitalAgencyName" placeholder="请输入医院名称" />
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="科室名称" prop="departmentName">
|
|||
|
|
<el-input v-model="form.departmentName" placeholder="请输入科室名称" />
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="异常原因" prop="abnormalCauseValue">
|
|||
|
|
<el-input v-model="form.abnormalCauseValue" placeholder="请输入异常原因" />
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="补充说明" prop="supplementIllustrateValue">
|
|||
|
|
<el-input v-model="form.supplementIllustrateValue" placeholder="请输入补充说明" />
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="功能限制" prop="functionLimitation">
|
|||
|
|
<el-input v-model="form.functionLimitation" placeholder="请输入功能限制" />
|
|||
|
|
</el-form-item>
|
|||
|
|
<!-- <el-form-item label="来源" prop="blacklistSource">
|
|||
|
|
<el-select v-model="form.blacklistSource" placeholder="请选择来源">
|
|||
|
|
<el-option v-for="dict in dict.type.blacklist_source" :key="dict.value" :label="dict.label"
|
|||
|
|
:value="dict.value"></el-option>
|
|||
|
|
</el-select>
|
|||
|
|
</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 { listBlacklist, getBlacklist, delBlacklist, addBlacklist, updateBlacklist } from "@/api/manage/blacklist";
|
|||
|
|
|
|||
|
|
export default {
|
|||
|
|
name: "Blacklist",
|
|||
|
|
dicts: ['blacklist_source'],
|
|||
|
|
data() {
|
|||
|
|
return {
|
|||
|
|
// 遮罩层
|
|||
|
|
loading: true,
|
|||
|
|
// 选中数组
|
|||
|
|
ids: [],
|
|||
|
|
// 非单个禁用
|
|||
|
|
single: true,
|
|||
|
|
// 非多个禁用
|
|||
|
|
multiple: true,
|
|||
|
|
// 显示搜索条件
|
|||
|
|
showSearch: true,
|
|||
|
|
// 总条数
|
|||
|
|
total: 0,
|
|||
|
|
// 患者-黑明单关系表格数据
|
|||
|
|
blacklistList: [],
|
|||
|
|
// 弹出层标题
|
|||
|
|
title: "",
|
|||
|
|
// 是否显示弹出层
|
|||
|
|
open: false,
|
|||
|
|
// 查询参数
|
|||
|
|
queryParams: {
|
|||
|
|
pageNum: 1,
|
|||
|
|
pageSize: 10,
|
|||
|
|
abnormalCauseId: null,
|
|||
|
|
abnormalCauseValue: null,
|
|||
|
|
blacklistSource: null,
|
|||
|
|
},
|
|||
|
|
// 表单参数
|
|||
|
|
form: {},
|
|||
|
|
// 表单校验
|
|||
|
|
rules: {
|
|||
|
|
}
|
|||
|
|
};
|
|||
|
|
},
|
|||
|
|
created() {
|
|||
|
|
this.getList();
|
|||
|
|
},
|
|||
|
|
methods: {
|
|||
|
|
/** 查询患者-黑明单关系列表 */
|
|||
|
|
getList() {
|
|||
|
|
this.loading = true;
|
|||
|
|
listBlacklist(this.queryParams).then(response => {
|
|||
|
|
this.blacklistList = response.rows;
|
|||
|
|
this.total = response.total;
|
|||
|
|
this.loading = false;
|
|||
|
|
});
|
|||
|
|
},
|
|||
|
|
// 取消按钮
|
|||
|
|
cancel() {
|
|||
|
|
this.open = false;
|
|||
|
|
this.reset();
|
|||
|
|
},
|
|||
|
|
// 表单重置
|
|||
|
|
reset() {
|
|||
|
|
this.form = {
|
|||
|
|
patientName: null,
|
|||
|
|
abnormalCauseId: null,
|
|||
|
|
abnormalCauseValue: null,
|
|||
|
|
supplementIllustrateId: null,
|
|||
|
|
supplementIllustrateValue: null,
|
|||
|
|
functionLimitation: null,
|
|||
|
|
blacklistSource: 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
|
|||
|
|
getBlacklist(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) {
|
|||
|
|
updateBlacklist(this.form).then(response => {
|
|||
|
|
this.$modal.msgSuccess("修改成功");
|
|||
|
|
this.open = false;
|
|||
|
|
this.getList();
|
|||
|
|
});
|
|||
|
|
} else {
|
|||
|
|
addBlacklist(this.form).then(response => {
|
|||
|
|
this.$modal.msgSuccess("新增成功");
|
|||
|
|
this.open = false;
|
|||
|
|
this.getList();
|
|||
|
|
});
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
});
|
|||
|
|
},
|
|||
|
|
/** 删除按钮操作 */
|
|||
|
|
handleDelete(row) {
|
|||
|
|
const ids = row.id || this.ids;
|
|||
|
|
this.$modal.confirm('是否确认删除?').then(function () {
|
|||
|
|
return delBlacklist(ids);
|
|||
|
|
}).then(() => {
|
|||
|
|
this.getList();
|
|||
|
|
this.$modal.msgSuccess("删除成功");
|
|||
|
|
}).catch(() => { });
|
|||
|
|
},
|
|||
|
|
/** 导出按钮操作 */
|
|||
|
|
handleExport() {
|
|||
|
|
this.download('manage/blacklist/export', {
|
|||
|
|
...this.queryParams
|
|||
|
|
}, `blacklist_${new Date().getTime()}.xlsx`)
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
};
|
|||
|
|
</script>
|