Explorar o código

长处方与咨询相关功能新增的代码

raolu %!s(int64=7) %!d(string=hai) anos
pai
achega
9a29a1a462
Modificáronse 18 ficheiros con 392 adicións e 0 borrados
  1. 75 0
      fv-survey.html
  2. BIN=BIN
      img/huifu_icon.png
  3. BIN=BIN
      img/huifu_icon_pre.png
  4. BIN=BIN
      img/img_icon.png
  5. BIN=BIN
      img/img_icon_pre.png
  6. BIN=BIN
      img/jietu_icon.png
  7. BIN=BIN
      img/jietu_icon_pre.png
  8. BIN=BIN
      img/shanyi_icon.png
  9. BIN=BIN
      img/shiping_icon.png
  10. BIN=BIN
      img/shiping_icon_pre.png
  11. BIN=BIN
      img/wenjian_icon.png
  12. BIN=BIN
      img/wenjian_icon_pre.png
  13. BIN=BIN
      img/xiayi_icon.png
  14. BIN=BIN
      img/yuying_icon.png
  15. BIN=BIN
      img/yuying_icon_pre.png
  16. 76 0
      js/buz/fv-survey.js
  17. 82 0
      js/buz/survey-detail.js
  18. 159 0
      survey-detail.html

+ 75 - 0
fv-survey.html

