|
@@ -1,6 +1,13 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
+ <el-form
|
|
|
+ :model="queryParams"
|
|
|
+ ref="queryForm"
|
|
|
+ size="small"
|
|
|
+ :inline="true"
|
|
|
+ v-show="showSearch"
|
|
|
+ label-width="100px"
|
|
|
+ >
|
|
|
<el-form-item label="样品编号" prop="sampleCode">
|
|
|
<el-input
|
|
|
v-model="queryParams.sampleCode"
|
|
@@ -26,12 +33,24 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="样本类型" prop="sampleTypeId">
|
|
|
- <el-input
|
|
|
+ <!-- <el-input
|
|
|
v-model="queryParams.sampleTypeId"
|
|
|
placeholder="请输入样本类型"
|
|
|
clearable
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
+ /> -->
|
|
|
+ <el-select
|
|
|
+ v-model="queryParams.sampleTypeId"
|
|
|
+ placeholder="请选择样本类型"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in options"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+ >
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="送检医院编号" prop="sampleHospitalId">
|
|
|
<el-input
|
|
@@ -58,8 +77,16 @@
|
|
|
/>
|
|
|
</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-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>
|
|
|
|
|
@@ -72,7 +99,8 @@
|
|
|
size="mini"
|
|
|
@click="handleAdd"
|
|
|
v-hasPermi="['sample:sampleInfo:add']"
|
|
|
- >新增</el-button>
|
|
|
+ >新增</el-button
|
|
|
+ >
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
@@ -83,7 +111,8 @@
|
|
|
:disabled="single"
|
|
|
@click="handleUpdate"
|
|
|
v-hasPermi="['sample:sampleInfo:edit']"
|
|
|
- >修改</el-button>
|
|
|
+ >修改</el-button
|
|
|
+ >
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
@@ -94,7 +123,8 @@
|
|
|
:disabled="multiple"
|
|
|
@click="handleDelete"
|
|
|
v-hasPermi="['sample:sampleInfo:remove']"
|
|
|
- >删除</el-button>
|
|
|
+ >删除</el-button
|
|
|
+ >
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
@@ -104,23 +134,43 @@
|
|
|
size="mini"
|
|
|
@click="handleExport"
|
|
|
v-hasPermi="['sample:sampleInfo:export']"
|
|
|
- >导出</el-button>
|
|
|
+ >导出</el-button
|
|
|
+ >
|
|
|
</el-col>
|
|
|
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ <right-toolbar
|
|
|
+ :showSearch.sync="showSearch"
|
|
|
+ @queryTable="getList"
|
|
|
+ ></right-toolbar>
|
|
|
</el-row>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="sampleInfoList" @selection-change="handleSelectionChange">
|
|
|
+ <el-table
|
|
|
+ v-loading="loading"
|
|
|
+ :data="sampleInfoList"
|
|
|
+ @selection-change="handleSelectionChange"
|
|
|
+ >
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
<el-table-column label="编号" align="center" prop="id" />
|
|
|
<el-table-column label="样品编号" align="center" prop="sampleCode" />
|
|
|
<el-table-column label="患者编号" align="center" prop="patientId" />
|
|
|
<el-table-column label="患者电话" align="center" prop="patientPhone" />
|
|
|
<el-table-column label="样本类型" align="center" prop="sampleTypeId" />
|
|
|
- <el-table-column label="送检医院编号" align="center" prop="sampleHospitalId" />
|
|
|
- <el-table-column label="送检科室编号" align="center" prop="sampleDeptId" />
|
|
|
+ <el-table-column
|
|
|
+ label="送检医院编号"
|
|
|
+ align="center"
|
|
|
+ prop="sampleHospitalId"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ label="送检科室编号"
|
|
|
+ align="center"
|
|
|
+ prop="sampleDeptId"
|
|
|
+ />
|
|
|
<el-table-column label="医生名字" align="center" prop="doctorName" />
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
|
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
+ <el-table-column
|
|
|
+ label="操作"
|
|
|
+ align="center"
|
|
|
+ class-name="small-padding fixed-width"
|
|
|
+ >
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
size="mini"
|
|
@@ -128,20 +178,22 @@
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
v-hasPermi="['sample:sampleInfo:edit']"
|
|
|
- >修改</el-button>
|
|
|
+ >修改</el-button
|
|
|
+ >
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-delete"
|
|
|
@click="handleDelete(scope.row)"
|
|
|
v-hasPermi="['sample:sampleInfo:remove']"
|
|
|
- >删除</el-button>
|
|
|
+ >删除</el-button
|
|
|
+ >
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
-
|
|
|
+
|
|
|
<pagination
|
|
|
- v-show="total>0"
|
|
|
+ v-show="total > 0"
|
|
|
:total="total"
|
|
|
:page.sync="queryParams.pageNum"
|
|
|
:limit.sync="queryParams.pageSize"
|
|
@@ -161,19 +213,43 @@
|
|
|
<el-input v-model="form.patientPhone" placeholder="请输入患者电话" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="样本类型" prop="sampleTypeId">
|
|
|
- <el-input v-model="form.sampleTypeId" placeholder="请输入样本类型" />
|
|
|
+ <!-- <el-input v-model="form.sampleTypeId" placeholder="请输入样本类型" /> -->
|
|
|
+
|
|
|
+ <el-select
|
|
|
+ v-model="queryParams.sampleTypeId"
|
|
|
+ placeholder="请选择样本类型"
|
|
|
+ style="width: 100%;"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in options"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+ >
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="送检医院编号" prop="sampleHospitalId">
|
|
|
- <el-input v-model="form.sampleHospitalId" placeholder="请输入送检医院编号" />
|
|
|
+ <el-input
|
|
|
+ v-model="form.sampleHospitalId"
|
|
|
+ placeholder="请输入送检医院编号"
|
|
|
+ />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="送检科室编号" prop="sampleDeptId">
|
|
|
- <el-input v-model="form.sampleDeptId" placeholder="请输入送检科室编号" />
|
|
|
+ <el-input
|
|
|
+ v-model="form.sampleDeptId"
|
|
|
+ placeholder="请输入送检科室编号"
|
|
|
+ />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="医生名字" prop="doctorName">
|
|
|
<el-input v-model="form.doctorName" placeholder="请输入医生名字" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
- <el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
|
|
+ <el-input
|
|
|
+ v-model="form.remark"
|
|
|
+ type="textarea"
|
|
|
+ placeholder="请输入内容"
|
|
|
+ />
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
@@ -185,7 +261,14 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { listSampleInfo, getSampleInfo, delSampleInfo, addSampleInfo, updateSampleInfo } from "@/api/sample/sampleInfo"
|
|
|
+import {
|
|
|
+ listSampleInfo,
|
|
|
+ getSampleInfo,
|
|
|
+ delSampleInfo,
|
|
|
+ addSampleInfo,
|
|
|
+ updateSampleInfo,
|
|
|
+ getSampleTypeSelect,
|
|
|
+} from "@/api/sample/sampleInfo";
|
|
|
|
|
|
export default {
|
|
|
name: "SampleInfo",
|
|
@@ -224,27 +307,37 @@ export default {
|
|
|
// 表单参数
|
|
|
form: {},
|
|
|
// 表单校验
|
|
|
- rules: {
|
|
|
- }
|
|
|
- }
|
|
|
+ rules: {},
|
|
|
+ options: [],
|
|
|
+ };
|
|
|
},
|
|
|
created() {
|
|
|
- this.getList()
|
|
|
+ this.getList();
|
|
|
+ this.getSampleTypeOptions();
|
|
|
},
|
|
|
methods: {
|
|
|
/** 查询样品管理列表 */
|
|
|
getList() {
|
|
|
- this.loading = true
|
|
|
- listSampleInfo(this.queryParams).then(response => {
|
|
|
- this.sampleInfoList = response.rows
|
|
|
- this.total = response.total
|
|
|
- this.loading = false
|
|
|
- })
|
|
|
+ this.loading = true;
|
|
|
+ listSampleInfo(this.queryParams).then((response) => {
|
|
|
+ this.sampleInfoList = response.rows;
|
|
|
+ this.total = response.total;
|
|
|
+ this.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 获取样本类型选项
|
|
|
+ getSampleTypeOptions() {
|
|
|
+ getSampleTypeSelect().then((response) => {
|
|
|
+ this.options = response.data.map((item) => ({
|
|
|
+ value: item.id,
|
|
|
+ label: item.name,
|
|
|
+ }));
|
|
|
+ });
|
|
|
},
|
|
|
// 取消按钮
|
|
|
cancel() {
|
|
|
- this.open = false
|
|
|
- this.reset()
|
|
|
+ this.open = false;
|
|
|
+ this.reset();
|
|
|
},
|
|
|
// 表单重置
|
|
|
reset() {
|
|
@@ -261,78 +354,86 @@ export default {
|
|
|
createTime: null,
|
|
|
updateBy: null,
|
|
|
updateTime: null,
|
|
|
- remark: null
|
|
|
- }
|
|
|
- this.resetForm("form")
|
|
|
+ remark: null,
|
|
|
+ };
|
|
|
+ this.resetForm("form");
|
|
|
},
|
|
|
/** 搜索按钮操作 */
|
|
|
handleQuery() {
|
|
|
- this.queryParams.pageNum = 1
|
|
|
- this.getList()
|
|
|
+ this.queryParams.pageNum = 1;
|
|
|
+ this.getList();
|
|
|
},
|
|
|
/** 重置按钮操作 */
|
|
|
resetQuery() {
|
|
|
- this.resetForm("queryForm")
|
|
|
- this.handleQuery()
|
|
|
+ this.resetForm("queryForm");
|
|
|
+ this.handleQuery();
|
|
|
},
|
|
|
// 多选框选中数据
|
|
|
handleSelectionChange(selection) {
|
|
|
- this.ids = selection.map(item => item.id)
|
|
|
- this.single = selection.length!==1
|
|
|
- this.multiple = !selection.length
|
|
|
+ this.ids = selection.map((item) => item.id);
|
|
|
+ this.single = selection.length !== 1;
|
|
|
+ this.multiple = !selection.length;
|
|
|
},
|
|
|
/** 新增按钮操作 */
|
|
|
handleAdd() {
|
|
|
- this.reset()
|
|
|
- this.open = true
|
|
|
- this.title = "添加样品管理"
|
|
|
+ this.reset();
|
|
|
+ this.open = true;
|
|
|
+ this.title = "添加样品管理";
|
|
|
},
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
|
- this.reset()
|
|
|
- const id = row.id || this.ids
|
|
|
- getSampleInfo(id).then(response => {
|
|
|
- this.form = response.data
|
|
|
- this.open = true
|
|
|
- this.title = "修改样品管理"
|
|
|
- })
|
|
|
+ this.reset();
|
|
|
+ const id = row.id || this.ids;
|
|
|
+ getSampleInfo(id).then((response) => {
|
|
|
+ this.form = response.data;
|
|
|
+ this.open = true;
|
|
|
+ this.title = "修改样品管理";
|
|
|
+ });
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
submitForm() {
|
|
|
- this.$refs["form"].validate(valid => {
|
|
|
+ this.$refs["form"].validate((valid) => {
|
|
|
if (valid) {
|
|
|
if (this.form.id != null) {
|
|
|
- updateSampleInfo(this.form).then(response => {
|
|
|
- this.$modal.msgSuccess("修改成功")
|
|
|
- this.open = false
|
|
|
- this.getList()
|
|
|
- })
|
|
|
+ updateSampleInfo(this.form).then((response) => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
} else {
|
|
|
- addSampleInfo(this.form).then(response => {
|
|
|
- this.$modal.msgSuccess("新增成功")
|
|
|
- this.open = false
|
|
|
- this.getList()
|
|
|
- })
|
|
|
+ addSampleInfo(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 delSampleInfo(ids)
|
|
|
- }).then(() => {
|
|
|
- this.getList()
|
|
|
- this.$modal.msgSuccess("删除成功")
|
|
|
- }).catch(() => {})
|
|
|
+ const ids = row.id || this.ids;
|
|
|
+ this.$modal
|
|
|
+ .confirm('是否确认删除样品管理编号为"' + ids + '"的数据项?')
|
|
|
+ .then(function () {
|
|
|
+ return delSampleInfo(ids);
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.$modal.msgSuccess("删除成功");
|
|
|
+ })
|
|
|
+ .catch(() => {});
|
|
|
},
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|
|
|
- this.download('sample/sampleInfo/export', {
|
|
|
- ...this.queryParams
|
|
|
- }, `sampleInfo_${new Date().getTime()}.xlsx`)
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
+ this.download(
|
|
|
+ "sample/sampleInfo/export",
|
|
|
+ {
|
|
|
+ ...this.queryParams,
|
|
|
+ },
|
|
|
+ `sampleInfo_${new Date().getTime()}.xlsx`
|
|
|
+ );
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
</script>
|