chenyue 6 år sedan
förälder
incheckning
82f4152ef4

+ 8 - 0
html/jkda/html/jianchajianyan.html

@ -11,6 +11,14 @@
		<link rel="stylesheet" type="text/css" href="../../../widget/mobiscroll/2.15.1/css/mobiscroll.css">
		<link rel="stylesheet" type="text/css" href="../css/jianchajianyan.css?v=1.3.4">
	</head>
	<style> /*cy*/
		.pullUp{
			display: none;
		}
		#wrapper{
			overflow: auto;
		}
	</style>
	<body>
		<div id="memberContainer"></div>
		<div class="div-content">

+ 9 - 0
html/jkda/html/jiankangtijian.html

@ -14,6 +14,15 @@
		<link rel="stylesheet" href="../../../css/pull-up-down.css" type="text/css"/>
		<link rel="stylesheet" type="text/css" href="../css/jiankangtijian.css?v=1.3.4">
	</head>
	<style> /*cy*/
		.pullUp{
			display: none;
		}
		.scroll-wrapper{
			overflow: auto;
			top:10px;
		}
	</style>
	<body>
		<div id="memberContainer"></div>
		<div id="recent_event_list_wrap">

+ 8 - 0
html/jkda/html/jiuzhenjilu.html

@ -11,6 +11,14 @@
		<link rel="stylesheet" type="text/css" href="../../../widget/mobiscroll/2.15.1/css/mobiscroll.css">
		<link rel="stylesheet" type="text/css" href="../css/jiuzhenjilu.css?v=1.3.4">
	</head>
	<style> /*cy*/
		.pullUp{
			display: none;
		}
		#wrapper{
			overflow: auto;
		}
	</style>
	<body>
		<div id="memberContainer"></div>
		<div class="div-content c-hide">

+ 2 - 2
html/jkda/js/event-profile.js

@ -171,7 +171,7 @@ var Profile = {
var dataCode = [];
var Request = GetRequest(),
	eventId = Request.event;
	eventId = Request.event,type=Request.type; //cy
var d = dialog({contentType:'load', skin:'bk-popup'});
@ -290,7 +290,7 @@ showTip = function(msg) {
	}
};
//// 页面业务处理流程开始
getReqPromise('patient/archives/event/catalog',{event: eventId},'JSON','GET')
getReqPromise('patient/archives/event/catalog',{event: eventId,type:type},'JSON','GET')
.then(function(res) {
	if(res.status==200) {
		catalogs = res.data

+ 2 - 1
html/jkda/js/jiuzhenjilu.js

@ -137,6 +137,7 @@ checkUserAgent();
function bindEvents() {
	$records.on('click','li[data-from="1"]',function() {
        var id = $(this).attr('data-id');
        var type=JSON.parse($(this).attr('data-json')).eventType;  //cy
        function checkSign(){
            d.show();
@ -168,7 +169,7 @@ function bindEvents() {
                            var is_sign = res.data;
                            if(is_sign > 0){
                                window.location.href = "event-profile.html?event="+id
                                window.location.href = "event-profile.html?event="+id+"&type="+type
                            }else{
                                dialog({
                                    title: '提示',

+ 1 - 1
html/jkda/js/single-profile.js

@ -222,7 +222,7 @@ showTip = function(msg) {
// 绑定页面事件
bindEvents = function () {
	$('#xiangqing_btn').on('click',function() {
		window.location.href = 'event-profile.html?event='+eventId+'&catalog='+catalog
		window.location.href = 'event-profile.html?event='+eventId+'&catalog='+catalog+'&type=1' //cy
	});
};
// 页面业务处理流程开始