qinxianzhangyao
2023-12-04 ec6acc7e742c87dd305dcdd08777be5471d80b45
src/views/doctor/check/index.vue
@@ -13,18 +13,19 @@
        <el-button size="mini" @click="resetQuery">重置</el-button>
      </el-form-item>
    </el-form>
    <el-radio-group v-model="tjStatus" @input="radioChange" style="margin-left: 30px">
      <el-radio-button label="0">未检</el-radio-button>
      <el-radio-button label="1">已检</el-radio-button>
    </el-radio-group>
    <div style="display: flex;">
      <el-radio-group v-model="tjStatus" @input="radioChange" style="margin-left: 30px">
        <el-radio-button label="0">未检</el-radio-button>
        <el-radio-button label="1">已检</el-radio-button>
      </el-radio-group>
    </div>
    <template>
      <el-table :data="tableList" v-loading="loading" ref="table" height="536px" style="margin: 20px; width: 98%"
        border="">
        <!-- <template slot="empty">数据正在加载中</template> -->
        <el-table-column label="体检号" align="center" prop="tjNumber" width="180px" />
        <el-table-column label="姓名" align="center" prop="cusName" width="100px" />
        <el-table-column label="体检号" align="center" prop="tjNumber" width="160px" />
        <el-table-column label="姓名" align="center" prop="cusName" width="90px" />
        <el-table-column label="性别" align="center" prop="cusSex" width="60px">
          <template slot-scope="scope">
            <span v-if="scope.row.cusSex == '0'">男</span>
@@ -33,27 +34,18 @@
            <span v-if="scope.row.cusSex == '9'">未说明性别</span>
          </template>
        </el-table-column>
        <el-table-column label="出生日期" align="center" prop="cusBrithday" width="120px" />
        <el-table-column label="电话" align="center" prop="cusPhone" width="120px" />
        <!-- <el-table-column
          label="状态"
          align="center"
          prop="tjStatus"
          :show-overflow-tooltip="true"
          width="80px"
        >
          <template slot-scope="scope">
            <span>{{ scope.row.tjStatus == "1" ? "已检" : "未检" }}</span>
          </template>
        </el-table-column> -->
        <el-table-column label="出生日期" align="center" prop="cusBrithday" width="100px" />
        <el-table-column label="电话" align="center" prop="cusPhone" width="100px" />
        <el-table-column label="体检类型" align="center" prop="tjType" width="80px" />
        <el-table-column label="登记时间" align="center" prop="createTime" width="160px" />
        <el-table-column label="体检时间" align="center" prop="tjTime" width="120px" />
        <el-table-column label="体检时间" align="center" prop="tjTime" width="100px" />
        <el-table-column label="未检项" prop="notCheckeds" :show-overflow-tooltip="true" />
        <el-table-column label="操作" align="center" width="80px">
        <el-table-column label="操作" align="center" width="130px">
          <template slot-scope="scope">
            <el-button type="primary" size="mini" @click="handleClick(scope.row)">详情</el-button>
            <el-button type="primary" icon="el-icon-first-aid-kit" size="mini" @click="Changeapplyfor(scope.row)"
              title="会诊申请" v-if="tjStatus == '1'"></el-button>
            <el-button type="primary" icon="el-icon-share" size="mini" @click="handleClick(scope.row)"
              title="详情"></el-button>
          </template>
        </el-table-column>
      </el-table>
