addrecord.wxml 2.9 KB
<!--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}}" end="{{enddate}}" 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><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}}"></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' >
       <cover-view class='bt_bg'><button formType="submit" class='btn'> 保 存</button></cover-view>
    </form>