Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wechat_lung
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hanpeng
wechat_lung
Commits
3b06fdc9
Commit
3b06fdc9
authored
Aug 21, 2019
by
hanpeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-mark-通用文件修改,增加登录校验文件
parent
5fe2a1aa
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
212 additions
and
11 deletions
+212
-11
beforeSubmitForLung.js
beforeSubmitForLung.js
+178
-0
medtap_core_wx.js
medtap_core_wx.js
+32
-9
wechat_Reset.css
wechat_Reset.css
+2
-2
No files found.
beforeSubmitForLung.js
0 → 100644
View file @
3b06fdc9
/**
* 表单页面点击提交按钮,跳转到登录/注册页面,完成后继续当前操作
*/
define
([
'zepto'
,
'https://review-formal.iplusmed.com/Common/javaScript/medtap-core-dev.js'
],
function
(
$
,
medtapCore
)
{;
(
function
(
w
,
d
)
{
var
oldAlert
=
window
.
alert
;
window
.
alert
=
function
(
msg
)
{
var
iframe
=
document
.
createElement
(
"IFRAME"
);
iframe
.
style
.
display
=
"none"
;
// iframe.setAttribute("src", 'data:text/plain,');
document
.
documentElement
.
appendChild
(
iframe
);
window
.
frames
[
0
].
window
.
alert
(
msg
);
iframe
.
parentNode
.
removeChild
(
iframe
);
}
var
options
=
{
id
:
'_beforeSubmitBox'
,
getInfo
:
false
,
wechatId
:
''
,
doctorId
:
medtapCore
.
getRequest
(
'doctorId'
),
inviteCode
:
medtapCore
.
getRequest
(
'inviteCode'
),
agencyId
:
medtapCore
.
getRequest
(
'agencyId'
),
operationType
:
medtapCore
.
getRequest
(
'operationType'
),
businessDetail
:
medtapCore
.
getRequest
(
'businessDetail'
),
channelId
:
medtapCore
.
getRequest
(
'channelId'
),
/*校验的参数*/
check
:
[
'userId'
],
/*需要校验的值*/
valueForCheck
:
{},
/*跳转的链接*/
url
:
'https://review-formal.iplusmed.com/wechatForLungCancer/dev/wechat_lung_login/formLogin.html'
,
success
:
function
()
{
console
.
log
(
'子页面success'
);
},
error
:
function
()
{
console
.
log
(
'子页面error'
);
}
};
var
validate
=
{
box
:
null
,
init
:
function
()
{
validate
.
setCallBack
();
if
(
options
.
getInfo
)
{
validate
.
getUserInfo
();
}
else
{
var
flg
=
false
;
for
(
var
key
in
options
.
valueForCheck
)
{
flg
=
true
;
}
if
(
flg
)
{
validate
.
check
(
options
.
valueForCheck
);
}
else
{
throw
new
Error
(
'请将getInfo属性设置为true,或设置valueForCheck属性'
);
}
}
},
/*创建用于验证的iframe*/
createIframe
:
function
()
{
var
_bg
=
d
.
createElement
(
'div'
),
_iframe
=
d
.
createElement
(
'iframe'
),
_close
=
d
.
createElement
(
'div'
);
_bg
.
setAttribute
(
'style'
,
'width: 100%;height: 100%;position: fixed;top: 0;left: 0;z-index: 1000;background-color: rgba(0,0,0,.3);'
);
_bg
.
setAttribute
(
'id'
,
options
.
id
);
_iframe
.
setAttribute
(
'style'
,
'width: 6.7rem;height: 90%;background-color: white;position: absolute;top: 5%;left: 0.40rem;border: none'
);
_iframe
.
setAttribute
(
'src'
,
options
.
url
+
'?v=2.0.0&wechatId='
+
options
.
wechatId
+
'&doctorId='
+
options
.
doctorId
+
'&inviteCode='
+
options
.
inviteCode
+
'&agencyId='
+
options
.
agencyId
+
'&operationType='
+
options
.
operationType
+
'&businessDetail='
+
options
.
businessDetail
+
'&channelId='
+
options
.
channelId
);
_iframe
.
setAttribute
(
'id'
,
'_beforeSubmitIframe'
);
_close
.
setAttribute
(
'style'
,
'position: absolute;top: 5%;right: 5%;width: 0.8rem;height: 0.8rem;color: #e0e0e0;z-index: 100;font-size: 0.40rem;text-align: center;line-height: 0.8rem;'
);
_close
.
innerHTML
=
'X'
;
_close
.
onclick
=
function
()
{
if
(
d
.
getElementById
(
'_beforeSubmitIframe'
).
getAttribute
(
'src'
).
indexOf
(
'userLicens.html'
)
>
-
1
)
{
d
.
getElementById
(
'_beforeSubmitIframe'
).
setAttribute
(
'src'
,
options
.
url
+
'?v=1.0.0&wechatId='
+
options
.
wechatId
+
'&doctorId='
+
options
.
doctorId
+
'&inviteCode='
+
options
.
inviteCode
+
'&agencyId='
+
options
.
agencyId
+
'&operationType='
+
options
.
operationType
+
'&businessDetail='
+
options
.
businessDetail
+
'&channelId='
+
options
.
channelId
);
return
;
}
if
(
confirm
(
'需要登录/注册才能继续提交。是否确定离开?'
))
{
w
.
_beforeSubmitClose
();
}
};
_bg
.
appendChild
(
_close
);
_bg
.
appendChild
(
_iframe
);
d
.
body
.
appendChild
(
_bg
);
validate
.
box
=
_bg
;
},
/*回调函数设置*/
setCallBack
:
function
()
{
w
.
_beforeSubmitSuccess
=
options
.
success
;
w
.
_beforeSubmitError
=
options
.
error
;
w
.
_beforeSubmitClose
=
function
()
{
d
.
getElementById
(
options
.
id
).
style
.
display
=
'none'
;
//parent.location.reload();
}
},
/*判断值是否存在*/
check
:
function
(
info
)
{
var
flag
=
true
;
for
(
var
key
in
options
.
check
)
{
if
(
!
(
info
.
hasOwnProperty
(
options
.
check
[
key
])
&&
(
!!
info
[
options
.
check
[
key
]]
||
info
[
options
.
check
[
key
]]
===
0
)))
{
flag
=
false
;
break
;
}
if
(
options
.
check
[
key
]
===
'mobile'
)
{
var
reg
=
/^1
[
0-9
]{10}
$/
;
flag
=
reg
.
test
(
info
[
options
.
check
[
key
]]);
if
(
!
flag
)
break
;
}
}
/*校验失败*/
if
(
!
flag
)
{
var
_el
=
d
.
getElementById
(
options
.
id
);
!!
_el
?
(
_el
.
style
.
display
=
'block'
)
:
validate
.
createIframe
();
}
else
{
/*校验成功*/
w
.
_beforeSubmitSuccess
();
}
},
getUserInfo
:
function
()
{
var
wechatId
=
medtapCore
.
getRequest
(
'wechatId'
);
var
token
=
localStorage
.
wxLungToken
;
wechatId
=
!!
wechatId
?
wechatId
:
(
localStorage
.
hasOwnProperty
(
'appUserData'
)
?
JSON
.
parse
(
localStorage
[
'appUserData'
]).
wechatId
:
(
localStorage
.
hasOwnProperty
(
'medtapGlobalData'
)
?
JSON
.
parse
(
localStorage
[
'medtapGlobalData'
]).
wechatId
:
''
)
);
$
.
ajax
({
url
:
'https://devgw.medtap.cn/wechat/user/getWechatUser'
,
headers
:
{
'apptype'
:
'wechat_lung'
,
'user-os'
:
'wechat'
,
'token'
:
token
},
type
:
'get'
,
data
:
medtapCore
.
setToken
({
wechatId
:
wechatId
}),
success
:
function
(
data
)
{
if
(
data
.
success
==
true
)
{
var
info
=
data
.
content
.
wechatUser
;
validate
.
check
(
info
);
}
else
{
alert
(
data
.
resultDesc
);
}
},
error
:
function
(){
alert
(
'获取个人信息失败,请重试'
);
}
});
}
};
var
api
=
{
config
:
function
(
opts
)
{
if
(
!
opts
)
return
options
;
for
(
var
key
in
opts
)
{
options
[
key
]
=
opts
[
key
];
}
return
this
;
},
listen
:
function
()
{
if
(
typeof
elem
===
'string'
)
{
var
elems
=
document
.
querySelectorAll
(
elem
),
i
=
elems
.
length
;
while
(
i
--
)
{
listen
(
elems
[
i
]);
}
return
;
}
injector
(
elem
,
options
.
splitter
);
return
this
;
},
init
:
function
()
{
validate
.
init
();
}
}
this
.
BeforeSubmit
=
api
;
})(
window
,
document
);
return
BeforeSubmit
;
});
\ No newline at end of file
medtap_core_wx.js
View file @
3b06fdc9
...
...
@@ -8,7 +8,7 @@ define(['zepto', 'md5'], function($, md5) {
var
headers
=
{};
headers
[
'apptype'
]
=
'wechat_lung'
;
headers
[
'user-os'
]
=
'wechat'
;
headers
[
'token'
]
=
localStorage
.
wxLungToken
;
return
headers
;
}
...
...
@@ -41,14 +41,25 @@ define(['zepto', 'md5'], function($, md5) {
//loading效果
var
loading
=
function
(
isOpen
)
{
var
html
=
'<div class="mod"><div class="cssload-spin-box"></div></div>'
;
$
(
'body'
).
append
(
html
);
if
(
isOpen
==
1
)
{
$
(
'.mod'
).
show
();
var
a
=
$
(
'.mod'
);
if
(
a
.
attr
(
"has"
))
{
if
(
isOpen
==
1
)
{
$
(
'.mod'
).
show
();
}
else
{
setTimeout
(
function
()
{
$
(
'.mod'
).
hide
();
},
1000
)
}
}
else
{
setTimeout
(
function
()
{
$
(
'.mod'
).
hide
();
},
1000
)
var
html
=
'<div class="mod" has="true"><div class="cssload-spin-box"></div></div>'
;
$
(
'body'
).
append
(
html
);
if
(
isOpen
==
1
)
{
$
(
'.mod'
).
show
();
}
else
{
setTimeout
(
function
()
{
$
(
'.mod'
).
hide
();
},
1000
)
}
}
}
...
...
@@ -78,6 +89,17 @@ define(['zepto', 'md5'], function($, md5) {
},
time
);
}
//pop提示
var
winPop
=
function
(
msg
)
{
//用于pop提示效果的方法,提示文字为参数如$.winPop("加载失败");
var
b
=
$
(
"body"
);
b
.
append
(
"<div class='winPop'>"
+
msg
+
"</div>"
);
var
a
=
setTimeout
(
function
()
{
var
a
=
$
(
".winPop"
);
a
.
remove
();
clearTimeout
(
a
);
},
3000
);
}
//请求函数
var
submitAjax
=
function
(
opts
)
{
//请求参数
...
...
@@ -114,7 +136,7 @@ define(['zepto', 'md5'], function($, md5) {
}
})
}
//模块暴露
return
{
...
...
@@ -123,6 +145,7 @@ define(['zepto', 'md5'], function($, md5) {
pushWindow
:
pushWindow
,
loading
:
loading
,
toast
:
toast
,
winPop
:
winPop
,
submitAjax
:
submitAjax
}
})
wechat_Reset.css
View file @
3b06fdc9
...
...
@@ -374,8 +374,8 @@ body {
position
:
fixed
;
background
:
rgba
(
0
,
0
,
0
,
0.7
);
color
:
#fff
;
font-size
:
0.
5
rem
;
line-height
:
0.
5
rem
;
font-size
:
0.
4
rem
;
line-height
:
0.
4
rem
;
padding
:
0.3rem
;
border-radius
:
0.1rem
;
left
:
50%
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment