You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
2.3 KiB
52 lines
2.3 KiB
<van-popup custom-style="background: transparent;" round z-index="{{100000}}" show="{{ show }}"> |
|
<view class="from"> |
|
<view class="title">您上一次复诊时间?</view> |
|
<picker mode="date" model:value="{{visitDate}}" end="{{currentDate}}" bind:change="handleDateChange"> |
|
<view class="date"> |
|
<view class="content">{{visitDateName||'请选择'}}</view> |
|
<view class="tril"></view> |
|
</view> |
|
</picker> |
|
<view class="select-title"> |
|
您复诊后的方案是? |
|
<text class="sub">(多选)</text> |
|
</view> |
|
<view class="list"> |
|
<view bind:tap="handleSelect" data-name="hormone" class="item {{hormone===1 && 'active'}}">1.激素</view> |
|
<view |
|
bind:tap="handleSelect" |
|
data-name="traditionalInhibitor" |
|
class="item {{traditionalInhibitor===1 && 'active'}}" |
|
> |
|
2.传统免疫抑制剂(如他克莫司、吗 替麦考酚酯等) |
|
</view> |
|
<view bind:tap="handleSelect" data-name="gammaGlobulin" class="item {{gammaGlobulin===1 && 'active'}}"> |
|
3.静脉输注丙种球蛋白 |
|
</view> |
|
<view bind:tap="handleSelect" data-name="plasmaExchange" class="item {{plasmaExchange===1 && 'active'}}"> |
|
4.血浆置换 |
|
</view> |
|
<view bind:tap="handleSelect" data-name="bCellInhibitor" class="item {{bCellInhibitor===1 && 'active'}}"> |
|
5.B细胞抑制剂(如:利妥昔单抗、泰 它西普、伊奈利珠单抗) |
|
</view> |
|
<view bind:tap="handleSelect" data-name="fcRnAntagonists" class="item {{fcRnAntagonists===1 && 'active'}}"> |
|
6.FcRn拮抗剂(如:艾加莫德) |
|
</view> |
|
<view |
|
bind:tap="handleSelect" |
|
data-name="c5ComplementInhibitor" |
|
class="item {{c5ComplementInhibitor===1 && 'active'}}" |
|
> |
|
7.C5补体抑制剂(如:依库珠单抗) |
|
</view> |
|
<view bind:tap="handleSelect" data-name="chineseMedicine" class="item {{chineseMedicine===1 && 'active'}}"> |
|
8.中药或中成药 |
|
</view> |
|
<view bind:tap="handleSelect" data-name="other" class="item {{other===1 && 'active'}}">9.其他</view> |
|
</view> |
|
<view class="footer"> |
|
<view class="cancel" bind:tap="handleCancel">取消</view> |
|
<view class="submit" bind:tap="submit">确定</view> |
|
</view> |
|
</view> |
|
</van-popup>
|
|
|