|
|
|
@ -68,20 +68,27 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-group divCss8">
|
|
|
|
|
<label for="handleName">撤回人:</label>
|
|
|
|
|
<input type="text" class="input-sm form-control" id="handleName" placeholder="请输入撤回人">
|
|
|
|
|
<label for="handleName">封存人:</label>
|
|
|
|
|
<input type="text" class="input-sm form-control" id="handleName" placeholder="请输入封存人">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group divCss8">
|
|
|
|
|
<label for="archivestate">归档状态 :</label>
|
|
|
|
|
<select class="input-sm form-control" id="archivestate">
|
|
|
|
|
<option value="">全部</option>
|
|
|
|
|
<label>归档状态 :</label>
|
|
|
|
|
<select class="selectpicker bla bla bli" multiple data-live-search="true" name="doctorInCharge" id="archivestate" title="请输入归档状态"
|
|
|
|
|
data-actions-box="true" data-deselect-all-text="取消全选" data-select-all-text="全选" data-none-results-text="没找到相应记录{0}">
|
|
|
|
|
<%-- <option value="">全部</option>--%>
|
|
|
|
|
<option value="取消入院">取消入院</option>
|
|
|
|
|
<option value="在院">在院</option>
|
|
|
|
|
<option value="归档中">归档中</option>
|
|
|
|
|
<option value="提交">提交</option>
|
|
|
|
|
<option value="主任退回">主任退回</option>
|
|
|
|
|
<option value="初审">初审</option>
|
|
|
|
|
<option value="复审退回">复审退回</option>
|
|
|
|
|
<option value="已归档">已归档</option>
|
|
|
|
|
<option value="已封存">已封存</option>
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group divCss8">
|
|
|
|
|
<label for="followingContent">状态 :</label>
|
|
|
|
|
<label for="followingContent">封存状态 :</label>
|
|
|
|
|
<select class="input-sm form-control" id="followingContent">
|
|
|
|
|
<option value="">全部</option>
|
|
|
|
|
<option value="病案封存">病案封存</option>
|
|
|
|
@ -107,10 +114,8 @@
|
|
|
|
|
<div class="columns columns-right btn-group pull-right" style="margin-top:0px;">
|
|
|
|
|
<div class="btn-group btn-info">
|
|
|
|
|
<select id="sel_exportoption" class="form-control">
|
|
|
|
|
<option value="">导出当前页面数据</option>
|
|
|
|
|
|
|
|
|
|
<option value="">导出当前页面数据</option>
|
|
|
|
|
<option value="all">导出全部数据</option>
|
|
|
|
|
--%>
|
|
|
|
|
<option value="selected">导出选中数据</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
@ -131,7 +136,6 @@
|
|
|
|
|
$(function () {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var url = window.location.href;
|
|
|
|
|
var index = url.substring(url.lastIndexOf('?') + 1).replace("num=", "");
|
|
|
|
|
if (index != null && index != "" && index.indexOf("excel") != -1) {
|
|
|
|
@ -315,14 +319,14 @@
|
|
|
|
|
valign: 'middle',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '撤回人',
|
|
|
|
|
title: '封存人',
|
|
|
|
|
field: 'handleName',
|
|
|
|
|
align: 'center',
|
|
|
|
|
valign: 'middle',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
title: '撤回时间',
|
|
|
|
|
title: '封存时间',
|
|
|
|
|
field: 'handleTime',
|
|
|
|
|
align: 'center',
|
|
|
|
|
valign: 'middle',
|
|
|
|
@ -335,19 +339,42 @@
|
|
|
|
|
formatter: function (value, row, index) {
|
|
|
|
|
//在院 未归档 归档中 初审 已归档 已认证
|
|
|
|
|
var a = '';
|
|
|
|
|
if (value == "已归档") {
|
|
|
|
|
a = '<span ><i class="fa fa-check-circle-o" aria-hidden="true"></i>未封存</span>';
|
|
|
|
|
} else if(value == "已封存"){
|
|
|
|
|
a = '<span style="color:#003eff;"><i class="fa fa-times-circle-o" aria-hidden="true"></i>已封存</span>';
|
|
|
|
|
if (value == "未归档") {
|
|
|
|
|
a = '<span style="color:#c12e2a;"><i class="fa fa-times-circle-o" aria-hidden="true"></i>' + value + '</span>';
|
|
|
|
|
} else if (value == "已归档") {
|
|
|
|
|
a = '<span style="color:#030378"><i class="fa fa-check-circle-o" aria-hidden="true"></i>' + value + '</span>';
|
|
|
|
|
} else if (value == "在院") {
|
|
|
|
|
a = '<span style="color:#bfa200"><i class="fa fa-check-circle-o" aria-hidden="true"></i>' + value + '</span>';
|
|
|
|
|
} else if (value == "归档中") {
|
|
|
|
|
a = '<span style="color:#698B69"><i class="fa fa-check-circle-o" aria-hidden="true"></i>' + value + '</span>';
|
|
|
|
|
} else if (value == "初审") {
|
|
|
|
|
a = '<span style="color:#8FBC8F"><i class="fa fa-check-circle-o" aria-hidden="true"></i>' + value + '</span>';
|
|
|
|
|
} else if (value == "已封存") {
|
|
|
|
|
a = '<span style="color:#FF7F24"><i class="fa fa-check-circle-o" aria-hidden="true"></i>' + value + '</span>';
|
|
|
|
|
} else if (value == "复审退回") {
|
|
|
|
|
a = '<span style="color:#db0ead"><i class="fa fa-check-circle-o" aria-hidden="true"></i>' + value + '</span>';
|
|
|
|
|
} else if (value == "提交") {
|
|
|
|
|
a = '<span style="color:blue"><i class="fa fa-check-circle-o" aria-hidden="true"></i>' + value + '</span>';
|
|
|
|
|
} else if (value == "主任退回") {
|
|
|
|
|
a = '<span style="color:#0000FF"><i class="fa fa-check-circle-o" aria-hidden="true"></i>' + value + '</span>';
|
|
|
|
|
}
|
|
|
|
|
return a;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '签收状态',
|
|
|
|
|
title: '封存状态',
|
|
|
|
|
field: 'followingContent',
|
|
|
|
|
align: 'center',
|
|
|
|
|
valign: 'middle',
|
|
|
|
|
formatter: function (value, row, index) {
|
|
|
|
|
var a = '';
|
|
|
|
|
if (value == "病案取消封存") {
|
|
|
|
|
a = '<span style="color: #c0c0c0;"><i class="fa fa-check-circle-o" aria-hidden="true"></i>'+value+'</span>';
|
|
|
|
|
} else if(value == "病案封存"){
|
|
|
|
|
a = '<span style="color:red;"><i class="fa fa-times-circle-o" aria-hidden="true"></i>'+value+'</span>';
|
|
|
|
|
}
|
|
|
|
|
return a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
@ -376,7 +403,7 @@
|
|
|
|
|
} else {
|
|
|
|
|
toastr.warning("正在查询,请稍等...");
|
|
|
|
|
}
|
|
|
|
|
$(".selectpicker").selectpicker( 'deselectAll' );
|
|
|
|
|
// $(".selectpicker").selectpicker( 'deselectAll' );
|
|
|
|
|
// $('#table').bootstrapTable('destroy');
|
|
|
|
|
//$('#table').bootstrapTable('refreshOptions', {limit: 1, offset: 10});
|
|
|
|
|
//刷新
|
|
|
|
|