@ -0,0 +1,75 @@
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="renderer" content="webkit">
    <meta http-equiv="Cache-Control" content="no-siteapp" />
    <title>随访问卷列表</title>
    <meta name="keywords" content="">
    <meta name="description" content="">
    <link rel="shortcut icon" href="favicon.ico">
    <link href="css/bootstrap.min.css?v=3.3.6" rel="stylesheet">
    <link href="css/font-awesome.min93e3.css?v=4.4.0" rel="stylesheet">
    <link href="css/animate.min.css" rel="stylesheet">
    <link href="css/plugins/toastr/toastr.min.css" rel="stylesheet">
    <link href="js/plugins/artDialog/6.0.5/css/ui-dialog.min.css" rel="stylesheet">
    <link href="css/style.css" rel="stylesheet">
    <style>
        .box{
            border: 1px solid #d7dce5;
            margin-top: 20px;
            border-radius: 8px;
        }
        .c-border-b{border-bottom: 1px solid #d7dce5;}
        .self-btn{
            background-color: #12b7f5;
            color: #fff;
            width: 100px;
            padding: 6px 8px;
            border-radius: 2px;
        }
        .ui-grid{padding: 10px 0;}
    </style>
</head>
<body class="white-bg plr10">
    <div class="plr10 ptb10" id="container">
        
    </div>

    <script type="text/html" id="info_tmp">
        {{each list as it}}
        <div class="plr20 box" data-json="{{it.jsonStr}}">
            <div class="ui-grid c-border-b">
                <div class="ui-col-1 c-f16">{{it.name}}</div>
                <div class="ui-col-1 text-right">
                    {{if it.statue == 1}}
                    <a class="import-fv self-btn">填入随访记录</a>
                    {{else}}
                    <a class="send-survey self-btn">发送填写请求</a>
                    {{/if}}
                </div>
            </div>
            <div class="ui-grid">
                <div class="ui-col-1">问卷状态:{{it.statue == 1 ? '已填写' : '未填写'}}</div>
                {{if it.statue == 1}}
                <div class="ui-col-1 text-right">填写时间: {{it.createtime}}</div>
                {{/if}}
            </div>
        </div>
        {{/each}}
    </script>
    
    <script src="js/jquery.min.js?v=2.1.4"></script>
    <script src="js/bootstrap.min.js?v=3.3.6"></script>
    <script src="js/plugins/pace/pace.min.js"></script>
    <script src="js/plugins/toastr/toastr.min.js"></script>
    <script src="js/es6-promise.js"></script>
    <script src="js/underscore.js"></script>
    <script src="js/util.js"></script>
    <script src="js/template.js"></script>
    <script src="js/api-service.js"></script>
    <script src="js/consulting-api.js" type="text/javascript" charset="utf-8"></script>
    <script src="js/buz/fv-survey.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>

BIN=BIN
img/huifu_icon.png


BIN=BIN
img/huifu_icon_pre.png


BIN=BIN
img/img_icon.png


BIN=BIN
img/img_icon_pre.png


BIN=BIN
img/jietu_icon.png


BIN=BIN
img/jietu_icon_pre.png


BIN=BIN
img/shanyi_icon.png


BIN=BIN
img/shiping_icon.png


BIN=BIN
img/shiping_icon_pre.png


BIN=BIN
img/wenjian_icon.png


BIN=BIN
img/wenjian_icon_pre.png


BIN=BIN
img/xiayi_icon.png


BIN=BIN
img/yuying_icon.png


BIN=BIN
img/yuying_icon_pre.png


+ 76 - 0
js/buz/fv-survey.js

@ -0,0 +1,76 @@
var request = getRequest(),
    prescriptionCode = request.code,
    fv_id = request.fv_id;
    

$(function(){
    getList();
    bindEvents();
})

function getList(){
    var params = {
        prescriptioncode: prescriptionCode
    };
    consultingAPI.getFollowupCountList(params).then(function(res){
        if(res.status == 200){
            var list = _.map(res.data, function(o){
                o.jsonStr = JSON.stringify(o);
                return o;
            });
            
            var html = template('info_tmp', {list: list});
            $("#container").empty().append(html);
        }else{
            showErrorMsg(res.msg);
        }
    });
}

function bindEvents(){
    $("body").on('click', ".import-fv", function(e){
        e.stopPropagation();
        var $this = $(this),
            $box = $this.closest(".box"),
            json = $box.data(json),
            params = {
                followupid: fv_id,
                prescriptioncode: prescriptioncode,
                type: json.type //1身体异常症状问卷,2体征及生活方式调查问卷
            };
        
        consultingAPI.importfollowupcontent(params).then(function(res){
            if(res.status == 200){
                showSuccessMsg("已填入");
            }else{
                showErrorMsg(res.msg);
            }
        })
    });
    
    $("body").on('click', '.send-survey', function(e){
        e.stopPropagation();
        var $this = $(this),
            $box = $this.closest(".box"),
            json = $box.data(json),
            params = {
                followupid: fv_id,
                prescriptioncode: prescriptioncode,
                type: json.type //1身份异常症状问卷,2体征及生活方式调查问卷
            };
        consultingAPI.addPrescriptionFollowupContentConsult(params).then(function(res){
                if(res.status == 200){
                   showSuccessMsg("已发送");
                }else{
                    showErrorMsg(res.msg);
                }
            })
    });
    
    $("body").on('click', '.box', function(){
        var $this = $(this),
            json = $this.data('json');
         
        location.href = "survey-detail.html?prescriptionCode="+prescriptionCode+"&fv_id="+fv_id+"&type="+json.type+"&projectId="+json.typevalue+'&state='+json.statue;
    });
}

+ 82 - 0
js/buz/survey-detail.js

@ -0,0 +1,82 @@
var request = getRequest(),
    prescriptionCode = request.prescriptionCode,
    fv_id = request.fv_id,
    type = request.type,
    state = request.state, //问卷状态
    project_id = request.projectId;

var project_data = {};

$(function(){
    if(state == 2){ //未填写
        $("#fvBtn").hide();
    }else{
        $("#fvBtn").show();
    }
    //获得模板中的数据显示
    var arr = project_id.split(",");
    for(i=0; i<arr.length; i++){
        $.extend(true, project_data, gTemplate[arr[i]]);
    }
    
    getDetail();
    bindEvents();
});

function getDetail(){
    var params = {
        prescriptioncode: prescriptionCode,
        followupProject: project_id
    };
    
    consultingAPI.getSurveyInfo(params).then(function(res){
        if(res.status == 200){
            for(key in project_data){
                project_data[key].value = res.data?res.data[key]:'';
            }
            var html = template("item", {
                data:project_data
            });
            
            $("#question_form .form-info").append(html);
            initChosen();
        }else{
            showErrorMsg(res.msg);
        }
    })
}

function initChosen(){
    $(".my_select_box").chosen({
        disable_search: true,
        inherit_select_classes: true, //将设定的样式添加到插件的控件中
        disable_search_threshold: 10,
        no_results_text: "",
        width: "100%"
    });
}

function bindEvents(){
    $("#backBtn").on('click', function(){
        history.go(-1);
    });
    
    $("#fvBtn").on('click', function(){
        var params = {
            followupid: fv_id,
            prescriptioncode: prescriptionCode,
            type: type
        };
        consultingAPI.importfollowupcontent(params).then(function(res){
            if(res.status == 200){
                showSuccessMsg("填入随访记录成功");
                setTimeout(function(){
                    history.go(-1);
                }, 500);
                
            }else{
                showErrorMsg(res.msg);
            }
        });
    })
}

+ 159 - 0
survey-detail.html

@ -0,0 +1,159 @@
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="renderer" content="webkit">
    <meta http-equiv="Cache-Control" content="no-siteapp" />
    <title>随访问卷列表</title>
    <meta name="keywords" content="">
    <meta name="description" content="">
    <link rel="shortcut icon" href="favicon.ico">
    <link href="css/bootstrap.min.css?v=3.3.6" rel="stylesheet">
    <link href="css/font-awesome.min93e3.css?v=4.4.0" rel="stylesheet">
    <link href="css/animate.min.css" rel="stylesheet">
    <link href="css/plugins/toastr/toastr.min.css" rel="stylesheet">
    <link rel="stylesheet" type="text/css" href="css/plugins/chosen/chosen.css"/>
    <link href="css/style.css" rel="stylesheet">
    <link rel="stylesheet" type="text/css" href="css/followup.css"/>
</head>
<body class="white-bg plr10">
    <form id="question_form" class="form-inline" onsubmit="return false;">
        <div class="clearfix form-info">
        </div>
    </form>
    
    <div class="c-tac mb20 mt20">
        <button id="fvBtn" type="button" class="btn btn-w-m btn-blue mlr20" style="display: none;">填入随访记录</button>
        <button id="backBtn" type="button" class="btn btn-w-m btn-danger mlr20">返回</button>
    </div>
    
    <script type="text/html" id="item">
        <!--type 1-文本输入,2-radio选择,3-checkbox, 4 - textarea-->
        {{each data as it key}}
        {{if it.type == 1}}
        <div class="form-group mr20">
            <label for="{{key}}">
                {{if it.required == true}}
                <i class="required"></i>
                {{/if}}
                {{it.label}}
            </label>
            {{if it.textType == 'string'}}
            <input type="text" name="{{key}}" id="{{key}}" value="{{it.value}}" {{if it.readonly}}readonly="{{it.readonly}}"{{/if}}class="form-control input-xs" style="width: {{it.width}};"/>
            {{/if}}
            {{if it.textType == 'number'}}
            <input type="number" name="{{key}}" id="{{key}}" value="{{it.value}}" step="0.01" class="form-control input-xs" style="width: {{it.width}};"/>
            {{/if}}
            {{if it.textType == 'date'}}
            <div class="input-group date" style="width:200px">
                <input type="text" name="{{key}}" id="{{key}}" value="{{it.value}}" data-val="date" class="form-control input-xs form_datetime" style="width: {{it.width}};" readonly="readonly" />
                <div class="input-group-addon">
                    <!--<span class="glyphicon glyphicon-th"></span>-->
                    <i class="fa fa-calendar"></i>
                </div>
            </div>
            {{/if}}
            {{if it.textType == 'select'}}
            <div class="input-group" style="width: {{it.width}};">
            <select name="{{key}}" id="{{key}}" class="my_select_box">
                <option value="undefined">请选择</option>
                {{each it.options as op}}
                <option value="{{op.key}}" {{if it.value == op.key}}selected{{/if}}>{{op.value}}</option>
                {{/each}}
            </select>
            </div>
            {{/if}}
            {{if it.unit}}{{it.unit}}{{/if}}
        </div>
        {{/if}}
        {{if it.type == 5}} 
        <!-- 多级输入框组合 -->
        <div class="form-group mr20 multi-input-group">
            <label for="">
                {{if it.required == true}}
                <i class="required"></i>
                {{/if}}
                {{it.label}}
            </label>
            {{each it.items as op index}}
            {{if index>0}}{{it.separate}}{{/if}}
            {{if op.textType == 'select'}}
            <div class="input-group" style="width: {{op.width}};">
                <select name="{{op.name}}" class="my_select_box" >
                    <option value="undefined">请选择</option>
                    {{each op.options as oop}}
                    <option value="{{oop.key}}" {{if op.value == oop.key}}selected{{/if}}>{{oop.value}}</option>
                    {{/each}}
                </select>
            </div>
            {{else if op.textType == "radio"}}
                {{each op.options as oop id}}
                <label class="mr10">
                    <input type="radio" class="icon-checkbox" name="{{op.name}}" value="{{id}}" {{if op.value == id}}checked="checked"{{/if}}>
                    {{oop}}
                </label>
                {{/each}}
            {{else}}
            <input type="{{op.textType}}" value="{{op.value}}" name="{{op.name}}" step="0.01" maxlength="{{op.maxLength}}" class="form-control input-sm" style="width: {{op.width}};">
            {{/if}}
            {{/each}}
            {{if it.unit}}{{it.unit}}{{/if}}
        </div>
        {{/if}}
        {{if it.type == 2}}
        <div class="form-group fl">
            <label class="">
                {{if it.required == true}}
                <i class="required"></i>
                {{/if}}
                {{it.label}}{{if it.unit}}({{it.unit}}){{/if}}
            </label>
            <!--<div class="input-group">-->
                {{each it.items as op id}}
                <label class="mr10">
                    <input type="radio" class="icon-checkbox" name="{{key}}" value="{{id}}" {{if it.value == id}}checked="checked"{{/if}}>
                    {{op}}
                </label>
                {{/each}}
            <!--</div>-->
        </div>
        {{/if}} 
        {{if it.type == 3}}    
        <div class="form-group fl" style="width: 160px; margin-bottom: 10px;" has-hide="{{it.hide && it.hide.type}}">
            <input type="checkbox" class="icon-checkbox" name="{{key}}" {{if it.value}}checked="checked" value="{{it.value}}"{{else}}value="0"{{/if}}>
            <label>{{it.label}}</label>
        </div>
        {{/if}}
        {{if it.type == 4}}
        <div class="form-group fl" style="width: 100%;">
            <label class="col-xs-0 fl">
                {{if it.required == true}}
                <i class="required"></i>
                {{/if}}
                {{it.label}}
                {{if it.unit}}({{it.unit}}){{/if}}
            </label>
            <div class="col-xs-10">
                <textarea name="{{key}}" rows="{{it.row}}" cols="" maxlength="{{it.maxLength}}" style="width: {{it.width}};">{{it.value}}</textarea>
                <p class="text-right c-f12 c-909090"><span class="other-count">{{it.valueLength||0}}</span>/{{it.maxLength}}</p>
            </div>
        </div>
        {{/if}}
        {{/each}}
    </script>
    <script src="js/jquery.min.js?v=2.1.4"></script>
    <script src="js/bootstrap.min.js?v=3.3.6"></script>
    <script src="js/plugins/pace/pace.min.js"></script>
    <script src="js/plugins/toastr/toastr.min.js"></script>
    <script src="js/plugins/chosen/chosen.jquery.js " type="text/javascript" charset="utf-8"></script>
    <script src="js/es6-promise.js"></script>
    <script src="js/underscore.js"></script>
    <script src="js/util.js"></script>
    <script src="js/template.js"></script>
    <script src="js/api-service.js"></script>
    <script src="js/consulting-api.js" type="text/javascript" charset="utf-8"></script>
    <script src="js/buz/followup/template_gxy.js" type="text/javascript" charset="utf-8"></script>
    <script src="js/buz/survey-detail.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>