@@ -65,6 +57,98 @@
        </div>
      </div>
    </template>
    <el-dialog :title="title" :visible.sync="open" width="1000px" append-to-body>
      <el-row>
        <el-col :span="9" v-if="hzlogList.length >= 1">
          <h3>会诊申请记录</h3>
          <el-table :data="hzlogList" style="width: 100%" border>
            <el-table-column label="申请人" align="center" prop="hzDoctorName" width="100px" />
            <el-table-column label="科室" align="center" prop="hzDeptName" />
            <el-table-column label="操作" align="center" width="150px">
              <template slot-scope="scope">
                <el-button type="primary" size="mini" @click="hadleedit(scope.row)"
                  v-if="scope.row.hzReplyLogsList.length == 0 && scope.row.hzDoctorId == info.userId">修改</el-button>
                <el-button type="primary" size="mini"
                  v-if="scope.row.hzReplyLogsList.length == 0 && scope.row.hzDoctorId == info.userId"
                  @click="handledele(scope.row)">删除</el-button>
              </template>
            </el-table-column>
          </el-table>
        </el-col>
        <el-col :span="14">
          <h3 style="text-align: center;">会诊记录申请</h3>
          <el-form ref="form" :model="form" :rules="rules" label-width="80px">
            <el-form-item label="姓名" prop="cusName">
              <el-input v-model="form.cusName" placeholder="请输入姓名" disabled />
            </el-form-item>
            <el-form-item label="体检号" prop="tjNumber">
              <el-input v-model="form.tjNumber" placeholder="请输入体检号" disabled />
            </el-form-item>
            <el-form-item label="会诊科室" prop="hzType">
              <el-radio-group v-model="form.hzType">
                <el-radio-button label="0">全院会诊</el-radio-button>
                <el-radio-button label="1">科室会诊</el-radio-button>
              </el-radio-group>
            </el-form-item>
            <el-form-item label="选择科室" v-if="form.hzType == '1'">
              <el-select v-model="form.hzDeptId" multiple filterable style="width: 100%">
                <el-option v-for="item in deptList" :key="item.deptId" :label="item.deptName"
                  :value="item.deptId"></el-option>
              </el-select>
            </el-form-item>
            <el-form-item label="申请人" prop="hzDoctorId">
              <el-select v-model="form.hzDoctorId" placeholder="请选择" style="width: 100%" filterable>
                <el-option v-for="item in userList" :key="item.userId" :label="item.nickName" :value="item.userId">
                </el-option>
              </el-select>
            </el-form-item>
            <!-- <el-form-item label="申请时间" prop="createTime">
              <el-date-picker v-model="form.createTime" type="datetime" placeholder="选择申请时间">
              </el-date-picker>
            </el-form-item> -->
          </el-form>
        </el-col>
      </el-row>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitFormapply">确 定</el-button>
        <el-button @click="cancel">取 消</el-button>
      </div>
    </el-dialog>
    <el-dialog :title="title" :visible.sync="foropen" width="1000px" append-to-body>
      <el-row>
        <el-col :span="8" v-if="hasdeptList.length >= 1">
          <h3 style="text-align: center;">会诊申请记录</h3>
          <el-table :data="hasdeptList" style="width: 100%" border ref="tab" @selection-change="handleSelectionChange">
            <el-table-column type="selection" width="50" align="center" />
            <el-table-column label="申请人" align="center" prop="hzDoctorName" width="100px" />
            <el-table-column label="科室" align="center" prop="hzDeptName" width="260px" />
          </el-table>
        </el-col>
        <el-col :span="16" style="padding: 0 10px;">
          <h3 style="text-align: center;">会诊意见</h3>
          <div v-if="hzReplyLogsList.length >= 1" style="margin-bottom: 10px;">
            <div v-for="(item, index) in hzReplyLogsList" :key="index"
              style="padding-bottom:5px;border-bottom: 1px solid black;">
              <!-- <div>会诊科室:{{ item.replyDeptName }}</div> -->
              <div> 医生:{{ item.hzDoctorName }} </div>
              <div>回复:{{ item.replyContent }}</div>
            </div>
          </div>
          <el-input type="textarea" :rows="2" placeholder="请输入内容" v-model="textarea">
          </el-input>
          <div style="padding: 10px 10px;">
            <el-button type="primary" @click="submitFormreply">回复</el-button>
          </div>
        </el-col>
      </el-row>
      <!-- <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitFormapply">确 定</el-button>
        <el-button @click="cancel">取 消</el-button>
      </div> -->
    </el-dialog>
    <!-- 点击右边弹出层 -->
    <el-drawer :visible.sync="drawer" :with-header="false" size="70%" :before-close="handleClose">
      <div style="font-size: 14px">
@@ -95,7 +179,7 @@
                <span v-if="scope.row.cusSex == '9'">未说明性别</span>
              </template>
            </td>
            <td style="border: 1px solid #dfe6ec; border-collapse: collapse;" align="right">
            <td style="border: 1px solid #dfe6ec; border-collapse: collapse" align="right">
              性别:
            </td>
            <td style="border: 1px solid #dfe6ec; border-collapse: collapse">
@@ -118,6 +202,9 @@
          </tr>
        </table>
      </div>
      <div style="margin: 10px 10px;" v-if="hasdeptList.length >= 1">
        <el-button type="primary" size="mini" @click="Changeapply()">会诊申请</el-button>
      </div>
      <template>
        <div style="margin-left: 10px">
@@ -129,8 +216,8 @@
          </el-radio-group>
        </div>
      </template>
      <el-table :data="proParentList.sons" border height="460px" style="width: 96%; margin: 10px 10px">
      <el-table v-loading="loading" :data="proParentList.sons" border height="460px"
        style="width: 96%; margin: 10px 10px">
        <el-table-column prop="project.proName" label="检测项目" width="150">
          <!-- <template slot-scope="scope">
            {{ scope.row.project.proName }}
@@ -189,8 +276,8 @@
              病种选择:
            </td>
            <td style="border: 1px solid #dfe6ec; border-collapse: collapse">
              <el-select v-model="value" multiple placeholder="请选择" style="width: 100%;height:45px" v-if="deptAdviceList"
                @change="sel" filterable>
              <el-select v-model="value" multiple placeholder="请选择" style="width: 100%; height: 45px"
                v-if="deptAdviceList" @change="sel" filterable>
                <el-option v-for="item in deptAdviceList" :key="item.id" :label="item.title" :value="item.id">
                </el-option>
              </el-select>
@@ -218,6 +305,12 @@
        </table>
        <div slot="footer" class="dialog-footers">
          <!-- <el-button type="primary"
          size="mini"
          @click="radioChange"
          v-hasPermi="['system:notice:add']"
          v-show="tjStatus == '1'"
        >会诊申请</el-button> -->
          <el-button type="primary" @click="determine" v-show="tjStatus == '0'">提 交</el-button>
        </div>
      </div>
@@ -269,6 +362,7 @@
<script>
import Public from "@/components/public";
import { getInfo } from "@/api/login";
import {
  getProList,
  getSons,
@@ -277,7 +371,12 @@
  getParentId,
  getDeptAdvice,
} from "@/api/doctor/check";
import {
  addReplylog, hzHasDept
} from "@/api/hosp/replylog";
import { listHzlog, addHzlog, delHzlog,updateHzlog  } from "@/api/hosp/hzlog";
import { listUser } from "@/api/system/user";
import { getChildList } from "@/api/system/dept";
export default {
  dicts: ["sys_user_sex", "sys_yes_no", "tj_result_type"],
  name: "check",
@@ -287,10 +386,17 @@
      selected: false,
      // 遮罩层
      loading: false,
      open: false,
      foropen: false,
      cateringList: [],
      orderDetailId: "",
      textarea: "",
      title: "",
      hzlogList: [],
      // proDefault: "",
      // dataList: [],
      rows: [],
      id: [],
      deptAdviceList: [],
      value: [],
      remark: "", //备注
@@ -305,8 +411,14 @@
      drawerList: [],
      // 获取信息集合
      tableList: [],
      deptList: [],
      tableAll: {},
      row: {},
      info: {},
      allList: [],
      form: {
        createTime: new Date()
      },
      // 医生
      doctorName: "",
      // 父项
@@ -319,6 +431,8 @@
      userList: null,
      // 父项目列表
      Parent: [],
      hzReplyLogsList: [],
      hasdeptList: [],
      radio: "",
      nums: "",
      proParentList: [],
@@ -330,6 +444,9 @@
      summaryAll: [],
      tjOrderDetailList: [],
      tjOrderDetail: [],
      deptId: "",
      userId: "",
      nickName: "",
      date: new Date(new Date().getTime() + 8 * 3600 * 1000)
        .toJSON()
        .substr(0, 19)
@@ -342,6 +459,11 @@
        type: "",
        name: null,
      },
      rules: {
        hzType: [
          { required: true, message: '请选择科室', trigger: 'change' }
        ]
      }
    };
  },
