Commit 773e663d by zujiaozhang

'修复收起键盘页面不恢复问题'

parent cb1293a2
......@@ -30,6 +30,10 @@ define(['zepto', 'medtap', 'mui', 'mui.picker'], function($, medtap, mui) { 
// 医生对检测结果的说明
testDescription:'',
init: function(){
// 解决键盘收起页面不恢复问题
$('textarea').on('blur',function(){
window.scroll(0,0);
});
var text = geneDetection.questionNo + '、最近一个月有没有做过基因检测?'
$('.content_body_title').text(text)
// 点击删除图片
......
......@@ -29,7 +29,10 @@ define(['zepto', 'medtap', 'mui', 'mui.picker'], function($, medtap, mui) { 
// 6题数据文字
dataText:'',
init:function(){
// 解决键盘收起页面不恢复问题
$('textarea').on('blur',function(){
window.scroll(0,0);
});
switch(generalPage.questionId){
case '6':
var text = generalPage.questionNo + '、请拍照上传血液检查结果'
......
......@@ -19,6 +19,10 @@ define(['zepto', 'medtap', 'mui', 'mui.picker'], function($, medtap, mui) { 
// 具体疗法和药物
specificTherapy: '',
init:function(){
// 解决键盘收起页面不恢复问题
$('textarea').on('blur',function(){
window.scroll(0,0);
});
var text = otherTreatment.questionNo + '、是否在联合其他治疗?'
$('.content_body_title').text(text)
// 用户点击了无
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment