|
@@ -0,0 +1,2337 @@
|
|
|
+ <!DOCTYPE html>
|
|
|
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
|
|
+<head>
|
|
|
+ <th:block th:include="include :: header('随访任务详情')" />
|
|
|
+ <th:block th:include="include :: layout-latest-css" />
|
|
|
+ <th:block th:include="include :: ztree-css" />
|
|
|
+ <th:block th:include="include :: select2-css" />
|
|
|
+ <th:block th:include="include :: bootstrap-editable-css" />
|
|
|
+
|
|
|
+</head>
|
|
|
+<style>
|
|
|
+ .select2-dropdown {
|
|
|
+ z-index: 9999 !important;
|
|
|
+ }
|
|
|
+ .tabs-container {
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+ .styled-input5 {
|
|
|
+ /*display: block; /* 使其独占一行 */
|
|
|
+ width: 150px; /* 宽度为容器宽度 */
|
|
|
+ height: 26px;
|
|
|
+ padding: 6px; /* 内边距 */
|
|
|
+ font-size: 14px; /* 字体大小 */
|
|
|
+ color: #333; /* 字体颜色 */
|
|
|
+ /*background-color: #fff; !* 背景颜色 *!*/
|
|
|
+ border: 1px solid #ccc; /* 边框 */
|
|
|
+ border-radius: 4px; /* 圆角边框 */
|
|
|
+ outline: none; /* 移除轮廓 */
|
|
|
+ transition: all 0.3s ease; /* 过渡动画 */
|
|
|
+ }
|
|
|
+ .btn {
|
|
|
+ background-color: #f2f2f2;
|
|
|
+ border: none;
|
|
|
+ color: black;
|
|
|
+ padding: 5px 10px;
|
|
|
+ text-align: center;
|
|
|
+ text-decoration: none;
|
|
|
+ display: inline-block;
|
|
|
+ font-size: 16px;
|
|
|
+ margin: 4px 2px;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-primary {
|
|
|
+ background-color: #1a7bb9;
|
|
|
+ color: white;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-w-m {
|
|
|
+ width: max-content;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-default {
|
|
|
+ background-color: #f2f2f2;
|
|
|
+ color: black;
|
|
|
+ }
|
|
|
+ .btn:hover {
|
|
|
+ opacity: 0.8;
|
|
|
+ }
|
|
|
+ .tab-1a {
|
|
|
+ padding-left: 50px;
|
|
|
+ width: 100px;
|
|
|
+ font-size: 15px
|
|
|
+ }
|
|
|
+ .tab-1b {
|
|
|
+ width: 100px;
|
|
|
+ color: blue;
|
|
|
+ font-size:15px;
|
|
|
+ }
|
|
|
+ .task-follow-up {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .follow-up-person, .plan-buttons {
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ .plan-buttons {
|
|
|
+ text-align: right;
|
|
|
+ }
|
|
|
+ .ibox-title2 {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: start;
|
|
|
+ padding: 6px;
|
|
|
+ border-bottom: 1px solid #ddd;
|
|
|
+ }
|
|
|
+ .right-aligned-link {
|
|
|
+ float: right;
|
|
|
+ margin-left: 20px; /* 增加左侧边距 */
|
|
|
+ }
|
|
|
+
|
|
|
+ .right-aligned-link::after {
|
|
|
+ content: ">";
|
|
|
+ color: blue;
|
|
|
+ }
|
|
|
+ .task-info {
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ .task-details {
|
|
|
+ flex: 2;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ gap: 0px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .task-buttons {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-end;
|
|
|
+ gap: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .task-buttons span {
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .task-details span {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ gap: 1px;
|
|
|
+ }
|
|
|
+ .custom-file-upload {
|
|
|
+ position: relative;
|
|
|
+ overflow: hidden;
|
|
|
+ cursor: pointer;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .custom-file-upload input[type=file] {
|
|
|
+ opacity: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ position: absolute;
|
|
|
+ }
|
|
|
+
|
|
|
+ .custom-file-upload label {
|
|
|
+ background-color: white;
|
|
|
+ border: 2px dashed #007bff;
|
|
|
+ color: #007bff;
|
|
|
+ padding: 20px;
|
|
|
+ text-align: center;
|
|
|
+ display: block;
|
|
|
+ min-height: 150px;
|
|
|
+ }
|
|
|
+ #hbyyjlTable {
|
|
|
+ width: 100%;
|
|
|
+ border-collapse: collapse;
|
|
|
+ }
|
|
|
+
|
|
|
+ th,
|
|
|
+ td {
|
|
|
+ padding: 10px;
|
|
|
+ text-align: center;
|
|
|
+ border-bottom: 1px solid #ddd;
|
|
|
+ }
|
|
|
+
|
|
|
+ thead th {
|
|
|
+ background-color: #f2f2f2;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
+ tbody tr:hover {
|
|
|
+ background-color: #f5f5f5;
|
|
|
+ }
|
|
|
+
|
|
|
+ .no-data {
|
|
|
+ text-align: center;
|
|
|
+ padding: 0px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-primarys {
|
|
|
+ margin-left: 10px;
|
|
|
+ color: green;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ .customize-form-group3 {
|
|
|
+ width: 700px;
|
|
|
+ display: flex;
|
|
|
+ }
|
|
|
+
|
|
|
+ .input-groups3 {
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+
|
|
|
+ .radio-item {
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .radio-item label {
|
|
|
+ margin-left: 5px;
|
|
|
+ }
|
|
|
+ .hidden {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .shown {
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+</style>
|
|
|
+<script>
|
|
|
+
|
|
|
+</script>
|
|
|
+<body>
|
|
|
+<div class="">
|
|
|
+ <div class="ibox">
|
|
|
+ <form id="form-followUp-edit1">
|
|
|
+ <div class="ibox-title">
|
|
|
+ <button class="btn btn-w-m btn-primary" onclick="editArchives()">完善档案</button>
|
|
|
+ <button type="button" class="btn btn-sm btn-danger pull-right" onclick="closeItem()">返回上一级</button>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group">
|
|
|
+ <label>姓名:</label>
|
|
|
+ <input name="name" id="name" class="select-input" type="text" th:value="${name}" disabled="true"/>
|
|
|
+ <i class="fa" th:class="${realNameStatus == 1 ? 'fa fa-check' : 'fa fa-close'}" id="checkName" ></i>
|
|
|
+
|
|
|
+ <input name="realNameStatus" id="realNameStatus" class="status" type="text" th:value="${realNameStatus == 1 ? '已实名' : (realNameStatus == 0 ? '未实名' : '')}" readonly>
|
|
|
+ <label>性别:</label>
|
|
|
+ <input name="gender" id="gender" type="text" class="select-input" th:value="${gender == 1 ? '女' : (gender == 0 ? '男' : '')}" readonly>
|
|
|
+ <span class="span_line" readonly></span>
|
|
|
+ <label>出生年月:</label>
|
|
|
+ <input name="dateBirth" id="dateBirth" placeholder="出生年月" class="select-input" type="text" th:value="${dateBirth}" disabled="true" />
|
|
|
+ <span class="status" style="width: 66px">
|
|
|
+ <input name="age" type="text" id="age" th:value="${age}" style="text-align: center;width: 30px;border: none;" readonly />岁</span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group">
|
|
|
+ <div th:each="item : ${dValueList}" style="margin-bottom: 10px; border: 1px solid #ccc; padding: 10px;">
|
|
|
+ <span>
|
|
|
+ <strong>药品: <code th:text="${item.genericName}"></code></strong><br>
|
|
|
+ <strong>用药状态: <code th:text="${item.medication_status}"></code></strong><br>
|
|
|
+ <strong>剩余用药天数: <code th:text="${item.sum_total}"></code>天</strong><br>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="ibox-content">
|
|
|
+ <div>
|
|
|
+ <span>档案完善度:已完善---><div></div></span>
|
|
|
+ <div class="stat-percent" th:text="${completenessPercentage} + ' %'"></div>
|
|
|
+ <div class="progress progress-mini">
|
|
|
+ <!-- 使用 Thymeleaf 的 th:style 属性动态设置样式 -->
|
|
|
+ <div class="progress-bar" th:style="'width: ' + ${completenessPercentage} + '%;'"></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ <div class="ui-layout-center">
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-sm-12">
|
|
|
+ <div class="tabs-container">
|
|
|
+ <ul class="nav nav-tabs" id="myUlTabs">
|
|
|
+ <li class="active"><a data-toggle="tab" href="#tab-1" aria-expanded="true"> 基本信息</a>
|
|
|
+ </li>
|
|
|
+ <li class=""><a data-toggle="tab" href="#tab-2" aria-expanded="false">用药购药</a>
|
|
|
+ </li>
|
|
|
+ <li class=""><a data-toggle="tab" href="#tab-3" aria-expanded="false">随访计划</a>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <div class="tab-content">
|
|
|
+ <div id="tab-1" class="tab-pane active">
|
|
|
+ <form class="customize-search-form" id="form-followUp-edit2" >
|
|
|
+
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>手机号码:</label>
|
|
|
+ <input name="phoneNumber" id="phoneNumber" class="styled-input" type="text" maxlength="30" th:value="${phoneNumber}" disabled="true">
|
|
|
+ <span class="span_line" readonly></span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="customize-form-group">
|
|
|
+ <label>配送地址:</label>
|
|
|
+ <input name="addr" disabled="true" id="addr" class="styled-input " type="text" th:value="${addr}">
|
|
|
+ <span class="span_line" readonly></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group">
|
|
|
+ <label>联系人手机号:</label>
|
|
|
+ <input name="contactPhone" disabled="true" id="contactPhone" class="styled-input" type="text" th:value="${contactPhone}">
|
|
|
+ <span class="span_line" readonly></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group">
|
|
|
+ <label>联系人姓名:</label>
|
|
|
+ <input name="contactName"disabled="true" id="contactName" class="styled-input" type="text" th:value="${contactName}">
|
|
|
+ <span class="span_line" readonly></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>D值品名称:</label>
|
|
|
+ <input name="dvalueName" id="dvalueName" class="styled-input" type="text" th:value="${dvalueName}" disabled="true">
|
|
|
+ <span class="span_line" readonly></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>D值品天数:</label>
|
|
|
+ <input name="dvalueDay" id="dvalueDay" class="styled-input" type="text" th:value="${dvalueDay}" disabled="true">
|
|
|
+ <span class="span_line" readonly></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit select-time">
|
|
|
+ <label>首次确诊时间:</label>
|
|
|
+ <input name="timeFirstDiagnosis" disabled="true" class="styled-input" type="text" th:value="${timeFirstDiagnosis}">
|
|
|
+ <span class="span_line" readonly></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >证件号码:</label>
|
|
|
+ <input name="documentType" placeholder="证件类型" class="styled-input short" style="font-size: 13px" type="text" th:value="${documentType}" disabled="true">
|
|
|
+ <input name="documentNumber" placeholder="请输入证件号码" class="styled-input" type="text" maxlength="30" th:value="${documentNumber}" disabled="true">
|
|
|
+ <span class="span_line" readonly></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group-container">
|
|
|
+ <div class="customize-form-group">
|
|
|
+ <label class="col-sm-1 control-label">肿瘤发病部位疾病:</label>
|
|
|
+ <select id="category-select1" class="styled-input edit_inputs select2-multiple" placeholder="肿瘤发病部位疾病" disabled="true">
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group">
|
|
|
+ <label class="col-sm-1 control-label">肿瘤治疗并发症与合并症:</label>
|
|
|
+ <select id="category-select2" class="styled-input edit_inputs select2-multiple" placeholder="肿瘤治疗并发症与合并症" disabled="true">
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group">
|
|
|
+ <label class="col-sm-1 control-label">风湿免疫疾病名称:</label>
|
|
|
+ <select id="category-select3" class="styled-input edit_inputs select2-multiple" placeholder="风湿免疫疾病名称" disabled="true">
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group">
|
|
|
+ <label class="col-sm-1 control-label">罕见病疾病:</label>
|
|
|
+ <select id="category-select4" class="styled-input edit_inputs select2-multiple" placeholder="罕见病疾病" disabled="true">
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group">
|
|
|
+ <label class="col-sm-1 control-label">感染类疾病:</label>
|
|
|
+ <select id="category-select5" class="styled-input edit_inputs select2-multiple" placeholder="感染类疾病" disabled="true">
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group">
|
|
|
+ <label class="col-sm-1 control-label">临时慢病:</label>
|
|
|
+ <select id="category-select6" class="styled-input edit_inputs select2-multiple" placeholder="临时慢病" disabled="true">
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ <div id="tab-2" class="tab-pane">
|
|
|
+ <div class="panel-body">
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-sm-12 select-table table-striped">
|
|
|
+ <table id="bootstrap-table-2"></table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="tab-3" class="tab-pane">
|
|
|
+ <div class="task-follow-up">
|
|
|
+ <div class="follow-up-person">
|
|
|
+ <label style="padding-left: 10px;">随访跟进人:</label>
|
|
|
+<!-- <code style="font-size: 1.5rem;width: 200px;padding-left: 15px;">-->
|
|
|
+<!-- 随访跟进人:-->
|
|
|
+<!-- </code>-->
|
|
|
+ <code id="followUpPersonNameCode" style="font-size: 1.5rem;width: 200px;padding-left: 15px;" th:text="${followUpPersonName}">
|
|
|
+ </code>
|
|
|
+<!-- <code type="text" id="follow_up_person" style="border: none; width: 55px; color: red;" th:value="${follow_up_person}">-->
|
|
|
+<!-- </code>-->
|
|
|
+ <input type="hidden" id="followUpPersonId" name="followUpPersonId" th:value="${followUpPersonId}"/>
|
|
|
+ <input type="hidden" id="followUpPersonName" name="followUpPersonName" th:value="${followUpPersonName}"/>
|
|
|
+ <a href="#" onclick="editSFGenJinRen()">修改<i class="glyphicon glyphicon-pencil"></i></a>
|
|
|
+ </div>
|
|
|
+ <div class="plan-buttons">
|
|
|
+<!-- <button class="btn btn-w-m btn-primary" onclick="showAllPlan()">查看全部计划</button>-->
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="row">
|
|
|
+ <div class="ibox-content">
|
|
|
+ <div class="ibox-title2">
|
|
|
+ <code style="font-size: 1.5rem;width: 200px;" th:text="${productName}">
|
|
|
+ </code>
|
|
|
+ <code style="font-size: 1.5rem; width: 200px;" th:text="${specification}">
|
|
|
+ </code>
|
|
|
+ <code style="font-size: 1.5rem;color: #00B83F;padding-right: 30px;"><i class="glyphicon glyphicon-ice-lolly" th:text="${businessBelonging}"></i></code>
|
|
|
+ <code style="font-size: 1.5rem;color: #00B83F;padding-right: 30px;"
|
|
|
+ th:text="${status == '关闭'? '已关闭' : status}">
|
|
|
+ <!-- 默认文本将被 Thymeleaf 动态替换 -->
|
|
|
+ </code>
|
|
|
+ <!-- 根据 status 的值决定是否显示关闭计划按钮 -->
|
|
|
+ <a th:if="${status != '关闭'}" onclick="closePlan(1)" href="javascript:void(0)" class="right-aligned-link">关闭计划</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="row">
|
|
|
+ <div class="ibox-content">
|
|
|
+ <div class="ibox-title2">
|
|
|
+ <span style="padding-left: 10px;font-size:15px;">创建人:</span>
|
|
|
+ <span style="width: 120px;color: #2E2D3C;font-size:15px;padding-right: 40px;" th:text="${createdBy}"></span>
|
|
|
+ <span style="font-size:15px;">开始时间:</span> <span style="width: 220px;color: #2E2D3C;font-size:15px;padding-right: 70px;" th:text="${createdTime}"></span>
|
|
|
+ <span style="font-size:15px;">更新人:</span> <span style="width: 100px;color: #2E2D3C;font-size:15px;" th:text="${updatedBy}"></span>
|
|
|
+ <span style="font-size:15px;">更新时间:</span> <span style="width: 220px;color: #2E2D3C;font-size:15px;padding-right: 70px;" th:text="${updatedTime}"></span>
|
|
|
+<!-- <a href="javascript:void(0)" onclick="ViewOperationLog()" class="right-aligned-link">查看操作记录</a>-->
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-sm-12 select-table table-striped">
|
|
|
+ <table id="bootstrap-table-4"></table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="row">
|
|
|
+ <div class="ibox-content">
|
|
|
+ <div class="ibox-title2">
|
|
|
+ <code style="font-size: 1.5rem;width: 200px;" th:text="${productName2}">
|
|
|
+ </code>
|
|
|
+ <code style="font-size: 1.5rem; width: 200px;" th:text="${specification2}">
|
|
|
+ </code>
|
|
|
+ <code style="font-size: 1.5rem;color:#ec971f;padding-right: 30px;"><i class="glyphicon glyphicon-ice-lolly-tasted" th:text="${businessBelonging2}"></i></code>
|
|
|
+ <code style="font-size: 1.5rem;color: #00B83F;padding-right: 30px;"
|
|
|
+ th:text="${status2 == '关闭'? '已关闭' : status2}">
|
|
|
+ <!-- 默认文本将被 Thymeleaf 动态替换 -->
|
|
|
+ </code>
|
|
|
+ <a th:if="${status2 != '关闭'}" onclick="closePlan(2)" href="javascript:void(0)" class="right-aligned-link">关闭计划</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="row">
|
|
|
+ <div class="ibox-content">
|
|
|
+ <div class="ibox-title2">
|
|
|
+ <span style="padding-left: 10px;font-size:15px;">创建人:</span>
|
|
|
+ <span style="width: 120px;color: #2E2D3C;font-size:15px;padding-right: 40px;" th:text="${createdBy2}"></span>
|
|
|
+ <span style="font-size:15px;">开始时间:</span> <span style="width: 220px;color: #2E2D3C;font-size:15px;padding-right: 70px;" th:text="${createdTime2}"></span>
|
|
|
+ <span style="font-size:15px;">更新人:</span> <span style="width: 100px;color: #2E2D3C;font-size:15px;" th:text="${updatedBy2}"></span>
|
|
|
+ <span style="font-size:15px;">更新时间:</span> <span style="width: 220px;color: #2E2D3C;font-size:15px;padding-right: 70px;" th:text="${updatedTime2}"></span>
|
|
|
+ <!-- <a href="javascript:void(0)" onclick="ViewOperationLog()" class="right-aligned-link">查看操作记录</a>-->
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-sm-12 select-table table-striped">
|
|
|
+ <table id="bootstrap-table-5"></table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="ibox-content">
|
|
|
+ <div class="ibox-title2">
|
|
|
+ <div class="task-info">
|
|
|
+ <h4>本次任务 <code style="font-size: 1.5rem;" th:text="${bc_taskStatus}"></code></h4>
|
|
|
+ </div>
|
|
|
+ <span style="font-size:15px;">任务名称:
|
|
|
+ <span style="font-size:15px;" th:text="${bc_taskName}"></span>
|
|
|
+ </span>
|
|
|
+ <span style="font-size:15px;">药品:
|
|
|
+ <span style="font-size:15px;" th:text="${bc_productName}"></span>
|
|
|
+ </span>
|
|
|
+ <span style="font-size:15px;">任务主题:
|
|
|
+ <span>
|
|
|
+ <select name="taskTheme" class="styled-input" th:with="type=${@dict.getType('sys_select_dtp_sfrw_rwzt')}">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:selected="${dict.dictLabel}==${bc_taskTheme}"></option>
|
|
|
+ </select>
|
|
|
+ </span>
|
|
|
+ </span>
|
|
|
+ <span style="font-size:15px;">任务跟进人:
|
|
|
+ <input type="hidden" id="bc_taskFollower" name="bc_taskFollower" th:value="bc_taskFollower"/>
|
|
|
+ <span id="bc_taskFollowerCode" style="color: #2E2D3C;font-size:15px;"><code style="font-size: 1.4rem;font-size:15px;" th:text="${bc_taskFollower}" ></code></span>
|
|
|
+ <a onclick="editTaskGenJinRen()" style="font-size:15px;"> 修改 <i class="glyphicon glyphicon-pencil"></i></a>
|
|
|
+ </span>
|
|
|
+
|
|
|
+ <div class="task-buttons">
|
|
|
+<!-- <button class="btn btn-w-m btn-primary" onclick="showDetailHistory()">查看历史随访</button>-->
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <form id="form-followUp-edit3" class="form-horizontal">
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-sm-12">
|
|
|
+ <div class="panel blank-panel">
|
|
|
+ <div class="panel-heading" style="width: 1100px;">
|
|
|
+ <div class="panel-options">
|
|
|
+ <ul class="nav nav-tabs" id="myTabs2">
|
|
|
+ <li class="active"><a data-toggle="tab" href="#tab-4" aria-expanded="true">本次任务</a>
|
|
|
+ </li>
|
|
|
+ <li class=""><a data-toggle="tab" href="#tab-6">用药依从性</a>
|
|
|
+ </li>
|
|
|
+ <li class=""><a data-toggle="tab" href="#tab-7" >不良反应</a>
|
|
|
+ </li>
|
|
|
+ <li class=""><a data-toggle="tab" href="#tab-8">药物有效性</i></a>
|
|
|
+ </li>
|
|
|
+ <li class=""><a data-toggle="tab" href="#tab-9">治疗方案</a>
|
|
|
+ </li>
|
|
|
+ <li class=""><a data-toggle="tab" href="#tab-10">适宜性评估</a>
|
|
|
+ </li>
|
|
|
+ <li class=""><a data-toggle="tab" href="#tab-11">用药记录</a>
|
|
|
+ </li>
|
|
|
+ <li class=""><a data-toggle="tab" href="#tab-12">量表测评</a>
|
|
|
+ </li>
|
|
|
+ <li class=""><a data-toggle="tab" href="#tab-13">患者咨询</a>
|
|
|
+ </li>
|
|
|
+ <li class=""><a data-toggle="tab" href="#tab-14">其他</a>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="panel-body">
|
|
|
+ <div class="tab-content">
|
|
|
+ <div id="tab-4" class="tab-pane active">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">回访方式:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_select_dtp_ysfw_huifangfangshi')}">
|
|
|
+ <input type="hidden" id="id" name="id" th:value="${bc_id}">
|
|
|
+ <input type="hidden" id="planId" name="planId" th:value="${planId}">
|
|
|
+ <input type="hidden" id="bc_planId" name="bc_planId" th:value="${bc_planId}">
|
|
|
+ <input type="hidden" id="planId_cg" name="planId_cg" th:value="${planId_cg}">
|
|
|
+ <input type="hidden" id="planId_tl" name="planId_tl" th:value="${planId_tl}">
|
|
|
+ <input type="hidden" id="patientId" name="patientId" th:value="${patientId}">
|
|
|
+ <input type="radio" class="form-check-radio" name="returnMethod" id="returnMethod" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${returnMethod}">
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div id="weixin" class="hidden">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required" for="returnImgUrl">回访图片:</label>
|
|
|
+ <div class="custom-file-upload">
|
|
|
+ <input type="file" id="returnImgUrl" accept=".jpg,.jpeg,.png,.gif">
|
|
|
+ <label for="returnImgUrl"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#007bff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg></label>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div id="mianfang" class="hidden">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>面访记录:</label>
|
|
|
+ <div class="input-groups" style="width: 50%">
|
|
|
+ <input name="InterviewRecord" id="InterviewRecord" placeholder="请输入面访记录" class="styled-input edit_inputs" type="text" th:value="${InterviewRecord}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group">
|
|
|
+ <label>回访对象:</label>
|
|
|
+ <select name="returnObject" class="select-input edit_inputs" id="returnObject" th:with="type=${@dict.getType('sys_select_dtp_ysfw_huifangduixaing')}">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}"
|
|
|
+ th:selected="${dict.dictLabel}==${returnObject}"></option>
|
|
|
+ </select>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">是否配合:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_select_yes_no')}">
|
|
|
+ <input type="radio" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:checked="${dict.dictValue}==${iscoordinate}" name="iscoordinate" id="iscoordinate">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="tab-6" class="tab-pane active">
|
|
|
+ <div class="customize-form-group edit" >
|
|
|
+ <label>用药状态:</label>
|
|
|
+ <div class="input-groups" style="width: 90%" th:with="type=${@dict.getType('sys_gxhpz_yyycx')}">
|
|
|
+ <input type="radio" class="form-check-radio" name="medicationStatus" id="medicationStatus" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${medicationStatus}" >
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">确诊后首次用药日期:</label>
|
|
|
+ <div class="input-groups">
|
|
|
+ <input name="timeFirstDiagnosis" id="timeFirstDiagnosis" placeholder="确诊后首次用药日期" class="time-input time-input2" type="text" th:value="${timeFirstDiagnosis}" required>
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div id="csyzyy" class="hidden">
|
|
|
+ <div class="customize-form-group edit" >
|
|
|
+ <label>慈善援助用药:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_gxhpz_chishan_yzyy')}">
|
|
|
+ <input type="radio" name="charitable" id="charitable" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${chishanyy}" >
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="yjty" class="hidden">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>永久停药时间:</label>
|
|
|
+ <div class="input-groups">
|
|
|
+ <input name="permanentStopTime" id="permanentStopTime" placeholder="永久停药时间" class="time-input time-input2" type="text" th:value="${permanentStopTime}" required>
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">永久停药原因:</label>
|
|
|
+ <div class="input-groups" style="width: 90%" th:with="type=${@dict.getType('sys_gxhpz_yong_jiu_ting_yao_yuanyin')}">
|
|
|
+ <input type="radio" id="perpetual_stopdrug_cause" name="perpetual_stopdrug_cause" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${perpetual_stopdrug_cause}" >
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>直接永久停药:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_yes_no')}">
|
|
|
+ <input type="radio" id="stoped" name="stoped" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${stoped}" >
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="qtgyqgy" class="hidden">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>其他渠道购药:</label>
|
|
|
+ <div class="input-groups" style="width: 90%" th:with="type=${@dict.getType('sys_gxhpz_othetqd_gy')}">
|
|
|
+ <input type="radio" id="other_channels" name="other_channels" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${other_channels}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="ycgyycjy" class="hidden">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">延迟购药(医嘱建议):</label>
|
|
|
+ <div class="input-groups" style="width: 90%" th:with="type=${@dict.getType('sys_gxhpz_yanchi_gy_ys_jy')}">
|
|
|
+ <input type="radio" id="delay_purchase_doctor" name="delay_purchase_doctor" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${delay_purchase_doctor}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="ycgyhzyybgf" class="hidden">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">延迟购药(用药不规范):</label>
|
|
|
+ <div class="input-groups" style="width: 90%" th:with="type=${@dict.getType('sys_gxhpz_yanchi_gyhzyybgf')}">
|
|
|
+ <input type="radio" id="delayed_purchase_drugs" name="delayed_purchase_drugs" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${delayed_purchase_drugs}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="tab-7" class="tab-pane active">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">是否出现不良反应:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_yes_no')}">
|
|
|
+ <input type="radio" class="form-check-radio" th:each="dict : ${type}" name="is_adverse_reaction" id="is_adverse_reaction" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${is_adverse_reaction}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">合并用药是否引起不良反应:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_yes_no')}">
|
|
|
+ <input type="radio" class="form-check-radio" th:each="dict : ${type}" name="hbis_adverse_reaction" id="hbis_adverse_reaction" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${hbis_adverse_reaction}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div id="hbyyqtblfydiv">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>合并用药其他不良反应:</label>
|
|
|
+ <div class="input-groups">
|
|
|
+ <input name="weight" id="hbyyqtblfy" placeholder="合并用药其他不良反应" class="styled-input edit_inputs" type="text" th:value="${weight}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label for="blfyclfsImage">合并用药其他不良反应图片:</label>
|
|
|
+ <div class="custom-file-upload">
|
|
|
+ <input type="file" id="blfyclfsImage" name="blfyclfsImage" accept=".jpg,.jpeg,.png,.gif">
|
|
|
+ <label for="blfyclfsImage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#007bff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg></label>
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>合并用药其他不良反应处理:</label>
|
|
|
+ <textarea id="hbyyqtblfycl" name="hbyyqtblfycl" class="styled-input edit_inputs textareas"
|
|
|
+ style="width: auto;height: auto ;border: 1px solid ;"
|
|
|
+ th:text="${hbyyqtblfycl}" placeholder="合并用药其他不良反应处理..." rows="4" cols="112" ></textarea>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div id="bulfydiv" class="hidden">
|
|
|
+
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>不良反应时间:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_yes_no')}">
|
|
|
+ <input name="adverse_reaction_time" id="adverse_reaction_time" placeholder="不良反应时间" class="time-input time-input2" type="text" th:value="${adverse_reaction_time}" required>
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <span class="status"></span>
|
|
|
+ <div class="tab-pane fade in active">
|
|
|
+ <div class="panel-body">
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <div style="/*display: flex;*/">
|
|
|
+ <label style="width: auto;">不良反应症状:</label>
|
|
|
+ <button type="button" data-toggle="modal" class="btn btn-ms btn-primary" data-target="#myModal5">新增</button>
|
|
|
+ <table id="byfyTable" style="width: 340px;">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th>序号</th>
|
|
|
+ <th>不良反应症状</th>
|
|
|
+ <th>操作</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="blfyTableBody">
|
|
|
+ <!-- 表格行将在这里动态添加 -->
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="modal inmodal fade" id="myModal5" tabindex="-1" role="dialog" aria-hidden="true">
|
|
|
+ <div class="modal-dialog modal-lg" style="width: 1000px">
|
|
|
+ <div class="modal-content">
|
|
|
+ <div class="modal-header">
|
|
|
+ <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span>
|
|
|
+ </button>
|
|
|
+ <h4 class="modal-title">不良反应系统</h4>
|
|
|
+ <!--<small class="font-bold">这里可以显示副标题。</small>-->
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <div id="element1" class="row">
|
|
|
+ <div class="col-sm-2">
|
|
|
+ <select class="province form-control m-b" data-first-title="选择不良反应">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <select class="city form-control m-b" data-first-title="选择不良反应位置">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-7">
|
|
|
+ <select class="area form-control m-b" data-first-title="选择不良反应数值">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="modal-footer">
|
|
|
+ <button type="button" class="btn btn-white" data-dismiss="modal">关闭</button>
|
|
|
+ <button type="button" class="btn btn-primary" data-dismiss="modal" onclick="selectAdverseReactions()">保存</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div id="tab-8" class="tab-pane active">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">是否复查:</label>
|
|
|
+ <select name="patientAwareness" class="select-input" th:with="type=${@dict.getType('sys_yes_no')}" required>
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}"
|
|
|
+ th:selected="${dict.dictLabel}==${patientAwareness}"></option>
|
|
|
+ </select>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div id="sffcyes">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">影像学检查:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_select_dtp_ysfw_bxlx')}" id="targetInsuranceDiv">
|
|
|
+ <input type="checkbox" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" name="insurance2">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div id="ctradio">
|
|
|
+ <div class="customize-form-group edit" >
|
|
|
+ <label>CT:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_select_dtp_ysfw_mqjjzt')}">
|
|
|
+ <input type="radio" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${followUpFeedbackDoctor}" name="followUpFeedbackDoctor" >
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>CT文本:</label>
|
|
|
+ <div class="input-groups">
|
|
|
+ <input name="weight" id="CTtext" placeholder="请输入CT文本" class="styled-input edit_inputs" type="text" th:value="${weight}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="bcradio">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>B超:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_select_dtp_ysfw_mqjjzt')}">
|
|
|
+ <input type="radio" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${followUpFeedbackDoctor}" name="followUpFeedbackDoctor" >
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>B超文本:</label>
|
|
|
+ <div class="input-groups">
|
|
|
+ <input name="weight" id="BCtext" placeholder="请输入B超文本" class="styled-input edit_inputs" type="text" th:value="${weight}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="HCradio">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>核磁:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_select_dtp_ysfw_mqjjzt')}">
|
|
|
+ <input type="radio" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${followUpFeedbackDoctor}" name="followUpFeedbackDoctor" >
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>核磁文本:</label>
|
|
|
+ <div class="input-groups">
|
|
|
+ <input name="weight" id="HCtext" placeholder="请输入核磁文本它" class="styled-input edit_inputs" type="text" th:value="${weight}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="QTradio">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>影像学检查其它:</label>
|
|
|
+ <div class="input-groups">
|
|
|
+ <input name="weight" id="yxxqtjc" placeholder="请输入影像学检查其它" class="styled-input edit_inputs" type="text" th:value="${weight}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label for="yxxjctpImage">影像学检查图片:</label>
|
|
|
+ <div class="custom-file-upload">
|
|
|
+ <input type="file" id="yxxjctpImage" name="blfyclfsImage" accept=".jpg,.jpeg,.png,.gif">
|
|
|
+ <label for="yxxjctpImage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#007bff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg></label>
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label for="zlbjwjcImage">肿瘤物标记检查图片:</label>
|
|
|
+ <div class="custom-file-upload">
|
|
|
+ <input type="file" id="zlbjwjcImage" name="zlbjwjcImage" accept=".jpg,.jpeg,.png,.gif">
|
|
|
+ <label for="zlbjwjcImage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#007bff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg></label>
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">肿瘤标记物检查:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_select_dtp_ysfw_bxlx')}" id="zlbjwjc">
|
|
|
+ <input type="checkbox" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" name="zlbjwjc">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div id="zlbjwjcfuji">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>CEA:</label>
|
|
|
+ <div class="input-groups">
|
|
|
+ <input name="CEA" id="CEA" placeholder="请输入CEA" class="styled-input edit_inputs" type="text" th:value="${weight}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>实验室检查指标:</label>
|
|
|
+ <textarea id="sysjczb" name="sysjczb" class="styled-input edit_inputs textareas"
|
|
|
+ style="width: auto;height: 140px ;border: 1px solid ;"
|
|
|
+ th:text="${accompanyingSymptoms}" placeholder="实验室检查指标..." rows="1.9" cols="112" ></textarea>
|
|
|
+
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>提示</label>
|
|
|
+ <input name="tishi" id="tishi" placeholder="可填写中性粒细胞(NEUT)、血小板(PLT)、白蛋白(AIB)、谷丙转氨酶(ALT)、谷草转氨酶(AST)、肌酐(Crea)、总胆红素(T-BIL)" class="styled-input"
|
|
|
+ style="border: none" type="text" value="可填写中性粒细胞(NEUT)、血小板(PLT)、白蛋白(AIB)、谷丙转氨酶(ALT)、谷草转氨酶(AST)、肌酐(Crea)、总胆红素(T-BIL)" readonly>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label for="sysjctbtp">实验室检查指标图片:</label>
|
|
|
+ <div class="custom-file-upload">
|
|
|
+ <input type="file" id="sysjctbtp" name="sysjctbtp" accept=".jpg,.jpeg,.png,.gif">
|
|
|
+ <label for="sysjctbtp"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#007bff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg></label>
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div id="tab-9" class="tab-pane active">
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">治疗类型:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_select_dtp_ysfw_phr')}" id="zhiliaolxDiv">
|
|
|
+ <input type="checkbox" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" name="zhiliaolx">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <div style="display: flex;">
|
|
|
+ <label style="width: 100px;">用药前治疗方案:</label>
|
|
|
+ <button type="button" data-toggle="modal" data-target="#myModal1" class="btn-primarys">+新增</button>
|
|
|
+ <table id="yyqzlfaTable" style="width: 500px;">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th>序号</th>
|
|
|
+ <th>治疗方案</th>
|
|
|
+ <th>治疗时间</th>
|
|
|
+ <th>操作</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="yyqzlfaTableBody">
|
|
|
+ <!-- 表格行将在这里动态添加 -->
|
|
|
+ <tr class="no-data" style="display: none;">
|
|
|
+ <td colspan="7">
|
|
|
+ <img th:src="@{/img/locked.png}" alt="暂无数据" style="max-width: 100%;">
|
|
|
+ <p>暂无数据</p>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ <div class="modal inmodal" id="myModal1" tabindex="-1" role="dialog" aria-hidden="true">
|
|
|
+ <div class="modal-dialog">
|
|
|
+ <form class="form-horizontal" id="form-yyqzlfa-add">
|
|
|
+ <div class="modal-content animated bounceInRight">
|
|
|
+ <div class="modal-header">
|
|
|
+ <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">关闭</span>
|
|
|
+ </button>
|
|
|
+ <h4 class="modal-title">用药前治疗方案</h4>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >治疗时间</label>
|
|
|
+ <input type="text" name="yyqzltime" placeholder="治疗时间" class="time-input time-input2" style="width: 200px;" id="yyqzltime">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>治疗方案</label>
|
|
|
+ <select name="zlfangan" class="styled-input edit_inputs" style="width: 200px;" th:with="type=${@dict.getType('sys_select_dtp_ysfw_lxryhzgx')}" id="zlfangan">
|
|
|
+ <option value="">请选择治疗方案</option>
|
|
|
+ <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}"
|
|
|
+ th:selected="${dict.dictLabel}==${member}"></option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="modal-footer">
|
|
|
+ <button type="button" class="btn btn-white" data-dismiss="modal">关闭</button>
|
|
|
+ <button type="button" class="btn btn-primary" onclick="saveRow(1)">保存</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <div style="display: flex;">
|
|
|
+ <label style="width: 100px;">目前治疗方案:</label>
|
|
|
+ <button type="button" data-toggle="modal" data-target="#myModal1" class="btn-primarys">+新增</button>
|
|
|
+ <table id="mqzlfaTable" style="width: 500px;">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th>序号</th>
|
|
|
+ <th>治疗方案</th>
|
|
|
+ <th>治疗时间</th>
|
|
|
+ <th>操作</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="mqzlfaTableBody">
|
|
|
+ <!-- 表格行将在这里动态添加 -->
|
|
|
+ <tr class="no-data" style="display: none;">
|
|
|
+ <td colspan="7">
|
|
|
+ <img th:src="@{/img/locked.png}" alt="暂无数据" style="max-width: 100%;">
|
|
|
+ <p>暂无数据</p>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ <div class="modal inmodal" id="myModal2" tabindex="-1" role="dialog" aria-hidden="true">
|
|
|
+ <div class="modal-dialog">
|
|
|
+ <form class="form-horizontal" id="form-mqzlfa-add">
|
|
|
+ <div class="modal-content animated bounceInRight">
|
|
|
+ <div class="modal-header">
|
|
|
+ <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">关闭</span>
|
|
|
+ </button>
|
|
|
+ <h4 class="modal-title">目前治疗方案</h4>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >治疗时间</label>
|
|
|
+ <input type="text" name="mqzltime" placeholder="治疗时间" class="time-input time-input2" style="width: 200px;" id="mqzltime">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>治疗方案</label>
|
|
|
+ <select name="muqzlfa" class="styled-input edit_inputs" style="width: 200px;" th:with="type=${@dict.getType('sys_select_dtp_ysfw_lxryhzgx')}" id="muqzlfa">
|
|
|
+ <option value="">请选择治疗方案</option>
|
|
|
+ <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}"
|
|
|
+ th:selected="${dict.dictLabel}==${member}"></option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="modal-footer">
|
|
|
+ <button type="button" class="btn btn-white" data-dismiss="modal">关闭</button>
|
|
|
+ <button type="button" class="btn btn-primary" onclick="saveRow(2)">保存</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <div style="display: flex;">
|
|
|
+ <label style="width: 100px;">进展后治疗方案:</label>
|
|
|
+ <button type="button" data-toggle="modal" data-target="#myModal3" class="btn-primarys">+新增</button>
|
|
|
+ <table id="jzhzlfaTable" style="width: 500px;">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th>序号</th>
|
|
|
+ <th>治疗方案</th>
|
|
|
+ <th>治疗时间</th>
|
|
|
+ <th>操作</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="jzhzlfaTableBody">
|
|
|
+ <!-- 表格行将在这里动态添加 -->
|
|
|
+ <tr class="no-data" style="display: none;">
|
|
|
+ <td colspan="7">
|
|
|
+ <img th:src="@{/img/locked.png}" alt="暂无数据" style="max-width: 100%;">
|
|
|
+ <p>暂无数据</p>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ <div class="modal inmodal" id="myModal3" tabindex="-1" role="dialog" aria-hidden="true">
|
|
|
+ <div class="modal-dialog">
|
|
|
+ <form class="form-horizontal" id="form-jzhzlfa-add">
|
|
|
+ <div class="modal-content animated bounceInRight">
|
|
|
+ <div class="modal-header">
|
|
|
+ <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">关闭</span>
|
|
|
+ </button>
|
|
|
+ <h4 class="modal-title">进展后治疗方案</h4>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >治疗时间</label>
|
|
|
+ <input type="text" name="jzhzltime" placeholder="治疗时间" class="time-input time-input2" style="width: 200px;" id="jzhzltime">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>治疗方案</label>
|
|
|
+ <select name="jzhzlfa" class="styled-input edit_inputs" style="width: 200px;" th:with="type=${@dict.getType('sys_select_dtp_ysfw_lxryhzgx')}" id="jzhzlfa">
|
|
|
+ <option value="">请选择治疗方案</option>
|
|
|
+ <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}"
|
|
|
+ th:selected="${dict.dictLabel}==${member}"></option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="modal-footer">
|
|
|
+ <button type="button" class="btn btn-white" data-dismiss="modal">关闭</button>
|
|
|
+ <button type="button" class="btn btn-primary" onclick="saveRow(3)">保存</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div id="tab-10" class="tab-pane active">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">有无药品适应症:</label>
|
|
|
+ <select name="patientAwareness" class="select-input" th:with="type=${@dict.getType('sys_yes_no')}" required>
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}"
|
|
|
+ th:selected="${dict.dictLabel}==${patientAwareness}"></option>
|
|
|
+ </select>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >药物对该疾病是否有效:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_select_dtp_ysfw_mqjjzt')}">
|
|
|
+ <input type="radio" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${currentEconomicSituation}" name="currentEconomicSituation" >
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">药物间是否存在临床相互作用:</label>
|
|
|
+ <select name="patientAwareness" class="select-input" th:with="type=${@dict.getType('sys_yes_no')}" required>
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}"
|
|
|
+ th:selected="${dict.dictLabel}==${patientAwareness}"></option>
|
|
|
+ </select>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div id="lcxhzydiv">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">请描述临床相互作用:</label>
|
|
|
+ <textarea id="ms" name="lcxhzy" class="styled-input edit_inputs textareas"
|
|
|
+ style="width: auto;height: 140px ;border: 1px solid ;"
|
|
|
+ th:text="${accompanyingSymptoms}" placeholder="请描述临床相互作用..." rows="1.9" cols="112" ></textarea>
|
|
|
+
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>是否有不必要重复用药:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_yes_no')}">
|
|
|
+ <input type="radio" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${followUpFeedbackDoctor}" name="bbycfyyis" >
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div id="sfybycfyyyes">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">重复用药首次使用日期:</label>
|
|
|
+ <div class="input-groups select-time">
|
|
|
+ <input name="sfybycfyytime" placeholder="确诊后首次用药日期" class="time-input-new styled-input" type="text" th:value="${timeFirstDiagnosis}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">请描述不必要重复用药:</label>
|
|
|
+ <textarea id="bbycfyy" name="bbycfyy" class="styled-input edit_inputs textareas"
|
|
|
+ style="width: auto;height: 140px ;border: 1px solid ;"
|
|
|
+ th:text="${accompanyingSymptoms}" placeholder="请描述不必要重复用药..." rows="1.9" cols="112" ></textarea>
|
|
|
+
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>是否出现用药错误:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_yes_no')}">
|
|
|
+ <input type="radio" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${followUpFeedbackDoctor}" name="yycwis" >
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div id="yycfyes">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">用药错误出现时间:</label>
|
|
|
+ <div class="input-groups select-time">
|
|
|
+ <input name="yycwsj" placeholder="用药错误出现时间" class="time-input-new styled-input" type="text" th:value="${timeFirstDiagnosis}">
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">请描述用药错误:</label>
|
|
|
+ <textarea id="yycwms" name="yycwms" class="styled-input edit_inputs textareas"
|
|
|
+ style="width: auto;height: 140px ;border: 1px solid ;"
|
|
|
+ th:text="${accompanyingSymptoms}" placeholder="请描述用药错误..." rows="1.9" cols="112" ></textarea>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="tab-11" class="tab-pane active">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <div style="display: flex;">
|
|
|
+ <label style="width: 100px;">用药记录:</label>
|
|
|
+ <button type="button" data-toggle="modal" data-target="#myModal4" class="btn-primarys">+新增</button>
|
|
|
+ <table id="yyjlTable" style="width: 800px;">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th>序号</th>
|
|
|
+ <th>要命剂量</th>
|
|
|
+ <th>用药频率</th>
|
|
|
+ <th>开始用药时间</th>
|
|
|
+ <th>停药时间</th>
|
|
|
+ <th>最后一次用药时间</th>
|
|
|
+ <th>注意事项</th>
|
|
|
+ <th>操作</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="jyyjlTableTableBody">
|
|
|
+ <!-- 表格行将在这里动态添加 -->
|
|
|
+ <tr class="no-data" style="display: none;">
|
|
|
+ <td colspan="7">
|
|
|
+ <img th:src="@{/img/locked.png}" alt="暂无数据" style="max-width: 100%;">
|
|
|
+ <p>暂无数据</p>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ <div class="modal inmodal" id="myModal4" tabindex="-1" role="dialog" aria-hidden="true">
|
|
|
+ <div class="modal-dialog">
|
|
|
+ <form class="form-horizontal" id="form-yyjl-add">
|
|
|
+ <div class="modal-content animated bounceInRight">
|
|
|
+ <div class="modal-header">
|
|
|
+ <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">关闭</span>
|
|
|
+ </button>
|
|
|
+ <h4 class="modal-title">用药记录</h4>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >名称</label>
|
|
|
+ <input type="text" name="durgName" placeholder="请输入药品名称" class="styled-input edit_inputs" style="width: 200px;" id="durgName">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >剂量</label>
|
|
|
+ <input type="text" name="jiliang" placeholder="请输入剂量" class="styled-input edit_inputs" style="width: 200px;" id="jiliang">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >开始用药时间</label>
|
|
|
+ <input type="text" name="startyyTime" placeholder="请选择开始用药时间" class="time-input time-input2" style="width: 200px;" id="startyyTime">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >停药药时间</label>
|
|
|
+ <input type="text" name="tyTime" placeholder="请选择停药药时间" class="time-input time-input2" style="width: 200px;" id="tyTime">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >最后一次用药时间</label>
|
|
|
+ <input type="text" name="lastsyTime" placeholder="请选择最后一次用药时间" class="time-input time-input2" style="width: 200px;" id="lastsyTime">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >使用频率</label>
|
|
|
+ <input type="text" name="shiypv" placeholder="请输入使用频率" class="styled-input edit_inputs" style="width: 200px;" id="shiypv">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >注意事项</label>
|
|
|
+ <input type="text" name="zhuyishix" placeholder="请输入注意事项" class="styled-input edit_inputs" style="width: 200px;" id="zhuyishix">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div class="modal-footer">
|
|
|
+ <button type="button" class="btn btn-white" data-dismiss="modal">关闭</button>
|
|
|
+ <button type="button" class="btn btn-primary" onclick="saveRow(4)">保存</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <div style="display: flex;">
|
|
|
+ <label style="width: 100px;">合并用药记录:</label>
|
|
|
+ <button type="button" data-toggle="modal" data-target="#myModal6" class="btn-primarys">+新增</button>
|
|
|
+ <table id="hbyyjlTable" style="width: 800px;">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th>序号</th>
|
|
|
+ <th>要命剂量</th>
|
|
|
+ <th>用药频率</th>
|
|
|
+ <th>开始用药时间</th>
|
|
|
+ <th>停药时间</th>
|
|
|
+ <th>最后一次用药时间</th>
|
|
|
+ <th>注意事项</th>
|
|
|
+ <th>操作</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="hbyyjlTableTableBody">
|
|
|
+ <!-- 表格行将在这里动态添加 -->
|
|
|
+ <!-- 表格行将在这里动态添加 -->
|
|
|
+
|
|
|
+ <tr class="no-data" style="display: none;">
|
|
|
+ <td colspan="7">
|
|
|
+ <img th:src="@{/img/locked.png}" alt="暂无数据" style="max-width: 100%;">
|
|
|
+ <p>暂无数据</p>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ <div class="modal inmodal" id="myModal6" tabindex="-1" role="dialog" aria-hidden="true">
|
|
|
+ <div class="modal-dialog">
|
|
|
+ <form class="form-horizontal" id="form-hbyyjl-add">
|
|
|
+ <div class="modal-content animated bounceInRight">
|
|
|
+ <div class="modal-header">
|
|
|
+ <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">关闭</span>
|
|
|
+ </button>
|
|
|
+ <h4 class="modal-title">合并用药记录</h4>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >名称</label>
|
|
|
+ <input type="text" name="hbdurgName" placeholder="请输入药品名称" class="styled-input edit_inputs" style="width: 200px;" id="hbdurgName">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >剂量</label>
|
|
|
+ <input type="text" name="hbjiliang" placeholder="请输入剂量" class="styled-input edit_inputs" style="width: 200px;" id="hbjiliang">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >开始用药时间</label>
|
|
|
+ <input type="text" name="hbstartyyTime" placeholder="请选择开始用药时间" class="time-input time-input2" style="width: 200px;" id="hbstartyyTime">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >停药药时间</label>
|
|
|
+ <input type="text" name="hbtyTime" placeholder="请选择停药药时间" class="time-input time-input2" style="width: 200px;" id="hbtyTime">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >最后一次用药时间</label>
|
|
|
+ <input type="text" name="hblastsyTime" placeholder="请选择最后一次用药时间" class="time-input time-input2" style="width: 200px;" id="hblastsyTime">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >使用频率</label>
|
|
|
+ <input type="text" name="hbshiypv" placeholder="请输入使用频率" class="styled-input edit_inputs" style="width: 200px;" id="hbshiypv">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="customize-search-form">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label >注意事项</label>
|
|
|
+ <input type="text" name="hbzhuyishix" placeholder="请输入注意事项" class="styled-input edit_inputs" style="width: 200px;" id="hbzhuyishix">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div class="modal-footer">
|
|
|
+ <button type="button" class="btn btn-white" data-dismiss="modal">关闭</button>
|
|
|
+ <button type="button" class="btn btn-primary" onclick="saveRow(5)">保存</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="tab-12" class="tab-pane active">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>疼痛标准评分NRS:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_select_dtp_ysfw_mqjjzt')}">
|
|
|
+ <input type="radio" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${followUpFeedbackDoctor}" name="NRS" >
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>体力状况评分:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_select_dtp_ysfw_ysph')}">
|
|
|
+ <input type="radio" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${followUpFeedbackDoctor}" name="tlzkpf" >
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div id="tab-13" class="tab-pane active">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>本次回访是否咨询:</label>
|
|
|
+ <div class="input-groups" th:with="type=${@dict.getType('sys_yes_no')}">
|
|
|
+ <input type="radio" class="form-check-radio" th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:checked="${dict.dictLabel}==${followUpFeedbackDoctor}" name="bchfsfzx" >
|
|
|
+ </div>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div id="bchfsfzxyes">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">咨询问题类型:</label>
|
|
|
+ <select name="zxwtlx" class="select-input" th:with="type=${@dict.getType('sys_yes_no')}">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}"
|
|
|
+ th:selected="${dict.dictLabel}==${patientAwareness}"></option>
|
|
|
+ </select>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>具体问题:</label>
|
|
|
+ <textarea id="jtwt" name="jtwt" class="styled-input edit_inputs textareas"
|
|
|
+ style="width: auto;height: 140px ;border: 1px solid ;"
|
|
|
+ th:text="${accompanyingSymptoms}" placeholder="具体问题..." rows="1.9" cols="112" ></textarea>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>药师解答:</label>
|
|
|
+ <textarea id="ysjd" name="ysjd" class="styled-input edit_inputs textareas"
|
|
|
+ style="width: auto;height: 140px ;border: 1px solid ;"
|
|
|
+ th:text="${accompanyingSymptoms}" placeholder="1-未按随访进度联系上 2-未按时取药 3-减量或停药 4-不良反应不能耐受 5-医生说要调整治疗方案 6-挂不到医生床位/转院 7-医保不够,经济压力 8-情绪不好,生活压力 9-其他" rows="1.9" cols="112" ></textarea>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="tab-14" class="tab-pane active">
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label class="is-required">患者病情评估:</label>
|
|
|
+ <select name="zxwtlx" class="select-input" th:with="type=${@dict.getType('sys_yes_no')}">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}"
|
|
|
+ th:selected="${dict.dictLabel}==${patientAwareness}"></option>
|
|
|
+ </select>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ <div class="customize-form-group edit">
|
|
|
+ <label>共建项目描述:</label>
|
|
|
+ <textarea id="gjxmu" name="ysjd" class="styled-input edit_inputs textareas"
|
|
|
+ style="width: auto;height: 140px ;border: 1px solid ;"
|
|
|
+ th:text="${accompanyingSymptoms}" placeholder="请输入共建项目描述" rows="1.9" cols="112" ></textarea>
|
|
|
+ <span class="status"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="ibox-content" style="background-color: #f5f3f3;">
|
|
|
+ <div class="ibox-title2">
|
|
|
+ <div class="task-info">
|
|
|
+ <h4>下次随访时间
|
|
|
+ <input name="next_follow_time" id="next_follow_time" placeholder="下次随访时间" class="time-input-new styled-input" type="text" th:value="${bc_next_follow_time}"/>
|
|
|
+ </h4>
|
|
|
+ </div>
|
|
|
+ <div class="task-details">
|
|
|
+<!-- <h4> <span>间隔本次任务:<span id="interval_this_time" style="color: #1a7bb9;" th:text="${interval_this_time}"></span >天</span></h4>-->
|
|
|
+ <span class="status"> </span>
|
|
|
+ <h4> <span>下次任务主题:<span style="color: #1a7bb9;">
|
|
|
+ <select name="next_taskTheme" class="styled-input" th:with="type=${@dict.getType('sys_select_dtp_sfrw_rwzt')}">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictLabel}" th:selected="${dict.dictLabel}==${bc_next_taskTheme}"></option>
|
|
|
+ </select>
|
|
|
+ </span>
|
|
|
+ </span></h4>
|
|
|
+ </div>
|
|
|
+ <div class="task-buttons">
|
|
|
+ <div class="ibox-title2">
|
|
|
+ <button type="button" class="btn btn-warning" style="background-color: #f56666;" onclick="closeItem()">关闭</button>
|
|
|
+ <div class="task-buttons">
|
|
|
+ <button type="button" class="btn btn-primary" onclick="submitHandler()">保 存</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+
|
|
|
+<th:block th:include="include :: footer" />
|
|
|
+<th:block th:include="include :: select2-js" />
|
|
|
+<th:block th:include="include :: jquery-cxselect-js" />
|
|
|
+<th:block th:include="include :: layout-latest-js" />
|
|
|
+<th:block th:include="include :: bootstrap-table-fixed-columns-js" />
|
|
|
+<th:block th:include="include :: ztree-js" />
|
|
|
+<th:block th:include="include :: bootstrap-table-editable-js" />
|
|
|
+<!--<th:block th:include="include :: select2-css" />
|
|
|
+<th:block th:include="include :: bootstrap-select-css" />
|
|
|
+<th:block th:include="include :: select2-js" />
|
|
|
+<th:block th:include="include :: bootstrap-select-js" />-->
|
|
|
+</body>
|
|
|
+</html>
|
|
|
+
|
|
|
+<script th:inline="javascript">
|
|
|
+ var formSubmitted = true;
|
|
|
+ var prefix = ctx + "dtp/pmService";
|
|
|
+ var prefix_task = ctx + "task/followTask";
|
|
|
+ var blfyindex=0;
|
|
|
+ //购药记录
|
|
|
+ var recordsData;
|
|
|
+ // 回显数据随访计划
|
|
|
+ var listPlan1;
|
|
|
+ var listPlan2;
|
|
|
+ // 回显数据随访任务
|
|
|
+ var listTask1;
|
|
|
+ var listTask2;
|
|
|
+ function submitHandler() {
|
|
|
+ var selectedValue = $('input[name="returnMethod"]:checked').val();
|
|
|
+ if (!selectedValue) {
|
|
|
+ $.modal.alert('请选择回访方式!');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (selectedValue === '微信' && !$('#returnImgUrl')[0].files.length) {
|
|
|
+ $.modal.alert('微信回访时,回访图片为必填项!');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (selectedValue === '面访' && !$('#InterviewRecord').val()) {
|
|
|
+ $.modal.alert('面访时,面访记录为必填项!');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ var iscoordinate = $('input[name="iscoordinate"]:checked').val();//是否配合
|
|
|
+ if (!iscoordinate) {
|
|
|
+ $.modal.alert('请选择是否配合!');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ var returnObject = $("#form-followUp-edit3").serializeArray().find(item => item.name === 'returnObject');
|
|
|
+ if (returnObject.value === '') {
|
|
|
+ $.modal.alertWarning("请选择回访对象");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ var data = $("#form-followUp-edit3").serializeArray();
|
|
|
+ var patientId = $("#patientId").val();
|
|
|
+ var id = $("#id").val();
|
|
|
+ console.log("id=",id);
|
|
|
+ var planId = $("#planId_cg").val();
|
|
|
+
|
|
|
+ // data.push({name:"patientId",value:patientId});
|
|
|
+ // data.push({name:"id",value:id});
|
|
|
+ // data.push({name:"planId",value:planId});
|
|
|
+
|
|
|
+ var is_adverse_reaction = $('input[name="is_adverse_reaction"]:checked').val();
|
|
|
+ if (!is_adverse_reaction) {
|
|
|
+ $.modal.alert('请选择不良反应!');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (is_adverse_reaction === '是') {
|
|
|
+ var adverse_reaction_time = $("#form-followUp-edit3").serializeArray().find(item => item.name === 'adverse_reaction_time');
|
|
|
+ if (adverse_reaction_time.value === '') {
|
|
|
+ $.modal.alertWarning("请选择不良反应时间");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ const blfyTableBody = document.getElementById('blfyTableBody');
|
|
|
+ const rows2 = blfyTableBody.getElementsByTagName('tr');
|
|
|
+ if (rows2.length > 0) {
|
|
|
+ const rowsbyfys = [];//不良反应table
|
|
|
+ $('#blfyTableBody tr').each(function () {
|
|
|
+ const row = {
|
|
|
+ id: $("#id").val(),
|
|
|
+ byfyData: $(this).find('td:eq(1)').text(),
|
|
|
+ };
|
|
|
+ rowsbyfys.push(row);
|
|
|
+ });
|
|
|
+ data.push({name:"adverse_reaction_rows",value:JSON.stringify(rowsbyfys)})
|
|
|
+ }
|
|
|
+ // else{
|
|
|
+ // $.modal.alertWarning("请选择不良反应症状");
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
+ }
|
|
|
+
|
|
|
+ $.operate.saveTab(prefix_task + "/followTaskEdit", data);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ function deleteRow(button) {
|
|
|
+ const row = button.parentNode.parentNode;
|
|
|
+ row.remove();
|
|
|
+ updateIndices(); // 删除后更新所有行的序号
|
|
|
+ }
|
|
|
+ // 更新所有行的序号
|
|
|
+ function updateIndices() {
|
|
|
+ $('#blfyTableBody tr').each(function(index) {
|
|
|
+ $(this).find('td:first-child').text(index + 1); // 设置序号为当前索引加1
|
|
|
+ });
|
|
|
+ }
|
|
|
+ function selectAdverseReactions() {
|
|
|
+
|
|
|
+ var province = $('.province').val();
|
|
|
+ var city = $('.city').val();
|
|
|
+ var area = $('.area').val();
|
|
|
+ $('.province, .city, .area').val('');
|
|
|
+
|
|
|
+ // 打印不良选择的不良反应
|
|
|
+ console.log('Selected: ' + province + ', ' + city + ', ' + area);
|
|
|
+ var row = '<tr>' +
|
|
|
+ '<td></td>' +
|
|
|
+ '<td>' + province + ', ' + city + ', ' + area + '</td>' +
|
|
|
+ '<td><button class="btn-danger" onclick="deleteRow(this)">删除</button></td>' +
|
|
|
+ '</tr>';
|
|
|
+ $('#blfyTableBody').append(row);
|
|
|
+ blfyindex++; // 增加索引
|
|
|
+ updateIndices(); // 添加后更新所有行的序号
|
|
|
+ };
|
|
|
+
|
|
|
+ //初始化加载
|
|
|
+ $(document).ready(function() {
|
|
|
+ // 通过默认url获取
|
|
|
+ var urlChina = prefix+'/selectAdverseReactions';
|
|
|
+ $.cxSelect.defaults.url = urlChina;
|
|
|
+ $('#element1').cxSelect({
|
|
|
+ selects: ['province', 'city', 'area'],
|
|
|
+ nodata: 'none'
|
|
|
+ });
|
|
|
+ $("#myModal5").hide();
|
|
|
+
|
|
|
+ // 初始化时设置默认显示状态
|
|
|
+ updateVisibility();
|
|
|
+
|
|
|
+ // 监听回访方式的选择变化
|
|
|
+ $('input[name="returnMethod"]').on('change', updateVisibility);
|
|
|
+ // 监听用药状态的选择变化
|
|
|
+ $('input[name="medicationStatus"]').on('change', updateVisibility);
|
|
|
+ // 监听不良反应的选择变化
|
|
|
+ $('input[name="is_adverse_reaction"]').on('change', updateVisibility);
|
|
|
+
|
|
|
+ // 监听点击事件,激活指定的选项卡
|
|
|
+ $('#myUlTabs li a').click(function(e) {
|
|
|
+ // 阻止默认行为
|
|
|
+ //e.preventDefault();
|
|
|
+ // 获取当前点击的选项卡链接
|
|
|
+ var $this = $(this);
|
|
|
+ if($this.attr('href') === '#tab-1'){
|
|
|
+ formSubmitted=true;
|
|
|
+ }
|
|
|
+ if($this.attr('href') === '#tab-2'){
|
|
|
+ formSubmitted=false;
|
|
|
+ // 添加 active 类到当前点击的选项卡
|
|
|
+ $(this).addClass('active');
|
|
|
+ $this.attr('aria-expanded', 'true');
|
|
|
+
|
|
|
+ }
|
|
|
+ // 检查是否为“用药购药”选项卡
|
|
|
+ if ($this.attr('href') === '#tab-2') {
|
|
|
+ // 初始化表格
|
|
|
+ initializeTableForTab('tab-2');
|
|
|
+ }
|
|
|
+ if ($this.attr('href') === '#tab-3') {
|
|
|
+ // 初始化表格
|
|
|
+ initializeTableForTab('tab-3');
|
|
|
+ // 初始化表格
|
|
|
+ initializeTableForTab('tab-4');
|
|
|
+ }
|
|
|
+
|
|
|
+ });
|
|
|
+
|
|
|
+ $('#myTabs2 li a').click(function(e) {
|
|
|
+ // 阻止默认行为
|
|
|
+ e.preventDefault();
|
|
|
+ // 获取当前点击的选项卡链接
|
|
|
+ var $this = $(this);
|
|
|
+ // 移除所有选项卡的 active 类
|
|
|
+ //$('#myTabs li').removeClass('active');
|
|
|
+ //$('.tab-pane').removeClass('active in');
|
|
|
+ $('#myTabs2 li a').addClass('active');
|
|
|
+ // 添加 active 类到当前点击的选项卡
|
|
|
+ $this.parent().addClass('active');
|
|
|
+ // 获取目标选项卡面板的 ID
|
|
|
+ var target = $this.attr('href');
|
|
|
+ // 展示对应的选项卡面板,并更新 aria-expanded
|
|
|
+ $(target).addClass('active in');
|
|
|
+ $this.attr('aria-expanded', 'true');
|
|
|
+ // 执行点击链接对应的动作
|
|
|
+ $this.tab('show');
|
|
|
+ // 移除所有选项卡的激活类
|
|
|
+ //$('.active').removeClass('active');
|
|
|
+ $(this).addClass('active');
|
|
|
+ // 滚动到目标选项卡位置
|
|
|
+ // 将目标内容区滚动到视口中央
|
|
|
+ $('html, body').animate({
|
|
|
+ scrollTop: $(target).offset().top - ($(window).height() / 2)
|
|
|
+ }, 500); // 500毫秒动画时间
|
|
|
+ // scrollToTab($this);
|
|
|
+ // 重新初始化当前选项卡内的表格
|
|
|
+ var tableId = target.replace('#', '');
|
|
|
+ // initializeTableForTab(tableId);
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+ // 初始化 Select2 插件
|
|
|
+ for (let i = 1; i <= 6; i++) {
|
|
|
+ $(`#category-select${i}`).select2({
|
|
|
+ placeholder: "",
|
|
|
+ allowClear: true
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ // 获取所有下拉选项的数据
|
|
|
+ $.ajax({
|
|
|
+ url: ctx + 'sp/sp/typeDate',
|
|
|
+ method: 'GET',
|
|
|
+ dataType: 'json',
|
|
|
+ success: function(data) {
|
|
|
+ var selects = [
|
|
|
+ $('#category-select1'),
|
|
|
+ $('#category-select2'),
|
|
|
+ $('#category-select3'),
|
|
|
+ $('#category-select4'),
|
|
|
+ $('#category-select5'),
|
|
|
+ $('#category-select6')
|
|
|
+ ];
|
|
|
+ // 清空已有选项(除了第一个默认选项)
|
|
|
+ selects.forEach(function(select) {
|
|
|
+ select.find('option').not(':first').remove();
|
|
|
+ });
|
|
|
+ // 添加默认选项到每个下拉列表
|
|
|
+ selects.forEach(function(select) {
|
|
|
+ if (!select.find('option:first').length) { // 检查是否已经有默认选项
|
|
|
+ $('<option>', {
|
|
|
+ value: '',
|
|
|
+ text : '请选择疾病'
|
|
|
+ }).prependTo(select); // 使用 prependTo 确保它成为第一个选项
|
|
|
+ }
|
|
|
+ });
|
|
|
+ // 解析 dl 数据并获取 ID 数组
|
|
|
+ var dl = /*[[${dl}]]*/ '';
|
|
|
+ var dlParsed = JSON.parse(dl);
|
|
|
+ var dlIds = Array.isArray(dlParsed) ? dlParsed.map(item => item.id.toString()) : [];
|
|
|
+ // 遍历返回的数据并添加选项
|
|
|
+ $.each(data.value || [], function(index, item) {
|
|
|
+ var selectIndex = item.dict_key-1; // 假设 dict_key 是从 1 开始的索引
|
|
|
+ if (selectIndex >= 0 && selectIndex < selects.length) {
|
|
|
+ $('<option>', {
|
|
|
+ value: item.id,
|
|
|
+ text : item.categoryName
|
|
|
+ }).appendTo(selects[selectIndex]);
|
|
|
+ // 设置选中的值(仅当 dlIds 包含该项 id 时)
|
|
|
+ if (dlIds.includes(item.id.toString())) {
|
|
|
+ selects[selectIndex].val(item.id).trigger('change');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ // 如果使用 Select2 插件,则初始化或刷新它们
|
|
|
+ selects.forEach(function(select) {
|
|
|
+ select.trigger('change');
|
|
|
+ });
|
|
|
+ },
|
|
|
+ error: function(xhr, status, error) {
|
|
|
+ console.error("Failed to load disease categories:", error);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ //购药记录
|
|
|
+ recordsData = /*[[${recordsData}]]*/ '';
|
|
|
+ // 回显数据随访计划
|
|
|
+ listPlan1 = /*[[${Plan1}]]*/ '';
|
|
|
+ listPlan2 = /*[[${Plan2}]]*/ '';
|
|
|
+
|
|
|
+ // 回显数据随访计划
|
|
|
+ listTask1 = /*[[${listTask1}]]*/ '';
|
|
|
+ listTask2 = /*[[${listTask2}]]*/ '';
|
|
|
+ });
|
|
|
+ // 默认显示/隐藏逻辑
|
|
|
+ function updateVisibility() {
|
|
|
+ var weixinDiv = $('#weixin');
|
|
|
+ var mianfangDiv = $('#mianfang');
|
|
|
+
|
|
|
+ var selectedValue = $('input[name="returnMethod"]:checked').val();
|
|
|
+ if (selectedValue === '微信') {
|
|
|
+ weixinDiv.removeClass('hidden');
|
|
|
+ mianfangDiv.addClass('hidden');
|
|
|
+ } else if (selectedValue === '电话') {
|
|
|
+ weixinDiv.addClass('hidden');
|
|
|
+ mianfangDiv.addClass('hidden');
|
|
|
+ } else if (selectedValue === '面访') {
|
|
|
+ weixinDiv.addClass('hidden');
|
|
|
+ mianfangDiv.removeClass('hidden');
|
|
|
+ }
|
|
|
+
|
|
|
+ var medicationStatus = $('input[name="medicationStatus"]:checked').val();
|
|
|
+ var csyzyy = $('#csyzyy');//慈善援助用药
|
|
|
+ var yjty = $('#yjty');//永久停药
|
|
|
+ var qtgyqgy = $('#qtgyqgy');//其他渠道购药
|
|
|
+ var ycgyycjy = $('#ycgyycjy');//延迟购药(医嘱建议)
|
|
|
+ var ycgyhzyybgf = $('#ycgyhzyybgf');//延迟购药(患者用药不规范
|
|
|
+ if (medicationStatus === '持续购药') {
|
|
|
+ csyzyy.addClass('hidden');
|
|
|
+ yjty.addClass('hidden');
|
|
|
+ qtgyqgy.addClass('hidden');
|
|
|
+ ycgyycjy.addClass('hidden');
|
|
|
+ ycgyhzyybgf.addClass('hidden');
|
|
|
+ } else if (medicationStatus === '领取慈善赠药') {
|
|
|
+ csyzyy.removeClass('hidden');
|
|
|
+ yjty.addClass('hidden');
|
|
|
+ qtgyqgy.addClass('hidden');
|
|
|
+ ycgyycjy.addClass('hidden');
|
|
|
+ ycgyhzyybgf.addClass('hidden');
|
|
|
+ } else if (medicationStatus === '永久停药') {
|
|
|
+ yjty.removeClass('hidden');
|
|
|
+ csyzyy.addClass('hidden');
|
|
|
+ qtgyqgy.addClass('hidden');
|
|
|
+ ycgyycjy.addClass('hidden');
|
|
|
+ ycgyhzyybgf.addClass('hidden');
|
|
|
+ }else if (medicationStatus === '其他渠道购药') {
|
|
|
+ qtgyqgy.removeClass('hidden');
|
|
|
+ yjty.addClass('hidden');
|
|
|
+ csyzyy.addClass('hidden');
|
|
|
+ ycgyycjy.addClass('hidden');
|
|
|
+ ycgyhzyybgf.addClass('hidden');
|
|
|
+ }
|
|
|
+ else if (medicationStatus === '延迟用药(医嘱建议)') {
|
|
|
+ ycgyycjy.removeClass('hidden');
|
|
|
+ qtgyqgy.addClass('hidden');
|
|
|
+ yjty.addClass('hidden');
|
|
|
+ csyzyy.addClass('hidden');
|
|
|
+ ycgyhzyybgf.addClass('hidden');
|
|
|
+ }
|
|
|
+ else if (medicationStatus === '延迟购药 (患者用药不规范)') {
|
|
|
+ ycgyhzyybgf.removeClass('hidden');
|
|
|
+ qtgyqgy.addClass('hidden');
|
|
|
+ yjty.addClass('hidden');
|
|
|
+ csyzyy.addClass('hidden');
|
|
|
+ ycgyycjy.addClass('hidden');
|
|
|
+ }
|
|
|
+
|
|
|
+ //是否出现不良反应
|
|
|
+ var bulfydiv = $('#bulfydiv');
|
|
|
+ var is_adverse_reaction = $('input[name="is_adverse_reaction"]:checked').val();
|
|
|
+ if (is_adverse_reaction === '是') {
|
|
|
+ bulfydiv.removeClass('hidden');
|
|
|
+ }
|
|
|
+ if (is_adverse_reaction === '否') {
|
|
|
+ bulfydiv.addClass('hidden');
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ function addblfy() {
|
|
|
+ $('#myModal5').show();
|
|
|
+ }
|
|
|
+ function initializeTableForTab(tabId) {
|
|
|
+
|
|
|
+ var tableId = 'bootstrap-table-' + tabId.substring(4);
|
|
|
+ var tableElement = $('#' + tableId);
|
|
|
+
|
|
|
+ var data = {
|
|
|
+ "patientPhone": $('#phoneNumber').val(),
|
|
|
+ "patientName": $('#name').val(),
|
|
|
+ "id": $('#id').val(),
|
|
|
+ "flag": tabId.substring(4),
|
|
|
+ };
|
|
|
+ console.log("tabId="+tabId.substring(4));
|
|
|
+ if(tabId==='tab-2'){
|
|
|
+ //购药记录
|
|
|
+ var data2=[];
|
|
|
+ data2=recordsData;
|
|
|
+ // 初始化表格 getDrugPurchaseList
|
|
|
+ // $.ajax({
|
|
|
+ // cache : true,
|
|
|
+ // type : "POST",
|
|
|
+ // url : ctx + "dtp/pmService/getDrugPurchaseList",
|
|
|
+ // data : data,
|
|
|
+ // async : false,
|
|
|
+ // error : function(request) {
|
|
|
+ // $.modal.alertError("系统错误");
|
|
|
+ // },
|
|
|
+ // success : function(data) {
|
|
|
+ // data2=data.rows;
|
|
|
+ // $.operate.successCallback(data);
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+
|
|
|
+ var options = {
|
|
|
+ data: data2,
|
|
|
+ columns: [
|
|
|
+ {field: 'id', title: 'ID', visible: false},
|
|
|
+ {field: 'salesOrderNumber', title: '销售单号'},
|
|
|
+ {field: 'prescriptionNumber', title: '处方编号'},
|
|
|
+ {field: 'prescriptionDate', title: '处方日期'},
|
|
|
+ {field: 'hospital', title: '医院'},
|
|
|
+ {field: 'prescribingDoctor', title: '处方医生'},
|
|
|
+ {field: 'department', title: '科室', visible: false},
|
|
|
+ {field: 'attendingDoctor', title: '主管医生'}, // 注意这里使用的是 "attendingDoctor" 而不是 "attendingPhysician"
|
|
|
+ {field: 'clinicalDiagnosis', title: '临床诊断'},
|
|
|
+ {field: 'genericName', title: '药品通用名'},
|
|
|
+ {field: 'productName', title: '商品名'},
|
|
|
+ {field: 'specification', title: '规格'},
|
|
|
+ {
|
|
|
+ field: 'singleDoseValue',
|
|
|
+ title: '单次剂量',
|
|
|
+ editable: {
|
|
|
+ type: 'text',
|
|
|
+ title: '单次剂量',
|
|
|
+ validate: function(value) {
|
|
|
+ if ($.trim(value) === '') return '单次剂量不能为空';
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'singleDoseUnit',
|
|
|
+ title: '单次剂量单位',
|
|
|
+ editable: {
|
|
|
+ type: 'select',
|
|
|
+ source: [
|
|
|
+ "mg", // 毫克
|
|
|
+ "g", // 克
|
|
|
+ "μg", // 微克
|
|
|
+ "L", // 升
|
|
|
+ "ml", // 毫升
|
|
|
+ "μL", // 微升
|
|
|
+ "U", // 单位(通常用于生物制剂)
|
|
|
+ "IU", // 国际单位
|
|
|
+ "T", // 可能指大写字母T,在特定上下文中有特殊意义
|
|
|
+ "S", // 可能指大写字母S,在特定上下文中有特殊意义
|
|
|
+ "片", // 片剂
|
|
|
+ "丸", // 丸剂
|
|
|
+ "粒", // 小颗粒状药物或物品
|
|
|
+ "支", // 一支,可能指液体或固体的包装单位
|
|
|
+ "袋", // 袋装
|
|
|
+ "瓶", // 瓶装
|
|
|
+ "盒", // 盒装
|
|
|
+ "板", // 板状物,如药板
|
|
|
+ "包", // 包装
|
|
|
+ "小盒" // 小盒子
|
|
|
+ ], // 示例单位列表
|
|
|
+ title: '单次剂量单位',
|
|
|
+ validate: function(value) {
|
|
|
+ if ($.trim(value) === '') return '单次剂量单位不能为空';
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {field: 'medicationRoute', title: '用药途径'},
|
|
|
+ {field: 'dosageFrequency', title: '用药频次'},
|
|
|
+ {field: 'registrant', title: '登记人'},
|
|
|
+ {field: 'registrationDate', title: '登记日期'},
|
|
|
+ {field: 'saleDate', title: '销售日期', visible: false},
|
|
|
+ {field: 'pharmacyName', title: '购药门店名称'},
|
|
|
+ {
|
|
|
+ field: 'actions',
|
|
|
+ title: '操作',
|
|
|
+ formatter: actionFormatter,
|
|
|
+ events: window.actionEvents
|
|
|
+ }
|
|
|
+ ]
|
|
|
+
|
|
|
+ };
|
|
|
+ tableElement.bootstrapTable(options);
|
|
|
+ }
|
|
|
+ if(tabId==='tab-3'){
|
|
|
+ var tableElement4 = $('#bootstrap-table-4');
|
|
|
+ // 回显数据随访计划
|
|
|
+ var data4=[];
|
|
|
+ var data5=[];
|
|
|
+
|
|
|
+ data4=listTask1;
|
|
|
+ data5=listTask2;
|
|
|
+ // 初始化表格 getDrugPurchaseList
|
|
|
+ // $.ajax({
|
|
|
+ // cache : true,
|
|
|
+ // type : "POST",
|
|
|
+ // url : ctx + "dtp/pmService/getDrugPurchaseList",
|
|
|
+ // data : data,
|
|
|
+ // async : false,
|
|
|
+ // error : function(request) {
|
|
|
+ // $.modal.alertError("系统错误");
|
|
|
+ // },
|
|
|
+ // success : function(data) {
|
|
|
+ // data4=data.rows;
|
|
|
+ // data5=data.rows;
|
|
|
+ // $.operate.successCallback(data);
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ var options ={
|
|
|
+ // 配置表格的相关属性
|
|
|
+ // 例如数据源、列定义等
|
|
|
+ // 示例配置
|
|
|
+ data: data4,
|
|
|
+ fitColumns: true,
|
|
|
+ striped: true,
|
|
|
+ autoRowHeight: true,
|
|
|
+ rowNumbers: true,
|
|
|
+ showFooter:true, //是否显示表格底部区域。
|
|
|
+ clickToSelect: true, //是否启用点击行时选中整行的功能。
|
|
|
+ singleSelect: false, //是否仅允许选择一行
|
|
|
+ fixedColumns: true,
|
|
|
+ //fixedNumber: 3,
|
|
|
+ fixedRightNumber: 1,
|
|
|
+ columns : [
|
|
|
+ { field: 'id', title: '序号' },
|
|
|
+ { field: 'taskName', title: '任务名称' },
|
|
|
+ { field: 'taskTheme', title: '任务类型'},
|
|
|
+ { field: 'appointmentDate', title: '预约时间' },
|
|
|
+ { field: 'completionTime', title: '完成时间' },
|
|
|
+ { field: 'taskFollower', title: '任务跟进人' },
|
|
|
+ { field: 'taskStatus', title: '任务状态' },
|
|
|
+ {
|
|
|
+ title: '操作',
|
|
|
+ align: 'center',
|
|
|
+ width: '180px',
|
|
|
+ formatter: function(value, row, index) {
|
|
|
+ if (row.id && !['已取消', '已完成'].includes(row.taskStatus)) {
|
|
|
+ var actions = [];
|
|
|
+ actions.push('<a class="btn-xs" href="javascript:void(0)" onclick="edit(\'' + row.id + '\')">查看</a> ');
|
|
|
+ actions.push('<a class="btn-xs" href="javascript:void(0)" onclick="closeTask(\'' + row.id + '\')">关闭任务</a> ');
|
|
|
+ return actions.join('');
|
|
|
+ }
|
|
|
+ if (row.id && ['已取消', '已完成'].includes(row.taskStatus)) {
|
|
|
+ var actions = [];
|
|
|
+ actions.push('<a class="btn-xs" href="javascript:void(0)" onclick="edit(\'' + row.id + '\')">查看</a> ');
|
|
|
+ return actions.join('');
|
|
|
+ }else {
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ };
|
|
|
+ tableElement4.bootstrapTable(options);
|
|
|
+
|
|
|
+ var tableElement5 = $('#bootstrap-table-5');
|
|
|
+ var options ={
|
|
|
+ // 配置表格的相关属性
|
|
|
+ // 例如数据源、列定义等
|
|
|
+ // 示例配置
|
|
|
+ data: data5,
|
|
|
+ fitColumns: true,
|
|
|
+ striped: true,
|
|
|
+ autoRowHeight: true,
|
|
|
+ rowNumbers: true,
|
|
|
+ showFooter:true, //是否显示表格底部区域。
|
|
|
+ clickToSelect: true, //是否启用点击行时选中整行的功能。
|
|
|
+ singleSelect: false, //是否仅允许选择一行
|
|
|
+ fixedColumns: true,
|
|
|
+ //fixedNumber: 3,
|
|
|
+ fixedRightNumber: 1,
|
|
|
+ columns : [
|
|
|
+ { field: 'id', title: '序号' },
|
|
|
+ { field: 'taskName', title: '任务名称' },
|
|
|
+ { field: 'taskTheme', title: '任务类型'},
|
|
|
+ { field: 'appointmentDate', title: '预约时间' },
|
|
|
+ { field: 'completionTime', title: '完成时间' },
|
|
|
+ { field: 'taskFollower', title: '任务跟进人' },
|
|
|
+ { field: 'taskStatus', title: '任务状态' },
|
|
|
+ {
|
|
|
+ title: '操作',
|
|
|
+ align: 'center',
|
|
|
+ width: '180px',
|
|
|
+ formatter: function(value, row, index) {
|
|
|
+ if (row.id && !['已取消', '已完成'].includes(row.taskStatus)) {
|
|
|
+ var actions = [];
|
|
|
+ actions.push('<a class="btn-xs" href="javascript:void(0)" onclick="edit(\'' + row.id + '\')">查看</a> ');
|
|
|
+ actions.push('<a class="btn-xs" href="javascript:void(0)" onclick="closeTask(\'' + row.id + '\')">关闭任务</a> ');
|
|
|
+ return actions.join('');
|
|
|
+ }
|
|
|
+ if (row.id && ['已取消', '已完成'].includes(row.taskStatus)) {
|
|
|
+ var actions = [];
|
|
|
+ actions.push('<a class="btn-xs" href="javascript:void(0)" onclick="edit(\'' + row.id + '\')">查看</a> ');
|
|
|
+ return actions.join('');
|
|
|
+ }else {
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ };
|
|
|
+ tableElement5.bootstrapTable(options);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 定义操作列的事件处理
|
|
|
+ window.actionEvents = {
|
|
|
+ 'click .save': function (e, value, row, index) {
|
|
|
+ saveDrug(row);
|
|
|
+ }
|
|
|
+ };
|
|
|
+ // 定义操作列的格式化函数
|
|
|
+ function actionFormatter(value, row, index) {
|
|
|
+ return [
|
|
|
+ '<button class="save ml10 btn btn-success btn-xs" type="button">保存</button>'
|
|
|
+ ].join('');
|
|
|
+ }
|
|
|
+
|
|
|
+ // 定义保存药品记录的方法
|
|
|
+ function saveDrug(row) {
|
|
|
+ // 发送 AJAX 请求更新数据
|
|
|
+ $.ajax({
|
|
|
+ cache: true,
|
|
|
+ type: "POST",
|
|
|
+ url: ctx + "dtp/pmService/updateDrugPurchaseRecord",
|
|
|
+ data: row,
|
|
|
+ async: false,
|
|
|
+ success: function(data) {
|
|
|
+ $.modal.msg("保存成功");
|
|
|
+ },
|
|
|
+ error: function(error) {
|
|
|
+ $.modal.msg("更新失败");
|
|
|
+ }
|
|
|
+ });
|
|
|
+ };
|
|
|
+ function editArchives(){
|
|
|
+ var id = $("#patientId").val();
|
|
|
+ // table.set();
|
|
|
+ var prefix = ctx + "dtp/pmService/archivesEdit/{id}";
|
|
|
+ $.modal.openTab("修改档案", prefix.replace("{id}", id));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ // 关闭计划
|
|
|
+ function closePlan(planFlag) {
|
|
|
+ var taskId, planId;
|
|
|
+
|
|
|
+ if (planFlag === 1) {
|
|
|
+ taskId = $("#id").val();
|
|
|
+ planId = $("#planId_cg").val();
|
|
|
+ } else if (planFlag === 2) {
|
|
|
+ taskId = $("#id").val();
|
|
|
+ planId = $("#planId_tl").val();
|
|
|
+ }
|
|
|
+ if (!taskId || !planId) {
|
|
|
+ $.modal.alertError("参数错误");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ $.modal.confirm("确认要关闭计划吗? 关闭计划后将停止该计划下的所有任务", function() {
|
|
|
+ var formData = new FormData();
|
|
|
+ var taskId, planId;
|
|
|
+
|
|
|
+ if (planFlag === 1) {
|
|
|
+ taskId = $("#id").val();
|
|
|
+ planId = $("#planId_cg").val();
|
|
|
+ } else if (planFlag === 2) {
|
|
|
+ taskId = $("#id").val();
|
|
|
+ planId = $("#planId_tl").val();
|
|
|
+ }
|
|
|
+
|
|
|
+ formData.append('taskId', taskId);
|
|
|
+ formData.append('planId', planId);
|
|
|
+
|
|
|
+ $.ajax({
|
|
|
+ url: prefix_task + "/closePlan",
|
|
|
+ data: formData,
|
|
|
+ method: 'POST',
|
|
|
+ processData: false, // 防止 jQuery 自动转换数据
|
|
|
+ contentType: false, // 不设置内容类型
|
|
|
+ dataType: 'json',
|
|
|
+ error: function(request) {
|
|
|
+ $.modal.alertError("关闭计划失败");
|
|
|
+ },
|
|
|
+ success: function(data) {
|
|
|
+ $.modal.alertSuccess("关闭计划成功");
|
|
|
+ // 更新选项卡状态
|
|
|
+ updateTabState('#tab-3');
|
|
|
+ window.location.reload();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ }
|
|
|
+ // 关闭任务
|
|
|
+ function closeTask(id) {
|
|
|
+ $.modal.confirm("确认要关闭任务吗? 关闭任务后将停止该任务的随访操作", function() {
|
|
|
+ var formData = new FormData();
|
|
|
+ formData.append('id', id);
|
|
|
+
|
|
|
+ $.ajax({
|
|
|
+ url: prefix_task + "/closeTask",
|
|
|
+ data: formData,
|
|
|
+ method: 'POST',
|
|
|
+ processData: false, // 防止 jQuery 自动转换数据
|
|
|
+ contentType: false, // 不设置内容类型
|
|
|
+ success: function(data) {
|
|
|
+ $.modal.alertSuccess("关闭任务成功");
|
|
|
+ // $.modal.reload();
|
|
|
+ window.location.reload();
|
|
|
+ },
|
|
|
+ error: function(xhr, status, error) {
|
|
|
+ $.modal.alertError("关闭任务失败");
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ // 辅助函数:用于更新选项卡状态
|
|
|
+ function updateTabState(tabId) {
|
|
|
+ // 移除所有 li 的 active 类
|
|
|
+ $('#myUlTabs .nav-item').removeClass('active');
|
|
|
+ // 设置指定 tab 的 li 为 active
|
|
|
+ $(tabId).closest('.nav-tabs').find('a[href="' + tabId + '"]').parent().addClass('active');
|
|
|
+
|
|
|
+ // 更新 a 标签的 aria-expanded 属性
|
|
|
+ $('#myUlTabs a').attr('aria-expanded', 'false');
|
|
|
+ $(tabId).closest('.nav-tabs').find('a[href="' + tabId + '"]').attr('aria-expanded', 'true');
|
|
|
+
|
|
|
+ // 移除所有 tab-pane 的 active 和 in 类
|
|
|
+ $('.tab-pane').removeClass('active in show'); // 注意这里使用了 'show' 类,取决于你使用的 Bootstrap 版本
|
|
|
+ // 为指定 tab-pane 添加 active 和 in 类
|
|
|
+ $(tabId).addClass('active in show'); // 同上,确保与你的 Bootstrap 版本匹配
|
|
|
+ }
|
|
|
+
|
|
|
+ function editSFGenJinRen(){
|
|
|
+ //随访计划跟进人
|
|
|
+ var followUpPersonId = /*[[${followUpPersonId}]]*/ '';
|
|
|
+ var followUpPersonName = /*[[${followUpPersonName}]]*/ '';
|
|
|
+ // $.operate.addSetwht('分配跟进人','dtp/pmService/followUpAssignAdd',800,800)
|
|
|
+ //var followUpPersonId=$('#followUpPersonId').val()
|
|
|
+ //alert("编辑随访跟进人"+followUpPersonId);
|
|
|
+ var options = {
|
|
|
+ title: '分配跟进人',
|
|
|
+ width: 800,
|
|
|
+ height: 600,
|
|
|
+ url: prefix + '/followUpAssignAdd',
|
|
|
+ callBack: doSubmit2
|
|
|
+ };
|
|
|
+ $.modal.openOptions(options);
|
|
|
+ }
|
|
|
+ // callBack获取父窗口方法(方式二)
|
|
|
+ function doSubmit2(index, layero) {
|
|
|
+ var hzparam;
|
|
|
+ var rows = layero.find("iframe")[0].contentWindow.selectTableObject();
|
|
|
+ if (rows.length == 0) {
|
|
|
+ $.modal.alertWarning("请至少选择一条记录");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ var followUpPersonId=$('#followUpPersonId').val();//s_dtp_ysfw_follow_up_assign
|
|
|
+ rows.forEach(function(item) {
|
|
|
+ // 动态选择所有列并映射到更具描述性的名称
|
|
|
+ hzparam = {
|
|
|
+ id: item.id,
|
|
|
+ pharmacistName: item.pharmacistName,
|
|
|
+ position: item.position,
|
|
|
+ storeName: item.storeName,
|
|
|
+ phone: item.phone,
|
|
|
+ storeId: item.storeId,
|
|
|
+ followUpPersonId: followUpPersonId
|
|
|
+ };
|
|
|
+
|
|
|
+ });
|
|
|
+ $.ajax({
|
|
|
+ cache: true,
|
|
|
+ type: "POST",
|
|
|
+ url: prefix+'/editFollowUpAssign', // 替换为实际的搜索 URL
|
|
|
+ data: hzparam,
|
|
|
+ async: false,
|
|
|
+ success: function (data) {
|
|
|
+ $.modal.msg("操作成功");
|
|
|
+ // 更新 <code> 标签的内容
|
|
|
+ var followUpPersonName = hzparam.pharmacistName; // 假设需要第一个对象的 pharmacistName
|
|
|
+ $('#followUpPersonNameCode').text(followUpPersonName);
|
|
|
+ $('#followUpPersonName').val(followUpPersonName); // 更新输入框的值
|
|
|
+
|
|
|
+ },
|
|
|
+ error: function(error) {
|
|
|
+ $.modal.alertError("失败");
|
|
|
+ }
|
|
|
+ });
|
|
|
+ $.modal.close(index);
|
|
|
+ }
|
|
|
+ function editTaskGenJinRen(){
|
|
|
+ //任务跟进人
|
|
|
+
|
|
|
+ var options = {
|
|
|
+ title: '分配跟进人',
|
|
|
+ width: 800,
|
|
|
+ height: 600,
|
|
|
+ url: prefix + '/followUpAssignAdd',
|
|
|
+ callBack: doSubmit1
|
|
|
+ };
|
|
|
+ $.modal.openOptions(options);
|
|
|
+ }
|
|
|
+ function doSubmit1(index, layero) {
|
|
|
+ var bc_id=$('#bc_id').val()
|
|
|
+ var hzparam;
|
|
|
+ var rows = layero.find("iframe")[0].contentWindow.selectTableObject();
|
|
|
+ if (rows.length == 0) {
|
|
|
+ $.modal.alertWarning("请至少选择一条记录");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ rows.forEach(function(item) {
|
|
|
+ // 动态选择所有列并映射到更具描述性的名称
|
|
|
+ hzparam = {
|
|
|
+ id: item.id,
|
|
|
+ pharmacistName: item.pharmacistName,
|
|
|
+ position: item.position,
|
|
|
+ storeName: item.storeName,
|
|
|
+ phone: item.phone,
|
|
|
+ storeId: item.storeId,
|
|
|
+ taskId: bc_id
|
|
|
+ };
|
|
|
+
|
|
|
+ });
|
|
|
+ $.ajax({
|
|
|
+ cache: true,
|
|
|
+ type: "POST",
|
|
|
+ url: prefix+'/editFollowTaskAssignById', // 替换为实际的搜索 URL
|
|
|
+ data: hzparam,
|
|
|
+ async: false,
|
|
|
+ success: function (data) {
|
|
|
+ $.modal.msg("操作成功");
|
|
|
+ // 更新 <code> 标签的内容
|
|
|
+ var followUpPersonName = hzparam.pharmacistName; // 假设需要第一个对象的 pharmacistName
|
|
|
+ $('#bc_taskFollowerCode').text(followUpPersonName);
|
|
|
+ $('#bc_taskFollower').val(followUpPersonName); // 更新输入框的值
|
|
|
+
|
|
|
+ },
|
|
|
+ error: function(error) {
|
|
|
+ $.modal.alertError("失败");
|
|
|
+ }
|
|
|
+ });
|
|
|
+ $.modal.close(index);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ function updateInterval(nextFollowTimeStr) {
|
|
|
+ // 获取当前时间
|
|
|
+ const now = new Date();
|
|
|
+ if (nextFollowTimeStr) {
|
|
|
+ // 将字符串转换为日期对象
|
|
|
+ const nextFollowTime = new Date(nextFollowTimeStr);
|
|
|
+
|
|
|
+ // 计算间隔天数
|
|
|
+ const intervalDays = Math.floor((nextFollowTime - now) / (1000 * 60 * 60 * 24));
|
|
|
+
|
|
|
+ // 显示间隔天数
|
|
|
+ const intervalThisTimeSpan = $('#interval_this_time');
|
|
|
+ if (intervalDays < 0) {
|
|
|
+ intervalThisTimeSpan.css('color', 'red').text(intervalDays);
|
|
|
+ } else {
|
|
|
+ intervalThisTimeSpan.css('color', '#1a7bb9').text(intervalDays);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ // 如果没有选择下次随访时间,清除间隔天数显示
|
|
|
+ const intervalThisTimeSpan = $('#interval_this_time');
|
|
|
+ intervalThisTimeSpan.text('');
|
|
|
+ }
|
|
|
+ }
|
|
|
+function onselectsf(){
|
|
|
+ debugger
|
|
|
+ alert(111)
|
|
|
+ // 初始化时检查是否有预设的下次随访时间
|
|
|
+ const initialNextFollowTime = $('#next_follow_time').val();
|
|
|
+ if (initialNextFollowTime) {
|
|
|
+ $('#next_follow_time').val(initialNextFollowTime);
|
|
|
+ updateInterval(initialNextFollowTime);
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|