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
df65daba
Commit
df65daba
authored
Aug 26, 2019
by
hanpeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-mark-扫码向医生报道页面UI,患者论坛test环境部署
parent
2e3bb9c3
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
961 additions
and
57 deletions
+961
-57
cardDetail.css
medtap_bbs_lung/css/cardDetail.css
+34
-0
replyDetail.css
medtap_bbs_lung/css/replyDetail.css
+1
-0
cardDetail.js
medtap_bbs_lung/javaScript/cardDetail.js
+65
-20
index.js
medtap_bbs_lung/javaScript/index.js
+7
-7
myCardList.js
medtap_bbs_lung/javaScript/myCardList.js
+27
-0
newCard.js
medtap_bbs_lung/javaScript/newCard.js
+2
-2
replyDetail.js
medtap_bbs_lung/javaScript/replyDetail.js
+47
-2
cardDetail.html
medtap_bbs_lung/pages/cardDetail.html
+10
-0
myCardList.html
medtap_bbs_lung/pages/myCardList.html
+19
-0
basicUserInfo.css
wechat_lung_push_doctor/css/basicUserInfo.css
+62
-15
createPatientInfo.css
wechat_lung_push_doctor/css/createPatientInfo.css
+127
-0
createTreatmentInfo.css
wechat_lung_push_doctor/css/createTreatmentInfo.css
+140
-0
treamentWay.css
wechat_lung_push_doctor/css/treamentWay.css
+24
-0
post_ picture_btn@2x.png
wechat_lung_push_doctor/images/post_ picture_btn@2x.png
+0
-0
post_delete_btn@2x.png
wechat_lung_push_doctor/images/post_delete_btn@2x.png
+0
-0
post_title_bg@2x.png
wechat_lung_push_doctor/images/post_title_bg@2x.png
+0
-0
createPatientInfo.js
wechat_lung_push_doctor/javaScript/createPatientInfo.js
+6
-0
createTreatmentInfo.js
wechat_lung_push_doctor/javaScript/createTreatmentInfo.js
+6
-0
basicUserInfo.html
wechat_lung_push_doctor/pages/basicUserInfo.html
+55
-11
createPatientInfo.html
wechat_lung_push_doctor/pages/createPatientInfo.html
+170
-0
createTreatmentInfo.html
wechat_lung_push_doctor/pages/createTreatmentInfo.html
+119
-0
treamentWay.html
wechat_lung_push_doctor/pages/treamentWay.html
+40
-0
No files found.
medtap_bbs_lung/css/cardDetail.css
View file @
df65daba
...
...
@@ -262,6 +262,8 @@ body {
padding-left
:
0.24rem
;
font-family
:
PingFangSC
;
font-weight
:
400
;
/* float: left;
border: none; */
}
.footer_btn
.btn_icon
img
{
width
:
0.64rem
;
...
...
@@ -284,3 +286,34 @@ body {
right
:
-0.1rem
;
top
:
-0.05rem
;
}
.comment_btn
{
width
:
100%
;
position
:
fixed
;
top
:
0
;
background
:
#F9F9F9
;
padding
:
0.16rem
;
display
:
none
;
z-index
:
30
}
.comment_btn
.reply_input
{
width
:
5.74rem
;
height
:
0.72rem
;
float
:
left
;
border-radius
:
0.08rem
;
border
:
none
;
padding-left
:
0.2rem
;
font-size
:
0.32rem
;
}
.comment_btn
.reply_btn
{
width
:
1.28rem
;
height
:
0.72rem
;
float
:
left
;
margin-left
:
0.16rem
;
background
:
#37D488
;
color
:
#ffffff
;
line-height
:
0.72rem
;
font-size
:
0.32rem
;
text-align
:
center
;
border-radius
:
0.1rem
;
}
\ No newline at end of file
medtap_bbs_lung/css/replyDetail.css
View file @
df65daba
...
...
@@ -127,6 +127,7 @@ body {
border-radius
:
0.08rem
;
border
:
none
;
padding-left
:
0.2rem
;
font-size
:
0.32rem
;
}
.footer_btn
.reply_btn
{
width
:
1.28rem
;
...
...
medtap_bbs_lung/javaScript/cardDetail.js
View file @
df65daba
...
...
@@ -28,6 +28,22 @@ define(['zepto','medtap'],function($,medtap){
return
}
});
$
(
'input'
).
on
(
'blur'
,
function
(){
$
(
'body'
).
scrollTop
(
0
);
});
$
(
'.btn_do_comment'
).
on
(
'click'
,
function
(){
$
(
'.content_mod'
).
show
();
$
(
'.comment_btn'
).
show
();
$
(
'.reply_input'
).
focus
();
$
(
'.content_mod'
).
on
(
'click'
,
function
(){
$
(
this
).
hide
();
$
(
'.comment_btn'
).
hide
();
});
$
(
'.reply_btn'
).
on
(
'click'
,
function
(){
card
.
replyPublish
();
})
})
},
bindEve
:
function
(){
//为TA加油
...
...
@@ -69,7 +85,7 @@ define(['zepto','medtap'],function($,medtap){
getCardDetail
:
function
(){
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/operation/pubbbs/publish/'
+
card
.
cardId
,
url
:
'https://
test
devgw.medtap.cn/operation/pubbbs/publish/'
+
card
.
cardId
,
type
:
'GET'
,
async
:
false
,
data
:{
...
...
@@ -104,6 +120,12 @@ define(['zepto','medtap'],function($,medtap){
var
newNum
=
parseInt
(
card
.
upCount
)
+
1
;
$
(
'.fabulous_desc'
).
html
(
newNum
);
}
//收藏状态
if
(
detailInfo
.
collectStatus
==
0
){
$
(
'.collect'
).
children
(
'img'
).
attr
(
'src'
,
'../images/post_like_buttn@2x.png'
);
}
else
if
(
detailInfo
.
collectStatus
==
1
){
$
(
'.collect'
).
children
(
'img'
).
attr
(
'src'
,
'../images/post_like red_buttn@2x.png'
);
}
}
}
})
...
...
@@ -112,7 +134,7 @@ define(['zepto','medtap'],function($,medtap){
getCommentList
:
function
(){
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/operation/pubbbs/publishComment'
,
url
:
'https://
test
devgw.medtap.cn/operation/pubbbs/publishComment'
,
type
:
'GET'
,
async
:
false
,
data
:
{
...
...
@@ -128,12 +150,6 @@ define(['zepto','medtap'],function($,medtap){
var
replyList
=
res
.
content
.
list
;
if
(
replyList
.
length
==
0
){
card
.
hasMore
=
false
;
/* setTimeout(function() {
medtap.toast({
message: '没有更多了',
time: 2000
})
}, 1000); */
if
(
card
.
offset
!=
1
){
setTimeout
(
function
()
{
medtap
.
toast
({
...
...
@@ -287,7 +303,7 @@ define(['zepto','medtap'],function($,medtap){
var
status
;
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/operation/pubbbs/publish/up'
,
url
:
'https://
test
devgw.medtap.cn/operation/pubbbs/publish/up'
,
type
:
'POST'
,
async
:
false
,
contentType
:
'application/json'
,
...
...
@@ -308,7 +324,7 @@ define(['zepto','medtap'],function($,medtap){
var
result
;
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/operation/pubbbs/publishComment/up'
,
url
:
'https://
test
devgw.medtap.cn/operation/pubbbs/publishComment/up'
,
type
:
'POST'
,
async
:
false
,
contentType
:
'application/json'
,
...
...
@@ -329,7 +345,7 @@ define(['zepto','medtap'],function($,medtap){
var
collectResult
;
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/operation/pubbbs/publishCollect'
,
url
:
'https://
test
devgw.medtap.cn/operation/pubbbs/publishCollect'
,
type
:
'POST'
,
async
:
false
,
contentType
:
'application/json'
,
...
...
@@ -340,19 +356,48 @@ define(['zepto','medtap'],function($,medtap){
medtap
.
loading
(
0
);
if
(
res
.
success
==
true
){
collectResult
=
res
.
content
.
collectStatus
;
/* if(collectStatus == 1){
//收藏成功
setTimeout(function() {
medtap.toast({
message: '收藏成功',
time: 2000
})
}, 1000)
} */
}
}
})
return
collectResult
;
},
//回复帖子
replyPublish
:
function
(){
if
(
!
$
(
'.reply_input'
).
val
()){
medtap
.
toast
({
message
:
'请输入评论内容'
,
time
:
2000
})
return
}
else
{
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://testdevgw.medtap.cn/operation/pubbbs/publishComment'
,
type
:
'POST'
,
async
:
false
,
contentType
:
'application/json'
,
data
:{
content
:
$
(
'.reply_input'
).
val
(),
publishId
:
card
.
cardId
},
success
:
function
(
res
){
medtap
.
loading
(
0
);
if
(
res
.
success
==
true
){
setTimeout
(
function
(){
medtap
.
toast
({
message
:
'回复成功~'
,
time
:
1800
});
setTimeout
(
function
(){
window
.
location
.
reload
();
},
2000
)
},
2000
)
}
else
{
}
}
})
}
}
}
card
.
init
();
...
...
medtap_bbs_lung/javaScript/index.js
View file @
df65daba
...
...
@@ -81,7 +81,7 @@ define(['zepto', 'medtap' /* ,'https://review-formal.iplusmed.com/Common/javaScr
localStorage
.
wxLungToken
=
''
;
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/user/auth/token'
,
url
:
'https://
test
devgw.medtap.cn/user/auth/token'
,
type
:
'POST'
,
async
:
false
,
contentType
:
'application/json'
,
...
...
@@ -117,7 +117,7 @@ define(['zepto', 'medtap' /* ,'https://review-formal.iplusmed.com/Common/javaScr
getUserInfo
:
function
()
{
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/user/getUserDetail'
,
url
:
'https://
test
devgw.medtap.cn/user/getUserDetail'
,
type
:
'GET'
,
async
:
false
,
data
:
{
...
...
@@ -135,7 +135,7 @@ define(['zepto', 'medtap' /* ,'https://review-formal.iplusmed.com/Common/javaScr
upDateUserInfo
:
function
(
name
)
{
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/user/saveUserInfo'
,
url
:
'https://
test
devgw.medtap.cn/user/saveUserInfo'
,
type
:
'POST'
,
async
:
false
,
contentType
:
'application/json'
,
...
...
@@ -161,7 +161,7 @@ define(['zepto', 'medtap' /* ,'https://review-formal.iplusmed.com/Common/javaScr
getForumInfo
:
function
()
{
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn//operation/pubbbs/group/1'
,
url
:
'https://
test
devgw.medtap.cn//operation/pubbbs/group/1'
,
type
:
'GET'
,
async
:
false
,
data
:
{
...
...
@@ -183,7 +183,7 @@ define(['zepto', 'medtap' /* ,'https://review-formal.iplusmed.com/Common/javaScr
getForumList
:
function
(
listType
)
{
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/operation/pubbbs/publish'
,
url
:
'https://
test
devgw.medtap.cn/operation/pubbbs/publish'
,
type
:
'GET'
,
async
:
false
,
data
:
{
...
...
@@ -451,7 +451,7 @@ define(['zepto', 'medtap' /* ,'https://review-formal.iplusmed.com/Common/javaScr
var
status
;
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/operation/pubbbs/publish/up'
,
url
:
'https://
test
devgw.medtap.cn/operation/pubbbs/publish/up'
,
type
:
'POST'
,
async
:
false
,
contentType
:
'application/json'
,
...
...
@@ -471,7 +471,7 @@ define(['zepto', 'medtap' /* ,'https://review-formal.iplusmed.com/Common/javaScr
joinPublish
:
function
(){
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/operation/pubbbs/groupUser'
,
url
:
'https://
test
devgw.medtap.cn/operation/pubbbs/groupUser'
,
type
:
'POST'
,
async
:
false
,
contentType
:
'application/json'
,
...
...
medtap_bbs_lung/javaScript/myCardList.js
0 → 100644
View file @
df65daba
define
([
'zepto'
,
'medtap'
],
function
(
$
,
medtap
){
var
myCard
=
{
limit
:
10
,
offset
:
1
,
hasMore
:
false
,
init
:
function
(){
myCard
.
getMyCard
();
},
getMyCard
:
function
(){
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
"https://testdevgw.medtap.cn/operation/pubbbs/publish/mine"
,
type
:
'get'
,
asynv
:
false
,
data
:{
limit
:
myCard
.
limit
,
offset
:
myCard
.
offset
},
success
:
function
(
res
){
}
})
}
}
myCard
.
init
();
})
\ No newline at end of file
medtap_bbs_lung/javaScript/newCard.js
View file @
df65daba
...
...
@@ -96,7 +96,7 @@ define(['zepto', 'medtap'], function($, medtap) {
//上传图片
upLoadImg
:
function
(
serverId
,
localId
)
{
$
.
ajax
({
url
:
'https://testdevgw.medtap.cn/common/uploadWechatFile'
,
url
:
'https://test
test
devgw.medtap.cn/common/uploadWechatFile'
,
type
:
'POST'
,
async
:
false
,
data
:
{
...
...
@@ -130,7 +130,7 @@ define(['zepto', 'medtap'], function($, medtap) {
alert
(
picUrl
);
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/operation/pubbbs/publish'
,
url
:
'https://
test
devgw.medtap.cn/operation/pubbbs/publish'
,
type
:
"POST"
,
asynv
:
false
,
contentType
:
'application/json'
,
...
...
medtap_bbs_lung/javaScript/replyDetail.js
View file @
df65daba
define
([
'zepto'
,
'medtap'
],
function
(
$
,
medtap
)
{
var
reply
=
{
commentId
:
medtap
.
getRequest
(
'commentId'
),
publishId
:
''
,
init
:
function
()
{
reply
.
getDetail
();
$
(
'input'
).
on
(
'blur'
,
function
(){
$
(
'body'
).
scrollTop
(
0
);
});
$
(
'.reply_btn'
).
on
(
'click'
,
function
(){
reply
.
replyThisComment
();
})
},
getDetail
:
function
()
{
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/operation/pubbbs/publishComment/'
+
reply
.
commentId
,
url
:
'https://
test
devgw.medtap.cn/operation/pubbbs/publishComment/'
+
reply
.
commentId
,
type
:
'GET'
,
async
:
false
,
data
:
{
...
...
@@ -16,6 +23,8 @@ define(['zepto', 'medtap'], function($, medtap) {
success
:
function
(
res
)
{
medtap
.
loading
(
0
);
var
replyDetail
=
res
.
content
.
publishComment
;
reply
.
publishId
=
replyDetail
.
publishId
;
//reply.commentId = replyDetail.commentId;
$
(
'.user_profile'
).
attr
(
'src'
,
replyDetail
.
profile
);
$
(
'.reply_content_username'
).
html
(
replyDetail
.
nickname
)
$
(
'.reply_content_time'
).
html
(
replyDetail
.
updateTime
.
substring
(
5
,
16
));
...
...
@@ -67,7 +76,7 @@ define(['zepto', 'medtap'], function($, medtap) {
var
result
;
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://devgw.medtap.cn/operation/pubbbs/publishComment/up'
,
url
:
'https://
test
devgw.medtap.cn/operation/pubbbs/publishComment/up'
,
type
:
'POST'
,
async
:
false
,
contentType
:
'application/json'
,
...
...
@@ -82,6 +91,42 @@ define(['zepto', 'medtap'], function($, medtap) {
}
});
return
result
;
},
replyThisComment
:
function
(){
if
(
!
$
(
'.reply_input'
).
val
()){
medtap
.
toast
({
message
:
'请输入回复内容'
,
time
:
1500
})
return
}
else
{
medtap
.
loading
(
1
);
medtap
.
submitAjax
({
url
:
'https://testdevgw.medtap.cn/operation/pubbbs/publishComment'
,
type
:
'POST'
,
async
:
false
,
contentType
:
'application/json'
,
data
:{
content
:
$
(
'.reply_input'
).
val
(),
publishId
:
reply
.
publishId
,
commentId
:
reply
.
commentId
},
success
:
function
(
res
){
medtap
.
loading
(
0
);
if
(
res
.
success
==
true
){
setTimeout
(
function
(){
medtap
.
toast
({
message
:
'回复成功~'
,
time
:
1500
})
setTimeout
(
function
(){
window
.
location
.
reload
();
},
1500
)
},
1500
)
}
}
})
}
}
}
...
...
medtap_bbs_lung/pages/cardDetail.html
View file @
df65daba
...
...
@@ -75,6 +75,7 @@
<div
class=
"btn_do_comment"
>
写评论
</div>
<!-- <input type="search" name="" id="" value="" class="btn_do_comment" placeholder="写评论"/> -->
<div
class=
"btn_icon goTop"
>
<img
src=
"../images/post_answered_buttn@2x.png"
>
<span
class=
"btn_icon_commentNum"
>
87
</span>
...
...
@@ -86,6 +87,15 @@
<img
src=
"../images/post_share_buttn@2x.png"
>
</div>
</div>
<div
class=
"content_mod"
>
</div>
<div
class=
"comment_btn clearfix"
>
<input
type=
"text"
name=
""
id=
""
value=
""
class=
"reply_input"
/>
<div
class=
"reply_btn"
>
发布
</div>
</div>
</div>
</body>
<script
type=
"text/javascript"
>
...
...
medtap_bbs_lung/pages/myCardList.html
View file @
df65daba
...
...
@@ -11,6 +11,22 @@
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../css/myCardList.css"
/>
<script
src=
"https://review-formal.iplusmed.com/Common/javaScript/calRem.js"
type=
"text/javascript"
charset=
"utf-8"
></script>
<title>
患友之家
</title>
<script
src=
"https://review-formal.iplusmed.com/Common/javaScript/require.min.js"
></script>
<script
type=
"text/javascript"
>
require
.
config
({
baseUrl
:
"./"
,
paths
:
{
"zepto"
:
"https://review-formal.iplusmed.com/Common/javaScript/zepto.min"
,
"medtap"
:
"https://review-formal.iplusmed.com/Common/javaScript/medtap_core_wx"
,
"md5"
:
"https://review-formal.iplusmed.com/Common/javaScript/md5.min"
},
shim
:
{
"zepto"
:
{
exports
:
"$"
}
}
});
</script>
</head>
<body>
<div
id=
"content"
>
...
...
@@ -154,4 +170,7 @@
</div>
</div>
</body>
<script
type=
"text/javascript"
>
require
([
'../javaScript/myCardList.js'
])
</script>
</html>
wechat_lung_push_doctor/css/basicUserInfo.css
View file @
df65daba
body
{
background
:
#F6F6FC
;
}
#content
{
width
:
100%
;
background
:
#FFFFFF
;
}
.basic_header
{
padding
:
0.64rem
0.32rem
0
0.32rem
;
...
...
@@ -19,38 +23,80 @@
.input_list
{
width
:
100%
;
padding-left
:
0.32rem
;
margin-top
:
0.
2
rem
;
margin-top
:
0.
4
rem
;
font-size
:
0.32rem
;
color
:
#000000
;
}
.txt_red
{
color
:
#F45E19
;
margin-right
:
0.15rem
;
}
.input_list
.input_item
{
width
:
7.18
rem
;
border-bottom
:
0.01rem
solid
#f1f1f1
;
font-size
:
0.32
rem
;
color
:
#000
;
height
:
0.94rem
;
line-height
:
0.94rem
;
padding-right
:
0.32rem
;
border-bottom
:
0.01rem
solid
#e0e0e0
;
}
.input_list
.input_item
.left_tip
{
float
:
left
;
float
:
left
;
position
:
relative
;
}
.left_
icon
{
float
:
left
;
margin-
top
:
0.1rem
;
.left_
tip
.txt_red
{
position
:
absolute
;
top
:
0.1rem
;
}
.input_list
input
{
.input_list
.input_item
.input_tip
{
margin-left
:
0.2rem
;
}
.right_box
{
float
:
right
;
height
:
0.9rem
;
color
:
#DDDDDD
;
}
.health_typeBox
.healthBox
{
}
.input_list
.input_item
.arrow_icon
{
width
:
0.16rem
;
}
.input_list
.input_item
input
{
text-align
:
right
;
height
:
0.8rem
;
border
:
none
;
padding-right
:
0.2rem
;
font-size
:
0.32rem
;
}
.arrow_icon
{
float
:
right
;
.sex_box
span
{
display
:
inline-block
;
width
:
1.18rem
;
height
:
0.56rem
;
line-height
:
0.56rem
;
text-align
:
center
;
border
:
0.01rem
solid
#DDDDDD
;
border-radius
:
0.28rem
;
font-size
:
0.28rem
;
}
.arrow_icon
img
{
width
:
0.16rem
;
.sex_box
.male
{
margin-right
:
0.2rem
;
}
.sex_box
.sexOn
{
background
:
#37D488
;
color
:
#FFFFFF
;
border
:
none
;
}
.footer_btn
{
width
:
6.86rem
;
height
:
0.88rem
;
line-height
:
0.88rem
;
text-align
:
center
;
color
:
#AEE4DA
;
margin-left
:
0.32rem
;
background
:
#8BD3C5
;
font-size
:
0.36rem
;
margin-top
:
2.22rem
;
border-radius
:
0.08rem
;
}
.bntOn
{
color
:
#FFFFFF
;
background
:
#2CBCA0
;
}
\ No newline at end of file
wechat_lung_push_doctor/css/createPatientInfo.css
0 → 100644
View file @
df65daba
body
{
background
:
#F6F6FC
;
padding-bottom
:
0.3rem
;
}
#content
{
width
:
100%
;
background
:
#FFFFFF
;
}
.basic_header
{
padding
:
0.64rem
0.32rem
0
0.32rem
;
}
.basic_header
.basic_title
{
color
:
#2CBCA0
;
font-size
:
0.56rem
;
font-family
:
PingFangSC
;
font-weight
:
500
;
}
.basic_header
.basic_tip
{
color
:
#333333
;
font-size
:
0.28rem
;
margin-top
:
0.24rem
;
line-height
:
0.4rem
;
}
.input_list
{
width
:
100%
;
padding-left
:
0.32rem
;
margin-top
:
0.4rem
;
font-size
:
0.32rem
;
color
:
#000000
;
}
.txt_red
{
color
:
#F45E19
;
margin-right
:
0.15rem
;
}
.input_list
.input_item
{
font-size
:
0.32rem
;
color
:
#000
;
height
:
0.94rem
;
line-height
:
0.94rem
;
padding-right
:
0.32rem
;
border-bottom
:
0.01rem
solid
#e0e0e0
;
}
.input_list
.input_item
.left_tip
{
float
:
left
;
position
:
relative
;
}
.left_tip
.txt_red
{
position
:
absolute
;
top
:
0.1rem
;
}
.input_list
.input_item
.input_tip
{
margin-left
:
0.2rem
;
}
.right_box
{
float
:
right
;
color
:
#DDDDDD
;
}
.health_typeBox
.healthBox
{}
.input_list
.input_item
.arrow_icon
{
width
:
0.16rem
;
}
.input_list
.input_item
input
{
text-align
:
right
;
height
:
0.8rem
;
border
:
none
;
font-size
:
0.32rem
;
}
.hasPre
{
margin-left
:
0.32rem
;
margin-top
:
0.4rem
}
.hasPre
span
{
display
:
inline-block
;
width
:
3.2rem
;
height
:
0.88rem
;
line-height
:
0.88rem
;
text-align
:
center
;
color
:
#2CBCA0
;
border
:
0.01rem
solid
#2CBCA0
;
border-radius
:
0.08rem
;
font-size
:
0.36rem
;
background
:
#FFFFFF
;
}
.hasPre
.pre
{
margin-right
:
0.2rem
;
}
.hasPre
.next
{
background
:
#8BD3C5
;
color
:
#AEE4DA
;
border
:
none
}
.hasPre
.btnOn
{
background
:
#2CBCA0
;
color
:
#FFFFFF
;
}
.noPre
{
width
:
6.86rem
;
height
:
0.88rem
;
line-height
:
0.88rem
;
text-align
:
center
;
color
:
#AEE4DA
;
margin-left
:
0.32rem
;
background
:
#8BD3C5
;
font-size
:
0.36rem
;
margin-top
:
0.4rem
;
border-radius
:
0.08rem
;
display
:
none
;
}
.btnOn
{
background
:
#2CBCA0
;
color
:
#FFFFFF
;
}
\ No newline at end of file
wechat_lung_push_doctor/css/createTreatmentInfo.css
0 → 100644
View file @
df65daba
body
{
background
:
#F6F6FC
;
padding-bottom
:
0.3rem
;
}
#content
{
background
:
#ffffff
;
width
:
100%
;
}
.basic_header
{
padding
:
0.64rem
0.32rem
0
0.32rem
;
}
.basic_header
.basic_title
{
color
:
#2CBCA0
;
font-size
:
0.56rem
;
font-family
:
PingFangSC
;
font-weight
:
500
;
}
.basic_header
.basic_tip
{
color
:
#333333
;
font-size
:
0.28rem
;
margin-top
:
0.24rem
;
line-height
:
0.4rem
;
}
.input_list
{
font-size
:
0.32rem
;
margin-top
:
0.4rem
;
padding-left
:
0.32rem
;
}
.input_list
.input_item
{
padding-right
:
0.32rem
;
border-bottom
:
0.01rem
solid
#F1F1F1
;
position
:
relative
;
}
.input_list
.input_item
.arrow_icon
{
width
:
0.16rem
;
float
:
right
;
}
.input_list
.input_item
.input_item_title
{
padding-top
:
0.46rem
;
}
.input_list
.input_item
.input_item_info
{
padding-top
:
0.32rem
;
padding-bottom
:
0.2rem
;
}
.input_list
.input_item
.input_item_info
.input_content
{
color
:
#999999
}
.add_btn
{
width
:
1.18rem
;
height
:
0.56rem
;
border
:
0.01rem
solid
#2cbca0
;
border-radius
:
0.28rem
;
background
:
#ffffff
;
line-height
:
0.56rem
;
text-align
:
center
;
color
:
#2CBCA0
;
position
:
absolute
;
top
:
0.35rem
;
right
:
0.32rem
}
.input_item_info
.image_upload
{
float
:
left
;
margin-right
:
0.48rem
}
.input_item_info
.image_upload
img
{
width
:
1.36rem
;
height
:
1.36rem
;
}
.image_files_item
{
float
:
left
;
position
:
relative
;
margin-right
:
0.48rem
;
margin-bottom
:
0.2rem
;
}
.image_files_item
.image_files_img
{
width
:
1.36rem
;
height
:
1.36rem
;
border-radius
:
0.16rem
;
}
.image_files_item
.image_del
{
width
:
0.4rem
;
height
:
0.4rem
;
position
:
absolute
;
right
:
-0.1rem
;
top
:
-0.1rem
;
}
.image_files_item
.image_del
img
{}
.hasPre
{
margin-left
:
0.32rem
;
margin-top
:
0.4rem
}
.hasPre
span
{
display
:
inline-block
;
width
:
3.2rem
;
height
:
0.88rem
;
line-height
:
0.88rem
;
text-align
:
center
;
color
:
#2CBCA0
;
border
:
0.01rem
solid
#2CBCA0
;
border-radius
:
0.08rem
;
font-size
:
0.36rem
;
background
:
#FFFFFF
;
}
.hasPre
.pre
{
margin-right
:
0.2rem
;
}
.hasPre
.next
{
background
:
#8BD3C5
;
color
:
#AEE4DA
;
border
:
none
}
.hasPre
.btnOn
{
background
:
#2CBCA0
;
color
:
#FFFFFF
;
}
.noPre
{
width
:
6.86rem
;
height
:
0.88rem
;
line-height
:
0.88rem
;
text-align
:
center
;
color
:
#AEE4DA
;
margin-left
:
0.32rem
;
background
:
#8BD3C5
;
font-size
:
0.36rem
;
margin-top
:
0.4rem
;
border-radius
:
0.08rem
;
display
:
none
;
}
.btnOn
{
background
:
#2CBCA0
;
color
:
#FFFFFF
;
}
\ No newline at end of file
wechat_lung_push_doctor/css/treamentWay.css
0 → 100644
View file @
df65daba
body
{
background
:
#F6F6FC
;
}
#content
{
width
:
100%
;
font-size
:
0.32rem
;
}
.select_warp
{
background
:
#ffffff
;
height
:
1.2rem
;
line-height
:
1.2rem
;
padding
:
0
0.32rem
;
}
.select_warp
.select_item
{
width
:
1.18rem
;
height
:
0.56rem
;
display
:
inline-block
;
line-height
:
0.56rem
;
text-align
:
center
;
font-size
:
0.28rem
;
border
:
0.01rem
solid
#DDDDDD
;
border-radius
:
0.28rem
;
}
\ No newline at end of file
wechat_lung_push_doctor/images/post_ picture_btn@2x.png
0 → 100644
View file @
df65daba
1.97 KB
wechat_lung_push_doctor/images/post_delete_btn@2x.png
0 → 100644
View file @
df65daba
472 Bytes
wechat_lung_push_doctor/images/post_title_bg@2x.png
0 → 100644
View file @
df65daba
18.3 KB
wechat_lung_push_doctor/javaScript/createPatientInfo.js
0 → 100644
View file @
df65daba
define
([
'zepto'
,
'medtap'
],
function
(
$
,
medtap
){
var
patientInfo
=
{
}
})
\ No newline at end of file
wechat_lung_push_doctor/javaScript/createTreatmentInfo.js
0 → 100644
View file @
df65daba
define
([
'zepto'
,
'medtap'
],
function
(
$
,
medtap
){
var
treatment
=
{
}
})
\ No newline at end of file
wechat_lung_push_doctor/pages/basicUserInfo.html
View file @
df65daba
...
...
@@ -8,7 +8,7 @@
<meta
content=
"telephone=no"
name=
"format-detection"
>
<meta
content=
"email=no"
name=
"format-detection"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"https://review-formal.iplusmed.com/Common/css/wechat_Reset.min.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../css/basicUserInfo.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../css/basicUserInfo.css"
/>
<script
src=
"https://review-formal.iplusmed.com/Common/javaScript/calRem.js"
type=
"text/javascript"
charset=
"utf-8"
></script>
<title>
完善信息
</title>
<script
src=
"https://review-formal.iplusmed.com/Common/javaScript/require.min.js"
></script>
...
...
@@ -31,25 +31,69 @@
<body>
<div
id=
"content"
>
<div
class=
"basic_header"
>
<p
class=
"basic_title"
>
完善
患者
信息
</p>
<p
class=
"basic_title"
>
完善
用户
信息
</p>
<p
class=
"basic_tip"
>
为了便于医生提供准确的咨询建议,请尽量填写真实详尽的信息(填写的信息仅您和医生可见)
</p>
</div>
<div
class=
"input_list"
>
<div
class=
"input_item clearfix"
>
<span
class=
"txt_red left_icon"
>
*
</span>
<span
class=
"left_tip"
>
您的身份
</span>
<span
class=
"arrow_icon"
>
<img
src=
"../images/_arrows _right@2x.png"
>
</span>
<input
type=
"text"
name=
""
id=
""
value=
""
placeholder=
"请选择"
/>
<div
class=
"left_tip"
>
<span
class=
"txt_red"
>
*
</span>
<span
class=
"input_tip"
>
您的身份
</span>
</div>
<div
class=
"right_box health_typeBox"
>
<span
class=
"healthBox"
>
请选择
</span>
<img
src=
"../images/_arrows _right@2x.png"
class=
"arrow_icon"
>
</div>
</div>
<div
class=
"input_item clearfix"
>
<span
class=
"txt_red left_icon"
>
*
</span>
<span
class=
"left_tip"
>
姓名
</span>
<input
type=
"text"
name=
""
id=
""
value=
""
placeholder=
"请选择"
/>
<div
class=
"left_tip"
>
<span
class=
"txt_red"
>
*
</span>
<span
class=
"input_tip"
>
姓名
</span>
</div>
<div
class=
"right_box"
>
<input
type=
"text"
name=
""
id=
"username"
value=
""
placeholder=
"请输入真实姓名"
/>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"txt_red"
>
*
</span>
<span
class=
"input_tip"
>
称呼
</span>
</div>
<div
class=
"right_box sex_box"
>
<span
class=
"male"
>
先生
</span>
<span
class=
"female"
>
女士
</span>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"txt_red"
>
*
</span>
<span
class=
"input_tip"
>
联系电话
</span>
</div>
<div
class=
"right_box"
>
<input
type=
"tel"
name=
""
id=
"user_mobile"
value=
""
placeholder=
"请输入联系电话"
/>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"input_tip"
>
微信号
</span>
</div>
<div
class=
"right_box"
>
<input
type=
"text"
name=
""
id=
"wx_num"
value=
""
placeholder=
"请输入微信号码"
/>
</div>
</div>
<div
class=
"input_item clearfix"
style=
"border:none"
>
<div
class=
"left_tip"
>
<span
class=
"input_tip"
>
邮箱
</span>
</div>
<div
class=
"right_box"
>
<input
type=
"text"
name=
""
id=
"email"
value=
""
placeholder=
"请输入邮箱地址"
/>
</div>
</div>
</div>
</div>
<div
class=
"footer_btn"
>
下一步
</div>
</body>
<script
type=
"text/javascript"
>
require
[
'../javaScript/basicUserInfo.js'
]
...
...
wechat_lung_push_doctor/pages/createPatientInfo.html
0 → 100644
View file @
df65daba
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no"
>
<meta
content=
"yes"
name=
"apple-mobile-web-app-capable"
>
<meta
content=
"black"
name=
"apple-mobile-web-app-status-bar-style"
>
<meta
content=
"telephone=no"
name=
"format-detection"
>
<meta
content=
"email=no"
name=
"format-detection"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"https://review-formal.iplusmed.com/Common/css/wechat_Reset.min.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../css/createPatientInfo.css"
/>
<script
src=
"https://review-formal.iplusmed.com/Common/javaScript/calRem.js"
type=
"text/javascript"
charset=
"utf-8"
></script>
<title>
完善信息
</title>
<script
src=
"https://review-formal.iplusmed.com/Common/javaScript/require.min.js"
></script>
<script
type=
"text/javascript"
>
require
.
config
({
baseUrl
:
"./"
,
paths
:
{
"zepto"
:
"https://review-formal.iplusmed.com/Common/javaScript/zepto.min"
,
"medtap"
:
"https://review-formal.iplusmed.com/Common/javaScript/medtap_core_wx"
,
"md5"
:
"https://review-formal.iplusmed.com/Common/javaScript/md5.min"
},
shim
:
{
"zepto"
:
{
exports
:
"$"
}
}
});
</script>
</head>
<body>
<div
id=
"content"
>
<div
class=
"basic_header"
>
<p
class=
"basic_title"
>
完善患者信息
</p>
<p
class=
"basic_tip"
>
为了便于医生提供准确的咨询建议,请尽量填写真实详尽的信息(填写的信息仅您和医生可见)
</p>
</div>
<div
class=
"input_list"
>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"txt_red"
>
*
</span>
<span
class=
"input_tip"
>
患者姓名
</span>
</div>
<div
class=
"right_box"
>
<input
type=
"text"
name=
""
id=
"username"
value=
""
placeholder=
"请输入真实姓名"
/>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"txt_red"
>
*
</span>
<span
class=
"input_tip"
>
性别
</span>
</div>
<div
class=
"right_box sex_typeBox"
>
<span
class=
"sexBox"
id=
"sex"
>
请选择
</span>
<img
src=
"../images/_arrows _right@2x.png"
class=
"arrow_icon"
>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"txt_red"
>
*
</span>
<span
class=
"input_tip"
>
出生日期
</span>
</div>
<div
class=
"right_box sex_typeBox"
>
<span
class=
"sexBox"
id=
"sex"
>
请选择
</span>
<img
src=
"../images/_arrows _right@2x.png"
class=
"arrow_icon"
>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"input_tip"
>
身高
</span>
</div>
<div
class=
"right_box"
>
<input
type=
"text"
name=
""
id=
"username"
value=
""
placeholder=
"请输入"
/>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"txt_red"
>
*
</span>
<span
class=
"input_tip"
>
疾病诊断
</span>
</div>
<div
class=
"right_box sex_typeBox"
>
<span
class=
"sexBox"
id=
"sex"
>
请选择
</span>
<img
src=
"../images/_arrows _right@2x.png"
class=
"arrow_icon"
>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"txt_red"
>
*
</span>
<span
class=
"input_tip"
>
病理类型
</span>
</div>
<div
class=
"right_box sex_typeBox"
>
<span
class=
"sexBox"
id=
"sex"
>
请选择
</span>
<img
src=
"../images/_arrows _right@2x.png"
class=
"arrow_icon"
>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"input_tip"
>
肿瘤分期
</span>
</div>
<div
class=
"right_box sex_typeBox"
>
<span
class=
"sexBox"
id=
"sex"
>
请选择
</span>
<img
src=
"../images/_arrows _right@2x.png"
class=
"arrow_icon"
>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"input_tip"
>
TNM分期
</span>
</div>
<div
class=
"right_box sex_typeBox"
>
<span
class=
"sexBox"
id=
"sex"
>
请选择
</span>
<img
src=
"../images/_arrows _right@2x.png"
class=
"arrow_icon"
>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"input_tip"
>
有无转移病灶
</span>
</div>
<div
class=
"right_box sex_typeBox"
>
<span
class=
"sexBox"
id=
"sex"
>
请选择
</span>
<img
src=
"../images/_arrows _right@2x.png"
class=
"arrow_icon"
>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"input_tip"
>
有无吸烟史
</span>
</div>
<div
class=
"right_box sex_typeBox"
>
<span
class=
"sexBox"
id=
"sex"
>
请选择
</span>
<img
src=
"../images/_arrows _right@2x.png"
class=
"arrow_icon"
>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"input_tip"
>
ECOG评分
</span>
</div>
<div
class=
"right_box sex_typeBox"
>
<span
class=
"sexBox"
id=
"sex"
>
请选择
</span>
<img
src=
"../images/_arrows _right@2x.png"
class=
"arrow_icon"
>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
style=
"width:2.1rem;line-height:0.46rem;margin-left:0.2rem;"
>
病案号/住院号医保卡号
</div>
<div
class=
"right_box"
>
<input
type=
"text"
name=
""
id=
"username"
value=
""
placeholder=
"请输入"
/>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"left_tip"
>
<span
class=
"input_tip"
>
医保所在地
</span>
</div>
<div
class=
"right_box sex_typeBox"
>
<span
class=
"sexBox"
id=
"sex"
>
请选择
</span>
<img
src=
"../images/_arrows _right@2x.png"
class=
"arrow_icon"
>
</div>
</div>
</div>
</div>
<div
class=
"footer_btn hasPre"
>
<span
class=
"pre"
>
上一步
</span>
<span
class=
"next"
>
下一步
</span>
</div>
<div
class=
"footer_btn noPre"
>
下一步
</div>
</body>
<script
type=
"text/javascript"
>
require
([
'../javaScript/createPatientInfo.js'
])
</script>
</html>
wechat_lung_push_doctor/pages/createTreatmentInfo.html
0 → 100644
View file @
df65daba
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no"
>
<meta
content=
"yes"
name=
"apple-mobile-web-app-capable"
>
<meta
content=
"black"
name=
"apple-mobile-web-app-status-bar-style"
>
<meta
content=
"telephone=no"
name=
"format-detection"
>
<meta
content=
"email=no"
name=
"format-detection"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"https://review-formal.iplusmed.com/Common/css/wechat_Reset.min.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../css/createTreatmentInfo.css"
/>
<script
src=
"https://review-formal.iplusmed.com/Common/javaScript/calRem.js"
type=
"text/javascript"
charset=
"utf-8"
></script>
<script
src=
"https://res.wx.qq.com/open/js/jweixin-1.2.0.js"
type=
"text/javascript"
charset=
"utf-8"
></script>
<title>
完善信息
</title>
<script
src=
"https://review-formal.iplusmed.com/Common/javaScript/require.min.js"
></script>
<script
type=
"text/javascript"
>
require
.
config
({
baseUrl
:
"./"
,
paths
:
{
"zepto"
:
"https://review-formal.iplusmed.com/Common/javaScript/zepto.min"
,
"medtap"
:
"https://review-formal.iplusmed.com/Common/javaScript/medtap_core_wx"
,
"md5"
:
"https://review-formal.iplusmed.com/Common/javaScript/md5.min"
},
shim
:
{
"zepto"
:
{
exports
:
"$"
}
}
});
</script>
</head>
<body>
<div
id=
"content"
>
<div
class=
"basic_header"
>
<p
class=
"basic_title"
>
完善患者信息
</p>
</div>
<div
class=
"input_list"
>
<div
class=
"input_item clearfix"
>
<div
class=
"input_item_title"
>
有无靶向突变
</div>
<div
class=
"input_item_info"
>
<span
class=
"input_content"
>
请选择
</span>
<img
src=
"../images/_arrows _right@2x.png"
class=
"arrow_icon"
>
</div>
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"input_item_title"
>
当前正在接受的治疗
</div>
<div
class=
"input_item_info"
>
<span
class=
"input_content"
>
请选择
</span>
<img
src=
"../images/_arrows _right@2x.png"
class=
"arrow_icon"
>
</div>
</div>
<div
class=
"input_item clearfix"
style=
"padding-bottom:0.3rem;"
>
<div
class=
"input_item_title"
>
既往接受过的治疗
</div>
<div
class=
"add_btn"
>
+添加
</div>
<!-- <div class="input_item_info">
<span class="input_content">请选择</span>
<img src="../images/_arrows _right@2x.png" class="arrow_icon">
</div> -->
</div>
<div
class=
"input_item clearfix"
>
<div
class=
"input_item_title"
>
既往出院小结/门诊病历
</div>
<div
class=
"input_item_info"
>
<div
class=
"image_upload"
id=
"upload"
>
<img
src=
"../images/post_ picture_btn@2x.png"
>
</div>
<div
class=
"image_files clearfix"
id=
"ImgUp"
>
<div
class=
"image_files_item"
>
<img
src=
"../images/post_title_bg@2x.png"
class=
"image_files_img"
>
<img
src=
"../images/post_delete_btn@2x.png"
class=
"image_del"
>
</div>
<div
class=
"image_files_item"
>
<img
src=
"../images/post_title_bg@2x.png"
class=
"image_files_img"
>
<img
src=
"../images/post_delete_btn@2x.png"
class=
"image_del"
>
</div>
<div
class=
"image_files_item"
>
<img
src=
"../images/post_title_bg@2x.png"
class=
"image_files_img"
>
<img
src=
"../images/post_delete_btn@2x.png"
class=
"image_del"
>
</div>
<div
class=
"image_files_item"
>
<img
src=
"../images/post_title_bg@2x.png"
class=
"image_files_img"
>
<img
src=
"../images/post_delete_btn@2x.png"
class=
"image_del"
>
</div>
<div
class=
"image_files_item"
>
<img
src=
"../images/post_title_bg@2x.png"
class=
"image_files_img"
>
<img
src=
"../images/post_delete_btn@2x.png"
class=
"image_del"
>
</div>
<div
class=
"image_files_item"
>
<img
src=
"../images/post_title_bg@2x.png"
class=
"image_files_img"
>
<img
src=
"../images/post_delete_btn@2x.png"
class=
"image_del"
>
</div>
<div
class=
"image_files_item"
>
<img
src=
"../images/post_title_bg@2x.png"
class=
"image_files_img"
>
<img
src=
"../images/post_delete_btn@2x.png"
class=
"image_del"
>
</div>
<div
class=
"image_files_item"
>
<img
src=
"../images/post_title_bg@2x.png"
class=
"image_files_img"
>
<img
src=
"../images/post_delete_btn@2x.png"
class=
"image_del"
>
</div>
<div
class=
"image_files_item"
>
<img
src=
"../images/post_title_bg@2x.png"
class=
"image_files_img"
>
<img
src=
"../images/post_delete_btn@2x.png"
class=
"image_del"
>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"footer_btn hasPre"
>
<span
class=
"pre"
>
上一步
</span>
<span
class=
"next"
>
完成
</span>
</div>
<div
class=
"footer_btn noPre"
>
下一步
</div>
</body>
<script
type=
"text/javascript"
>
require
([
'../javaScript/createTreatmentInfo.js'
])
</script>
</html>
wechat_lung_push_doctor/pages/treamentWay.html
0 → 100644
View file @
df65daba
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no"
>
<meta
content=
"yes"
name=
"apple-mobile-web-app-capable"
>
<meta
content=
"black"
name=
"apple-mobile-web-app-status-bar-style"
>
<meta
content=
"telephone=no"
name=
"format-detection"
>
<meta
content=
"email=no"
name=
"format-detection"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"https://review-formal.iplusmed.com/Common/css/wechat_Reset.min.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../css/treamentWay.css"
/>
<script
src=
"https://review-formal.iplusmed.com/Common/javaScript/calRem.js"
type=
"text/javascript"
charset=
"utf-8"
></script>
<title>
治疗项目
</title>
<script
src=
"https://review-formal.iplusmed.com/Common/javaScript/require.min.js"
></script>
<script
type=
"text/javascript"
>
require
.
config
({
baseUrl
:
"./"
,
paths
:
{
"zepto"
:
"https://review-formal.iplusmed.com/Common/javaScript/zepto.min"
,
"medtap"
:
"https://review-formal.iplusmed.com/Common/javaScript/medtap_core_wx"
,
"md5"
:
"https://review-formal.iplusmed.com/Common/javaScript/md5.min"
},
shim
:
{
"zepto"
:
{
exports
:
"$"
}
}
});
</script>
</head>
<body>
<div
id=
"content"
>
<div
class=
"select_warp"
>
<span
class=
"select_title"
>
治疗项目(多选)
</span>
<span
class=
"select_item has"
>
有
</span>
<span
class=
"select_item no"
>
无
</span>
</div>
</div>
</body>
</html>
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