自助缴费机挂号机可以重复打印缴费凭证吗

关注新浪微博
关注官方微信
if (topicNameList[i] == "") {
html += '';
html += '';
html += '' +
$("#hfTopicSelCount").val(topicCount);
$("#hfTopicIDs").val(topicIDs);
$("#hfTopicNames").val(topicNames);
$(this).html(html);
//话题维护
function ShowTopicDetail(id) {
var url = '/study/question/topicdetail.htm?ID=' +
window.open(url);
//输出json时间格式字符串yyyy-MM-dd HH:mm
function GetFormatDateTime(objDate) {
if (objDate == null) return "";
var jsonDate = eval('new ' + (objDate.replace(/\//g, '')));
var year = jsonDate.getFullYear();
var month = jsonDate.getMonth() + 1;
var date = jsonDate.getDate();
var hour = jsonDate.getHours();
var minute = jsonDate.getMinutes();
var second = jsonDate.getSeconds();
if (month < 10)
month = "0" +
if (date < 10)
date = "0" +
if (hour < 10)
hour = "0" +
if (minute < 10)
minute = "0" +
if (second
return parseInt(diff / (1000 * 60 * 60 * 24 * 365), 10) + "年前";
else if (diff / (1000 * 60 * 60 * 24) > 1)
return parseInt(diff / (1000 * 60 * 60 * 24), 10) + "天前";
else if (diff / (1000 * 60 * 60) > 1)
return parseInt(diff / (1000 * 60 * 60), 10) + "小时前";
else if (diff / (1000 * 60) > 1)
return parseInt(diff / (1000 * 60), 10) + "分钟前";
return "1分钟前";
//关注问题
function CareQuestion() {
var questionID = $("#hfQuestionID").val();
var methodName = "AddFocusQuestion";
var params = '{"questionID":"' + questionID + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
$("#btnCareQuestion").css("display", "none");
$("#btnCancelCareQuestion").css("display", "");
showWarningMsg("关注失败。");
}, false, true, true);
//取消关注问题
function CancelCareQuestion() {
var questionID = $("#hfQuestionID").val();
var methodName = "CancelFocus";
var params = '{"id":"' + questionID + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
$("#btnCareQuestion").css("display", "");
$("#btnCancelCareQuestion").css("display", "none");
showWarningMsg("取消关注失败。");
}, false, true, true);
//设为/取消FAQ
function SetFAQ(questionID, isfaq) {
var methodName = "SetFAQ";
var params = '{"questionID":"' + questionID + '", "isfaq":"' + isfaq + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
if (isfaq == 1) {
$("#spanSetFAQ").css("display", "none");
$("#spanCancelFAQ").css("display", "");
$("#spanSetFAQ").css("display", "");
$("#spanCancelFAQ").css("display", "none");
if (isfaq == 1) {
showWarningMsg("设为FAQ失败。");
showWarningMsg("取消FAQ失败。");
}, false, true, true);
//设为/取消精华
function SetEssence(questionID, isfaq) {
var methodName = "SetFAQ";
var params = '{"questionID":"' + questionID + '", "isfaq":"' + isfaq + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
if (isfaq == 1) {
$("#spanSetEssence").css("display", "none");
$("#spanCancelEssence").css("display", "");
$("#spanSetEssence").css("display", "");
$("#spanCancelEssence").css("display", "none");
if (isfaq == 1) {
showWarningMsg("设为精华失败。");
showWarningMsg("取消精华失败。");
}, false, true, true);
//编辑提问
function ShowAskQuestionEdit(id, type, forumID, isFAQ) {
var url = "";
if (type == "forum") {
if (isFAQ == "True") {
url = '/index/question/addfaqindex.htm?OP=Edit&id=' + id + '&forumID=' + forumID;
url = '/index/question/askquestionindex.htm?OP=Edit&id=' + id + '&forumID=' + forumID;
if (isFAQ == "True") {
url = '/study/question/addfaq.htm?OP=Edit&id=' +
url = '/study/question/askquestion.htm?OP=Edit&id=' +
window.open(url);
//编辑帖子
function ShowBBSEdit(id, forumID) {
var url = "";
url = '/index/question/createbbs.htm?OP=Edit&id=' + id + '&forumID=' + forumID;
window.open(url);
//关闭问题
function CloseQuestion(id) {
if (confirm("关闭此问题后别人无法回复此问题,确认关闭此问题?")) {
var methodName = "CloseQuestion";
var params = '{"questionID":"' + id + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
$("#divCloseQuestion").css("display", "none");
showWarningMsg("关闭问题失败。");
}, false, true, true);
//删除问题
function DelQuestion(id) {
if (confirm("删除此问题后别人无法回复此问题,确认删除此问题?")) {
var methodName = "DelQuestion";
var params = '{"questionID":"' + id + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result.indexOf("ok")>=0) {
var opener = window.
if (opener) {
opener.location.href = opener.location.
window.close();
showWarningMsg("删除问题失败。");
}, false, true, true);
//赞(顶)/取消赞(顶)
function SupportQuestion(div, id) {
var methodName = "SupportQuestion";
var params = '{"answerID":"' + id + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result != "") {
var Result = result.split(';');
if (Result[0] == "support") {
var html = Result[1];
$("#divLastSupportUser" + id).html(html);
//赞同来自。。。
var oldNum = $("#span" + id).text();
var newNum = parseInt($("#span" + id).text()) + 1;
$("#span" + id).text(newNum.toString());
$(div).removeClass("good");
$(div).addClass("good_disabled");
div.onmouseout = function () { this.className = 'good_disabled'; };
$(div).next().next().removeClass("bad_disabled");
$(div).next().next().addClass("bad");
var divIsBad = document.getElementById("divIsBad" + id);
divIsBad.onmouseout = function () { this.className = 'bad'; };
var html = Result[1];
$("#divLastSupportUser" + id).html(html);
//赞同来自。。。
var oldNum = $("#span" + id).text();
var newNum = parseInt($("#span" + id).text()) - 1;
$("#span" + id).text(newNum.toString());
$(div).removeClass("good_disabled");
$(div).addClass("good");
div.onmouseout = function () { this.className = 'good'; };
}, false, true, false);
//踩/取消踩回答
function UnSupportQuestion(div, id) {
var methodName = "UnSupportQuestion";
var params = '{"answerID":"' + id + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result != "") {
if (result == "unSupport") {
$(div).removeClass("bad");
$(div).addClass("bad_disabled");
div.onmouseout = function () { this.className = 'bad_disabled'; };
else if (result == "unSupportAndDel") {
var oldNum = $("#span" + id).text();
var newNum = parseInt($("#span" + id).text()) - 1;
$("#span" + id).text(newNum.toString());
$(div).removeClass("bad");
$(div).addClass("bad_disabled");
div.onmouseout = function () { this.className = 'bad_disabled'; };
$(div).prev().prev().removeClass("good_disabled");
$(div).prev().prev().addClass("good");
var divIsGood = document.getElementById("divIsGood" + id);
divIsGood.onmouseout = function () { this.className = 'good'; };
$(div).removeClass("bad_disabled");
$(div).addClass("bad");
div.onmouseout = function () { this.className = 'bad'; };
}, false, true, false);
//对我没有帮助/撤销没有帮助
function IsHelpMe(id) {
var methodName = "IsHelpMe";
var params = '{"answerID":"' + id + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
$("#spanHelp" + id).text("撤销没有帮助");
else if (result == "cancel") {
$("#spanHelp" + id).text("对我没有帮助");
}, false, true, false);
//分享问题
var temp = 1;
var control = "";
function ShareAnswer(obj, title, contentID, id) {
title = decodeURI(title);
if (control != obj.id) {
var c = document.getElementById(contentID).innerHTML;
var area = $(obj).get(0).getBoundingClientRect();
$("#shareAnswer" + id).css("left", area.left + $(window).scrollLeft());
$("#shareAnswer" + id).css("top", area.top + 20 + $(window).scrollTop());
var share = new ShareToMainSite();
share.render("question" + id, "", title, c);
$(".sharetext").html("");
$("#shareAnswer" + id).show();
loadShareOnClick(id);
if (temp == 1) {
var c = document.getElementById(contentID).innerHTML;
var area = $(obj).get(0).getBoundingClientRect();
$("#shareAnswer" + id).css("left", area.left + $(window).scrollLeft());
$("#shareAnswer" + id).css("top", area.top + 20 + $(window).scrollTop());
var share = new ShareToMainSite();
share.render("question" + id, "", title, c);
$(".sharetext").html("");
$("#shareAnswer" + id).show();
loadShareOnClick(id);
$("#shareAnswer" + id).hide();
control = obj.
//更新分享问题数量
function loadShareOnClick(id) {
var arrHtmlTag = document.getElementById("question" + id).getElementsByTagName("a");
for (var i = 0; i = totalCommentCount) {
$("#linkMoreFive" + id).css("display", "none");
$("#linkMoreFive" + id).css("display", "block");
var panel = $("#divComment" + id);
var methodName = "ShowAnswerComments";
var params = '{"answerID":"' + id + '","pageSize":"' + pageSize + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
var jsonObj = "";
if (result && result != "[]") {
jsonObj = eval("(" + result + ")");
RenderCommentPanel(id, jsonObj);
}, true, true, true);
panel.css("display", "block");
//输出评论内容
function RenderCommentPanel(id, jsonObj) {
var userID = $("#hfUserID").val();
var imgUrl = '/|||';
imgUrl = imgUrl.replace("|||", "");
var defaultImgUrl = '/yxt/systemfiles/defaultimages/photo.gif';
var html = "";
if (jsonObj.length > 0) {
for (var i = 0; i < jsonObj. i++) {
var photoUrl = "";
if (jsonObj[i].UserPhotoUrl == "") {
photoUrl = defaultImgU
photoUrl = imgUrl + jsonObj[i].UserPhotoU
html += '' +
jsonObj[i].CommentContent + '' +
$("#divCommentList" + id).html(html);
//回复评论
function ReturnAnswer(id, userName, answerID) {
$("#txtAnswerOne" + answerID).val("回复 " + userName + ":");
$("#hfCurrentCommentID").val(id);
//回复回答提交
function submitCommentPanel(answerID, sourceTitle, commentedUserID, commentedCName, viewUrl) {
var content = $("#txtAnswerOne" + answerID).val();
var commentID = $("#hfCurrentCommentID").val();
var commentContent = $("#hfCurrentCommentContent").val();
if (content != null) {
if (commentID != "") {
var methodName = "ReplyComment";
var params = '{"masterID":"' + commentID + '","commentContent":"' + commentContent + '","content":"' + content + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
showCommentPanel(answerID, $("#hfPageSize" + answerID).val());
$("#hfCurrentCommentID").val("");
}, false, false, false);
var methodName = "PublishComment";
var params = '{"masterID":"' + answerID + '","type":"Question","score":"0","content":"' + content + '","sourceTitle":"' + sourceTitle + '","sourceUrl":"' + viewUrl + '","commentedUserID":"' + commentedUserID + '","commentedCName":"' + commentedCName + '","status":"Approved"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result != "") {
var returnResult = result.split("|");
if (returnResult[0] == "1") {
var oldCount = $("#hfTotalCommentCount" + answerID).val();
var newCount = parseInt(oldCount) + 1;
$("#hfTotalCommentCount" + answerID).val(newCount);
if (newCount == 0) {
$("#spanTotalCommentCount" + answerID).text("添加评论");
$("#spanTotalCommentCount" + answerID).text(newCount + "条评论");
showCommentPanel(answerID, $("#hfPageSize" + answerID).val());
showWarningMsg(returnResult[1]);
} catch (e) { }
}, false, false, false);
showWarningMsg("请输入评论内容。");
//删除评论
function DelReturnAnswer(answerID, id) {
var methodName = "DeleteComment";
var params = '{"ID":"' + id + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
var oldCount = $("#hfTotalCommentCount" + answerID).val();
var newCount = parseInt(oldCount) - 1;
$("#hfTotalCommentCount" + answerID).val(newCount);
if (newCount == 0) {
$("#spanTotalCommentCount" + answerID).text("添加评论");
$("#spanTotalCommentCount" + answerID).text(newCount + "条评论");
showCommentPanel(answerID, $("#hfPageSize" + answerID).val());
}, false, true, true);
//显示更多五条
function MoreFive(id) {
var oldPageSize = $("#hfPageSize" + id).val();
var newPageSize = parseInt(oldPageSize) + 5;
$("#hfPageSize" + id).val(newPageSize);
showCommentPanel(id, newPageSize);
//根据课程ID显示话题设置
function ShowTopicSetByCourseID(courseID, obj) {
if (obj) {
var area = obj.getBoundingClientRect();
$('#dvSelectTopic').css("left", area.left + $(window).scrollLeft());
$('#dvSelectTopic').css("top", area.top + 22 + $(window).scrollTop());
$('#dvSelectTopic').show();
var title = $("#txtTopic").val();
var methodName = "ShowSetTopicByCourseID";
var params = '{"courseID":"' + courseID + '","title":"' + title + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
var jsonObj = "";
if (result && result != "[]") {
jsonObj = eval("(" + result + ")");
var hfTopicsJson = "";
for (var i = 0; i < jsonObj. i++) {
hfTopicsJson += jsonObj[i].ID + "," + jsonObj[i].Name + "|";
$("#hfTopicsJson").val(hfTopicsJson);
RenderTopicPanel(1);
var html = "";
html += '' +
'暂无话题信息。' +
$("#divTopicContent").html(html);
$("#preandnext").css("display", "none");
}, false, true, true);
//根据问吧版块ID显示话题设置
function ShowTopicSetByForumID(forumID, obj) {
if (obj) {
var area = obj.getBoundingClientRect();
$('#dvSelectTopic').css("left", area.left + $(window).scrollLeft());
$('#dvSelectTopic').css("top", area.top + 22 + $(window).scrollTop());
$('#dvSelectTopic').show();
var title = $("#txtTopic").val();
var methodName = "ShowSetTopicByForumID";
var params = '{"forumID":"' + forumID + '","title":"' + title + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
var jsonObj = "";
if (result && result != "[]") {
jsonObj = eval("(" + result + ")");
var hfTopicsJson = "";
for (var i = 0; i < jsonObj. i++) {
hfTopicsJson += jsonObj[i].ID + "," + jsonObj[i].Name + "|";
$("#hfTopicsJson").val(hfTopicsJson);
RenderTopicPanel(1);
var html = "";
html += '' +
'暂无话题信息。' +
$("#divTopicContent").html(html);
$("#preandnext").css("display", "none");
}, false, true, true);
//输出话题内容
function RenderTopicPanel(pageIndex) {
var data = $("#hfTopicsJson").val().split('|');
var dataCount = data.length - 1;
//话题总数
var html = "";
var count = 0;
$("#hfPageIndex").val(pageIndex);
var pageCount = 0;
$("#spanTopicCount").text(dataCount);
//话题总数
if ((dataCount / 12) > parseInt(dataCount / 12)) {
pageCount = parseInt(dataCount / 12) + 1;
pageCount = dataCount / 12;
$("#hfPageCount").val(pageCount);
if (dataCount <= 12) {
//判断上一组/下一组按钮可见
$("#preandnext").css("display", "none");
$("#preandnext").css("display", "block");
if (pageIndex
var hfTopicsJson = "";
for (var i = 0; i
(pageIndex - 1) * 12 && count <= pageIndex * 12) {
var id = (data[i].split(','))[0];
var name = (data[i].split(','))[1];
html += '' +
if ($("#hfTopicIDs").val().indexOf(id) >= 0) {
html += '' +
html += '' +
html += '' +
'暂无话题信息。' +
$("#preandnext").css("display", "none");
$("#divTopicContent").html(html);
function PreTopics() {
var pageIndex = parseInt($("#hfPageIndex").val());
pageIndex -= 1;
//改变当前页序号
$("#hfPageIndex").val(pageIndex);
RenderTopicPanel(pageIndex);
function NextTopics() {
var pageIndex = parseInt($("#hfPageIndex").val());
pageIndex += 1;
//改变当前页序号
$("#hfPageIndex").val(pageIndex);
RenderTopicPanel(pageIndex);
//话题选择chechbox
function ClickSelf(id) {
var count = parseInt($("#hfTopicSelCount").val());
var selTopic = $("#hfTopicIDs").val();
var selTopicNames = $("#hfTopicNames").val();
if ($(id).attr("checked") == true) {
if (count >= 4) {
showWarningMsg("最多可选择 4 个话题。");
$(id).attr("checked", false);
count += 1;
$("#hfTopicSelCount").val(count);
if (selTopic.indexOf($(id).val()) = 0) {
var removeID = $(id).val();
$("#hfTopicIDs").val(selTopic.replace(removeID + ",", ""));
var removeName = $(id).next().val();
$("#hfTopicNames").val(selTopicNames.replace(removeName + "∑", ""));
//改变当前取消选择话题的颜色
$(id).parent().next().children().removeClass("messagearea2select");
$(id).parent().next().children().addClass("messagearea2");
$(id).parent().next().children().mouseout(function () { this.className = 'messagearea2'; });
$(id).parent().next().children().mousemove(function () { this.className = 'messagearea2select'; });
//确定选择话题
function SubmitSelTopics(id) {
var selTopics = $("#hfTopicIDs").val();
var selTopicNames = $("#hfTopicNames").val();
var methodName = "SubmitSelTopics";
var params = '{"id":"' + id + '","topics":"' + selTopics + '","topicNames":"' + selTopicNames + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
$("#dvSelectTopic").hide();
var html = "";
if (selTopics != "") {
var topicIDList = selTopics.split(',');
var topicNameList = selTopicNames.split('∑');
for (var i = 0; i < topicIDList. i++) {
if (topicIDList[i] != "") {
html += '' +
if (topicNameList[i] == "") {
html += '';
html += '';
html += '' +
$(".labelcontent").html(html);
showWarningMsg("选择话题失败。");
}, false, true, true);
//搜索话题
function SearchTopics(type, groupID) {
var title = $("#txtTopic").val();
if (type == "forum") {
ShowTopicSetByForumID(groupID);
ShowTopicSetByCourseID(groupID);
自助挂号机“上岗”两三分钟内就可完成挂号缴费&&&悬赏分(0)&
&&&&平常大家到医院看病,无论是挂号还是缴费往往都是需要排队的。但是挂号、缴费时的长龙,让许多市民觉得麻烦。但是就在最近,很多的医院把开始把投入使用,使“看病排长队”的问题有了缓解的好办法。&&&&“先选择挂号,再把就诊卡插入槽口,选择要挂号的科室类型,按确认完成,就可以直接去医生那儿看病了。”一几位导医志愿者正在引导患者使用医院自助挂号机。根据机器的提示音步步操作,不到三分钟就完成了挂号。&&&&成功后,医院自助挂号机“吐”出一张挂号凭证。“以后挂号不用排长队了,还能付款,真方便!”拿到挂号单,一位中年女士乐呵呵地说。&&&&能有效地实现了缴费找零、发放回收IC卡、自助挂号、身份信息扫描、信息查询的一条龙服务,有效缓解排队的问题。&&&&相关医院负责人说,对于医院自助挂号机的使用,许多年轻人适应很快,而老年人在志愿者帮助下也能顺利完成。&&&&本文出处:
人浏览 0 人关注
共 0 个回复
不能回复自己发布的问题, 你可以修改问题内容
您已回复此信息,在 10 分钟内不能回复!
此问题,无法回复!
查看更多回复或要回复此信息请先或
0个关注&&&&
|&&&& 0个粉丝
暂无相关数据
客服热线:010-
扫一扫,加官方微信
服务咨询电话
400-070-7166记者体验通大附院自助挂号一体机 挂号缴费一分钟搞定_0513南通生活网
记者体验通大附院自助挂号一体机 挂号缴费一分钟搞定
10日,求医者在通大附院利用自助挂号缴费系统办理手续。记者 江建华摄 有过就医经历的市民都知道,在医院挂号、缴费都要排长龙,需要花不少时间。 10日,记者来到通大附院体验自助挂号,挂号、缴费均只用了不到一分钟即搞定,免去了排队的麻烦。 当日下午3点
10日,求医者在通大附院利用自助挂号缴费系统办理手续。记者 江建华摄
有过就医经历的市民都知道,在医院挂号、缴费都要排长龙,需要花不少时间。 10日,记者来到通大附院体验自助挂号,挂号、缴费均只用了不到一分钟即搞定,免去了排队的麻烦。
当日下午3点,记者来到通大附院门诊大厅,挂号缴费处有20余人在排队。来到自助挂号一体机,根据显示器提示,记者插入医保卡、选择科室、医生,只花了不到1分钟,挂号凭证便打印成功。而这时,和记者同时进入门诊大厅的患者仍在排队挂号。根据凭单上的信息,记者来到门诊5楼,半个多小时后,记者就诊结束。回到一楼自助挂号区,再插入医保卡,大约30秒后即支付成功。挂号、缴费的时间一共只有一分多钟,比排队缴费至少节约了10分钟以上。记者在门诊大厅看到,使用自助挂号机的大多为年轻人,也有一些中老年患者在导医的帮助下尝试使用。“用自助挂号机挂号,就像使用银行的取款机一样。”通大附院门诊部主任潘丞中介绍,自助挂号一体机是通大附院与工商银行南通分行联合推出的一项服务,它将银行的信息系统与医院的信息系统进行连接,自费患者使用任何一种银联卡、医保患者使用医保卡,就能在机器终端上方便快捷地实现现场挂号、预约挂号、自助缴费等,避免就医市民在窗口排长队、重复往返排队等麻烦。使用自助机后,患者非诊疗等候时间可以缩短一半以上。首批10余台自助挂号一体机已于3月1日“上岗”试运行,主要分布在门诊一楼大厅,不久将在影像楼、急诊楼、肝炎门诊、生殖助孕中心等场所安装。
潘丞中介绍,除了用医保卡挂号、缴费,非首次来通大附院就诊的自费患者可在一体机上扫描病历卡上的条形码,随后插入任何一种银联卡便可支付费用。如果医保卡上余额不足或者缴费项目不属于医保范围,还可以使用银联卡继续支付。挂号机不仅可以使用银行借记卡,还可使用信用卡进行透支支付,整个过程不需要缴纳手续费。他提醒,患者首次就医涉及信息登记,为确保患者信息录入完整且不出错,首次到通大附院就医的患者仍需到窗口办理。由于自助挂号一体机尚处在试运行阶段,慢特病(高血压、糖尿病、血液透析)、生育保险门诊等就医患者还需到人工窗口进行挂号。
记者 袁晓婕 通讯员 邵勇林
转载请注明出处。
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。
南通大中专院校军训会操 展现新时代大学生风采
中国青年报:南通大学一新生带着病母上学
中国青年报:南通大学一新生带着病母上学
省第九届残运会南通健儿获得18金

我要回帖

更多关于 自助缴费机 的文章

 

随机推荐