init version kelfy-mini for new gitea
This commit is contained in:
63
pages/money/money.wxml
Normal file
63
pages/money/money.wxml
Normal file
@@ -0,0 +1,63 @@
|
||||
<!--pages/record/record.wxml-->
|
||||
<view class="main">
|
||||
<view class="content">
|
||||
<view class="item">
|
||||
<view class="up">
|
||||
<view class="name">{{name}}</view>
|
||||
<view class="msg">
|
||||
<view wx:if="{{relate == 0}}" class="t1">本人</view>
|
||||
<view wx:elif="{{relate == 1}}" class="t1">子女</view>
|
||||
<view wx:elif="{{relate == 2}}" class="t1">夫妻 </view>
|
||||
<view wx:elif="{{relate == 3}}" class="t1">父母 </view>
|
||||
<view wx:elif="{{relate == 4}}" class="t1">朋友 </view>
|
||||
<view class="icon" bindlongtap="qiehuan" bindtap="showPop"></view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="down">
|
||||
<view>{{cardNum}}</view>
|
||||
<view>切换就诊人</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="ye">
|
||||
<view class="c1">卡内余额</view>
|
||||
<view class="c2">¥{{ye}}</view>
|
||||
</view>
|
||||
<view class="jg">自助退款功能正在开发中,退款请到收费窗口办理!</view>
|
||||
<view class="title">在线充值(元)</view>
|
||||
<view class="itemWrap">
|
||||
<view class="item2 {{item.id == curId? 'active' : ''}}" wx:for="{{moneyList}}" bindtap="sel" wx:key="item" data-item="{{item}}">{{item.num}}</view>
|
||||
<view class="item2 {{curId == 5? 'active' : ''}}" bindtap="sel2">
|
||||
<input class="sr" bindinput='money' type='digit' value="{{ money2 }}" placeholder-class="placeholder" placeholder="自定义"></input>
|
||||
</view>
|
||||
</view>
|
||||
<view class="title2" bindtap="naviToCz">充值记录</view>
|
||||
<view class="btn" bindtap="confirmCz"> 确认充值</view>
|
||||
</view>
|
||||
|
||||
<van-popup
|
||||
show="{{ show }}"
|
||||
round
|
||||
closeable
|
||||
position="bottom"
|
||||
bind:close="onClose">
|
||||
<view class="popWrap">
|
||||
<view class="title1">选择就诊人</view>
|
||||
<view class="userWrap">
|
||||
<view class="userItem" wx:for="{{list}}" wx:key="item" data-item="{{item}}" bindtap="confirm">
|
||||
<view class="msg1">
|
||||
<view class="up1">
|
||||
<view class="name1">{{item.TRUE_NAME}}</view>
|
||||
<view wx:if="{{item.RELATE == 0}}" class="guanxi1">本人</view>
|
||||
<view wx:elif="{{item.RELATE == 1}}" class="guanxi1">子女</view>
|
||||
<view wx:elif="{{item.RELATE == 2}}" class="guanxi1">夫妻 </view>
|
||||
<view wx:elif="{{item.RELATE == 3}}" class="guanxi1">父母 </view>
|
||||
<view wx:elif="{{item.RELATE == 4}}" class="guanxi1">朋友 </view>
|
||||
</view>
|
||||
<view class="down1">{{item.MEDICAL_CARD}}</view>
|
||||
</view>
|
||||
<view class="icon1">></view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</van-popup>
|
||||
</view>
|
||||
Reference in New Issue
Block a user