Browse Source

患者基础信息

wjj 2 weeks ago
parent
commit
e1c5e24e5e
3 changed files with 481 additions and 0 deletions
  1. 53 0
      src/api/patient/info.js
  2. 9 0
      src/api/project/project.js
  3. 419 0
      src/views/qw/patient/index.vue

+ 53 - 0
src/api/patient/info.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询患者基本信息列表
+export function listInfo(query) {
+  return request({
+    url: '/company/patient/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询患者基本信息详细
+export function getInfo(id) {
+  return request({
+    url: '/company/patient/' + id,
+    method: 'get'
+  })
+}
+
+// 新增患者基本信息
+export function addInfo(data) {
+  return request({
+    url: '/company/patient',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改患者基本信息
+export function updateInfo(data) {
+  return request({
+    url: '/company/patient',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除患者基本信息
+export function delInfo(id) {
+  return request({
+    url: '/company/patient/' + id,
+    method: 'delete'
+  })
+}
+
+// 导出患者基本信息
+export function exportInfo(query) {
+  return request({
+    url: '/company/patient/export',
+    method: 'get',
+    params: query
+  })
+}

+ 9 - 0
src/api/project/project.js

@@ -0,0 +1,9 @@
+import request from '@/utils/request'
+
+// 查询患者基本信息详细
+export function options() {
+  return request({
+    url: '/company/project/options',
+    method: 'get'
+  })
+}

+ 419 - 0
src/views/qw/patient/index.vue

@@ -0,0 +1,419 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="姓名" prop="name">
+        <el-input
+          v-model="queryParams.name"
+          placeholder="请输入姓名"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="性别" prop="sex">
+        <el-select v-model="queryParams.sex" placeholder="请选择性别" clearable size="small">
+          <el-option
+            v-for="dict in sexOptions"
+            :key="dict.dictValue"
+            :label="dict.dictLabel"
+            :value="dict.dictValue"
+          />
+        </el-select>
+      </el-form-item>
+      <el-form-item label="年龄" prop="age">
+        <el-input
+          v-model="queryParams.age"
+          placeholder="请输入年龄"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="医生id" prop="doctorId">
+        <el-input
+          v-model="queryParams.doctorId"
+          placeholder="请输入医生id"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="理疗方案" prop="projectId">
+        <el-input
+          v-model="queryParams.projectId"
+          placeholder="请输入理疗方案"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="用户" prop="userId">
+        <el-input
+          v-model="queryParams.userId"
+          placeholder="请输入用户"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="状态" prop="status">
+        <el-select v-model="queryParams.status" placeholder="请选择状态" clearable size="small">
+          <el-option
+            v-for="dict in statusOptions"
+            :key="dict.dictValue"
+            :label="dict.dictLabel"
+            :value="dict.dictValue"
+          />
+        </el-select>
+      </el-form-item>
+      <el-form-item label="完善状态" prop="doctorStatus">
+        <el-select v-model="queryParams.doctorStatus" placeholder="请选择医生完善状态" clearable size="small">
+          <el-option
+            v-for="dict in doctorStatusOptions"
+            :key="dict.dictValue"
+            :label="dict.dictLabel"
+            :value="dict.dictValue"
+          />
+        </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="['patient:info: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="['patient:info: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="['patient:info:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          :loading="exportLoading"
+          @click="handleExport"
+          v-hasPermi="['patient:info:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table border v-loading="loading" :data="infoList" @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="姓名" align="center" prop="name" />
+      <el-table-column label="性别" align="center" prop="sex">
+        <template slot-scope="scope">
+          <dict-tag :options="sexOptions" :value="scope.row.sex"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="年龄" align="center" prop="age" />
+      <el-table-column label="患者基本信息" align="center" prop="baseInfo" />
+      <el-table-column label="诊断结果" align="center" prop="diagnosisResult" />
+      <el-table-column label="治疗目标" align="center" prop="treatmentTreatment" />
+      <el-table-column label="医生id" align="center" prop="doctorId" />
+      <el-table-column label="理疗方案id" align="center" prop="projectId" />
+      <el-table-column label="用户id" align="center" prop="userId" />
+      <el-table-column label="用户绑定状态" align="center" prop="status" >
+        <template slot-scope="scope">
+          <dict-tag :options="statusOptions" :value="scope.row.status"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="医生完善状态" align="center" prop="doctorStatus" >
+        <template slot-scope="scope">
+          <dict-tag :options="doctorStatusOptions" :value="scope.row.doctorStatus"/>
+        </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"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['patient:info:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['patient:info: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="700px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="姓名" prop="name">
+          <el-input v-model="form.name" placeholder="请输入姓名" />
+        </el-form-item>
+        <el-form-item label="性别" prop="sex">
+          <el-select v-model="form.sex" placeholder="请选择性别">
+            <el-option
+              v-for="dict in sexOptions"
+              :key="dict.dictValue"
+              :label="dict.dictLabel"
+              :value="parseInt(dict.dictValue)"
+            ></el-option>
+          </el-select>
+        </el-form-item>
+        <el-form-item label="年龄" prop="age">
+          <el-input v-model="form.age" placeholder="请输入年龄" />
+        </el-form-item>
+        <el-form-item label="患者基本信息" prop="baseInfo">
+          <el-input v-model="form.baseInfo" type="textarea" placeholder="请输入内容" />
+        </el-form-item>
+        <el-form-item label="理疗方案" prop="projectId">
+          <el-select v-model="form.projectId" placeholder="请选择理疗方案">
+            <el-option
+              v-for="dict in projectOptions"
+              :key="dict.id"
+              :label="dict.projectName"
+              :value="parseInt(dict.id)"
+            ></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 { listInfo, getInfo, delInfo, addInfo, updateInfo, exportInfo } from "@/api/patient/info";
+import { options } from "@/api/project/project";
+
+export default {
+  name: "Info",
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 导出遮罩层
+      exportLoading: false,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 患者基本信息表格数据
+      infoList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 性别 0-女 1-男字典
+      sexOptions: [
+        {dictValue: '0',dictLabel:'女'},
+        {dictValue: '1',dictLabel:'男'}
+      ],
+      // 状态
+      statusOptions: [
+        {dictValue: '0',dictLabel:'未绑定'},
+        {dictValue: '1',dictLabel:'已绑定'}
+      ],
+      //医生完善状态
+      doctorStatusOptions:[
+        {dictValue: '0',dictLabel:'未完善'},
+        {dictValue: '1',dictLabel:'已完善'}
+      ],
+      //理疗选项
+      projectOptions:[],
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        name: null,
+        sex: null,
+        age: null,
+        baseInfo: null,
+        diagnosisResult: null,
+        treatmentTreatment: null,
+        doctorId: null,
+        projectId: null,
+        userId: null,
+        status: null,
+        doctorStatus: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+      }
+    };
+  },
+  created() {
+    options().then(res=>{
+      this.projectOptions = res.data;
+    });
+    this.getList();
+  },
+  methods: {
+    /** 查询患者基本信息列表 */
+    getList() {
+      this.loading = true;
+      listInfo(this.queryParams).then(response => {
+        this.infoList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        name: null,
+        sex: null,
+        age: null,
+        baseInfo: null,
+        diagnosisResult: null,
+        treatmentTreatment: null,
+        doctorId: null,
+        projectId: null,
+        createTime: null,
+        updateTime: null,
+        userId: null,
+        status: 0,
+        doctorStatus: 0
+      };
+      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
+      getInfo(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) {
+            updateInfo(this.form).then(response => {
+              this.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addInfo(this.form).then(response => {
+              this.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$confirm('是否确认删除患者基本信息编号为"' + ids + '"的数据项?', "警告", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        }).then(function() {
+          return delInfo(ids);
+        }).then(() => {
+          this.getList();
+          this.msgSuccess("删除成功");
+        }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      const queryParams = this.queryParams;
+      this.$confirm('是否确认导出所有患者基本信息数据项?', "警告", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        }).then(() => {
+          this.exportLoading = true;
+          return exportInfo(queryParams);
+        }).then(response => {
+          this.download(response.msg);
+          this.exportLoading = false;
+        }).catch(() => {});
+    }
+  }
+};
+</script>