addrecord.wxml
2.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!--pages/addrecord/addrecord.wxml-->
<view class='top_tip'>
为了给您提供更准确的健康随访服务,请务必如实填写以下资料
</view>
<view class='user_name' bindtap='goaddfile'>
用户:{{patient}}
</view>
<view class='record_main'>
<view class='record_txt'>用药情况</view>
<view class='input_box'>
<view>本次用药名称:</view>
<view class="input_cell drug_input">
<input type='text' placeholder='请输入用药' bindinput='setdrug' placeholder-class='drug_input_pla'></input>
</view>
</view>
<picker mode="date" value="{{date}}" bindchange="bindDateChange">
<view class='input_box'>
<view>停药日期:</view>
<view class="input_cell">{{date}}</view>
</view>
</picker>
<view class='record_txt'>血项检查</view>
<picker mode="date" value="{{date}}" end="{{enddate}}" bindchange="bindDateChange1">
<view class='input_box'>
<view>血项检查时间:</view>
<view class="input_cell">{{date1}}</view>
</view>
</picker>
<view class='input_box'>
<view>白细胞计数:</view>
<view class="input_cell">
<input placeholder='0-100' type='digit' placeholder-class='placeholderStyle' bindinput='setwhite_blood_cell'></input>
<view class='cell_txt'> *10⁹/L</view>
</view>
</view>
<view class='input_box'>
<view>中性粒细胞计数:</view>
<view class="input_cell">
<input placeholder='0-100' type='digit' placeholder-class='placeholderStyle' bindinput='setneutrophils'></input>
<view class='cell_txt'> *10⁹/L</view>
</view>
</view>
<view class='input_box'>
<view>血红蛋白:</view>
<view class="input_cell">
<input placeholder='0-250' type='digit' placeholder-class='placeholderStyle' bindinput='sethemoglobin'></input>
<view class='cell_txt'>g/L</view>
</view>
</view>
<view class='input_box'>
<view>血小板计数:</view>
<view class="input_cell">
<input placeholder='0-1000' type='digit' placeholder-class='placeholderStyle' bindinput='setplatelet'></input>
<div class='cell_txt'>*10⁹/L</div>
</view>
</view>
<view class='upimgbox'>
<view class='textareabox'><textarea placeholder='特殊情况请给医生留言并上传照片。' placeholder-style='text_class' bindinput='setremarks'></textarea> </view>
<view class='upitem'>
<view class='upbox' wx:for='{{upimg}}' wx:key>
<view class='up_colse' bindtap='del_upimg' data-index='{{index}}'>
<image src='../../img/colse.png'></image>
</view>
<image bindtap="imgYu" data-list="{{upimg}}" src='{{item}}' data-src="{{item}}"></image>
</view>
<view class='upbox' bindtap='uploadImages' wx:if="{{upimg.length<8}}">
<image src='../../img/noimg.png'></image>
</view>
<view class='up_txt' wx:if='{{upimg.length<1}}'>添加图片(患者化验单,用药情况和皮肤粘膜情况等)</view>
</view>
</view>
</view>
<form bindsubmit="formSubmit" report-submit='true' class='bt_bg'>
<button formType="submit" class='btn '> 保 存</button>
</form>