@@ -377,13 +499,19 @@
          this.userList = response.rows;
        }
      );
      getInfo().then((response) => {
        this.info = response.user
        this.deptId = response.user.deptId;
        this.userId = response.user.userId;
        this.nickName = response.user.nickName;
      });
    },
    handleClose() {
      this.$tab.refreshPage();
    },
    // 获取医生
    selName(val) {
      this.doctorName = val
      this.doctorName = val;
      // this.userList.forEach(item =>{
      //   if(val === item.userId){
      //     this.doctorName = item.nickName
@@ -410,7 +538,7 @@
          });
        });
      } else {
        this.proParentList.remark = ""
        this.proParentList.remark = "";
        this.deptAdviceList.forEach((item) => {
          this.ids = item.id;
          val.forEach((item1) => {
@@ -428,7 +556,7 @@
        });
      }
    },
    vale(datas) {
      this.proResult = datas;
      // this.$refs.aaa.open = true;
@@ -436,17 +564,19 @@
    },
    // 规则
    handleguize(row) {
      this.row = row
      this.row = row;
      this.$refs.aaa.open = true;
      this.$refs.aaa.title = "诊断结果结论";
      this.$refs.aaa.getList(this.row);
    },
    handleChanges(param1, param2) {
      this.row.conclusion = param1
      this.row.rulesList = param2
      this.row.conclusion = param1;
      this.row.rulesList = param2;
    },
    getList() {
      this.queryParams.type = this.tjStatus;
      getProList(this.queryParams).then((response) => {
        if (response.data) {
          if (response.data.date) {
@@ -511,8 +641,184 @@
      this.submitForm();
    },
    Changeapplyfor(row) {
      this.open = true;
      this.form = row
      this.form.hzDoctorId = this.info.userId;
      getChildList().then(res => {
        this.deptList = res.data;
      })
      this.Hzlog(this.form.tjNumber)
    },
    Hzlog(val) {
      let data = {
        tjNumber: val
      }
      listHzlog(data).then(response => {
        this.hzlogList = response.rows;
        this.hzlogList.forEach(item => {
          item.hzDeptName = ""
          if (item.hzType == "0") {
            item.hzDeptName = "全院会诊"
          } else {
            item.hzDeptIdList.forEach(item1 => {
              this.deptList.forEach(item2 => {
                if (item1 == item2.deptId) {
                  item.hzDeptName += item2.deptName + ","
                }
              })
            })
          }
        })
      });
    },
    handledele(row) {
      this.id = []
      this.id.push(row.id)
      delHzlog(this.id).then(res => {
        this.$modal.msgSuccess("删除成功");
        this.Hzlog(this.form.tjNumber)
      })
    },
    hadleedit(row) {
      this.form.hzType = row.hzType
      this.form.id = row.id
    },
    submitFormapply() {
      console.log(this.form)
      let data = {}
      this.userList.forEach(item1 => {
        if (this.form.hzDoctorId == item1.userId) {
          this.form.hzDoctorName = item1.nickName
        }
      })
      if (this.form.hzType != undefined) {
        if (this.form.hzDeptId && this.form.id) {
          // let hzDeptId = ""
          // this.form.hzDeptId.forEach(item => {
          //   hzDeptId += item + ','
          // })
          data = {
            tjNumber: this.form.tjNumber,
            userId: this.form.cusId,
            userName: this.form.cusName,
            hzDeptIdList: this.form.hzDeptId,
            hzDoctorId: this.form.hzDoctorId,
            hzType: this.form.hzType,
            orderId: this.form.orderId,
            hzDoctorName: this.form.hzDoctorName,
            id:this.form.id
          }
        } else {
          data = {
            tjNumber: this.form.tjNumber,
            userId: this.form.cusId,
            userName: this.form.cusName,
            hzDoctorId: this.form.hzDoctorId,
            hzType: this.form.hzType,
            orderId: this.form.orderId,
            hzDoctorName: this.form.hzDoctorName
          }
        }
        this.$refs["form"].validate((valid) => {
          if (valid) {
            if (this.form.id != null) {
              updateHzlog(data).then(res => {
                if (res.code == 200) {
                  this.$modal.msgSuccess("修改成功");
                  this.form = {}
                  this.Hzlog()
                  this.radioChange(1)
                }
              })
            } else {
              addHzlog(data).then(res => {
                if (res.code == 200) {
                  this.$modal.msgSuccess("申请成功");
                  this.form = {}
                  this.Hzlog()
                  this.radioChange(1)
                }
              })
              this.open = false;
            }
          }
        })
      } else {
        this.$modal.msgError("请选择会诊科室");
      }
    },
    cancel() {
      this.open = false;
      this.foropen = false
    },
    Changeapply() {
      this.foropen = true
      this.Hzlog(this.tableAll.tjNumber)
    },
    submitFormreply() {
      let data = {
        hzId: this.allList[0].id,
        orderId: this.allList[0].orderId,
        tjNumber: this.allList[0].tjNumber,
        userId: this.allList[0].userId,
        userName: this.allList[0].userName,
        replyContent: this.textarea,
        hzDoctorId: this.allList[0].hzDoctorId,
        hzDoctorName: this.allList[0].hzDoctorName,
        hzType: this.allList[0].hzType,
        replyDoctorName: this.nickName,
        replyDeptId: this.deptId,
        replyDoctorId: this.userId
      }
      addReplylog(data).then(res => {
        this.$modal.msgSuccess("回复成功");
        this.getDept(this.allList[0].tjNumber)
      })
    },
    // 多选框选中数据
    handleSelectionChange(selection) {
      if (selection.length > 1) {
        const newRows = selection.filter((it, index) => {
          if (index == selection.length - 1) {
            this.$refs.tab.toggleRowSelection(it, true);
            return true;
          } else {
            this.$refs.tab.toggleRowSelection(it, false);
            return false;
          }
        });
        //   this.allList = []
        //   if(newRows[0].hzReplyLogsList){
        //     this.hzReplyLogsList = newRows[0].hzReplyLogsList
        //   }
        //  console.log(this.hzReplyLogsList)
        //   this.allList = newRows
      } else {
        this.allList = []
        if (selection[0]) {
          if (selection[0].hzReplyLogsList) {
            this.hzReplyLogsList = selection[0].hzReplyLogsList
          }
        } else {
          this.hzReplyLogsList = []
        }
        this.allList = selection
      }
    },
    // 点击详情
    handleClick(row) {
      this.getDept(row.tjNumber)
      this.loading = true;
      this.drawer = true;
      this.tableAll = row;
      if (this.tableAll.cusSex === 0) {
@@ -521,7 +827,6 @@
      if (this.tableAll.cusSex === 1) {
        this.tableAll.cusSex = "女";
      }
      this.tjNumber = row.tjNumber;
      let num = 0;
      getParentList(this.tjNumber).then((response) => {
@@ -541,12 +846,17 @@
            };
            getParentId(data).then((response) => {
              this.proParentList = response.data;
              this.loading = false;
              this.value = [];
              if (this.proParentList.xiaoJie.length != 0) {
                this.proParentList.xiaoJie.forEach((item2) => {
                  this.value.push(item2.id);
                });
              if (this.proParentList.xiaoJieIds != null) {
                if (this.proParentList.xiaoJieIds.length != 0) {
                  this.proParentList.xiaoJieIds.forEach((item2) => {
                    let item = Number(item2)
                    this.value.push(item);
                  });
                }
              }
              this.proParentList.sons.forEach((item) => {
                this.doctorName = item.doctorName;
@@ -582,7 +892,6 @@
          num = num + 1;
        });
      });
      getDeptAdvice().then((response) => {
        this.deptAdviceList = response.data;
      });
@@ -602,6 +911,34 @@
      //   })
      // });
    },
    getDept(val) {
      let data = {
        tjNumber: val,
        deptId: this.deptId
      }
      hzHasDept(data).then(res => {
        if (res.data) {
          this.hasdeptList = res.data
          this.hasdeptList.forEach(item => {
            item.hzDeptName = ""
            if (item.hzType == "0") {
              item.hzDeptName = "全院会诊"
            } else {
              item.hzDeptIdList.forEach(item1 => {
                this.deptList.forEach(item2 => {
                  if (item1 == item2.deptId) {
                    item.hzDeptName += item2.deptName + ","
                  }
                })
              })
            }
          })
        }
      })
    },
    // 按钮点击事件
    radioChange1(proParentId, item) {
      this.$confirm(
@@ -614,24 +951,30 @@
        }
      )
        .then(() => {
          // 体检号
          let tjNumber = this.tableAll.tjNumber;
          this.userList.forEach((item) => {
            if (this.doctorName == item.nickName) {
              this.doctorName = item.userId;
            }
          });
          this.proParentList.sons.forEach((item) => {
            if (this.rows) {
              this.rows.forEach((item1) => {
                if (item1 === item) {
                  item = item1;
                }
                // if (item.exceptionDesc === true) {
                //   item.exceptionDesc = 1;
                // if (item.isReturn == true) {
                //   item.isReturn = 1;
                // }
                // if (item.exceptionDesc === false) {
                //   item.exceptionDesc = 0;
                // if (item.isReturn == false) {
                //   item.isReturn = 0;
                // }
              });
            }
            this.tjOrderDetail.push({
              proName: item.project.proName,
              proId: item.project.proId,
              orderDetailId: item.orderDetailId,
              flowingWaterId: item.flowingWaterId,
              proResult: item.proResult,
@@ -639,9 +982,10 @@
              isReturn: item.isReturn === true ? 1 : 0,
              exceptionDesc: item.exceptionDesc === true ? 1 : 0,
              conclusion: item.conclusion,
              rulesList: item.rulesList
              rulesList: item.rulesList,
            });
          });
          var data = [
            {
              tjNumber,
@@ -649,6 +993,7 @@
              remark: this.proParentList.remark, // 备注
              proName: this.proName, //父项
              summaryList: this.value, //小结
              doctorName: this.doctorName,
              tjOrderDetailList: this.tjOrderDetail,
            },
          ];
@@ -665,10 +1010,13 @@
          getParentId(data).then((response) => {
            this.proParentList = response.data;
            this.value = [];
            if (this.proParentList.xiaoJie.length != 0) {
              this.proParentList.xiaoJie.forEach((item2) => {
                this.value.push(item2.id);
              });
            if (this.proParentList.xiaoJieIds != null) {
              if (this.proParentList.xiaoJieIds.length != 0) {
                this.proParentList.xiaoJieIds.forEach((item2) => {
                  let item = Number(item2)
                  this.value.push(item);
                });
              }
            }
            this.proParentList.sons.forEach((item) => {
              this.doctorName = item.doctorName;
@@ -685,7 +1033,6 @@
              if (item.exceptionDesc == "0") {
                item.exceptionDesc = false;
              }
            });
            if (this.proParentList.xiaoJie.length != 0) {
              this.Parent.forEach((item3) => {
@@ -717,10 +1064,13 @@
          getParentId(data).then((response) => {
            this.proParentList = response.data;
            this.value = [];
            if (this.proParentList.xiaoJie.length != 0) {
              this.proParentList.xiaoJie.forEach((item2) => {
                this.value.push(item2.id);
              });
            if (this.proParentList.xiaoJieIds != null) {
              if (this.proParentList.xiaoJieIds.length != 0) {
                this.proParentList.xiaoJieIds.forEach((item2) => {
                  let item = Number(item2)
                  this.value.push(item);
                });
              }
            }
            this.proParentList.sons.forEach((item) => {
              this.doctorName = item.doctorName;
@@ -737,7 +1087,6 @@
              if (item.exceptionDesc == "0") {
                item.exceptionDesc = false;
              }
            });
            if (this.proParentList.xiaoJie.length != 0) {
              this.Parent.forEach((item3) => {
@@ -756,7 +1105,6 @@
        });
    },
    handleInputConfirm(row) {
      this.rows.push(row);
    },
@@ -764,6 +1112,11 @@
    determine() {
      // 体检号
      let tjNumber = this.tableAll.tjNumber;
      this.userList.forEach((item) => {
        if (this.doctorName == item.nickName) {
          this.doctorName = item.userId;
        }
      });
      this.proParentList.sons.forEach((item) => {
        if (this.rows) {
          this.rows.forEach((item1) => {
@@ -788,7 +1141,7 @@
          isReturn: item.isReturn === true ? 1 : 0,
          exceptionDesc: item.exceptionDesc === true ? 1 : 0,
          conclusion: item.conclusion,
          rulesList: item.rulesList
          rulesList: item.rulesList,
        });
      });