yuminge-app/yun-min-program-plugin-master/packageA/member/memberBank/memberBank.wxml

29 lines
1.6 KiB
Plaintext

<!--pages/member/memberBank/memberBank.wxml-->
<view class="bankmessage">
<van-cell-group>
<van-field label="开户行:" readonly="{{status ? false : 'readonly'}}" type="text" value="{{bank_name}}" placeholder="请输入开户行" border="{{false}}" bind:blur="banknameinp" />
</van-cell-group>
<van-cell-group>
<van-field label="开户行省份:" readonly="{{status ? false : 'readonly'}}" type="text" value="{{bank_province}}" placeholder="请输入开户行省份" border="{{false}}" bind:blur="bankprovinceinp" />
</van-cell-group>
<van-cell-group>
<van-field label="开户行城市:" readonly="{{status ? false : 'readonly'}}" type="text" value="{{bank_city}}" placeholder="请输入开户行城市" border="{{false}}" bind:blur="bankcityinp" />
</van-cell-group>
<van-cell-group>
<van-field label="开户行支行:" readonly="{{status ? false : 'readonly'}}" type="text" value="{{bank_branch}}" placeholder="请输入开户行支行" border="{{false}}" bind:blur="bankbranchinp" />
</van-cell-group>
<van-cell-group>
<van-field label="账号:" readonly="{{status ? false : 'readonly'}}" type="number" value="{{bank_id}}" placeholder="请输入账号" border="{{false}}" bind:blur="bankidinp" />
</van-cell-group>
<van-cell-group>
<van-field label="姓名:" readonly="{{status ? false : 'readonly'}}" type="text" value="{{bank_user}}" placeholder="请输入姓名" border="{{false}}" bind:blur="bankuserinp" />
</van-cell-group>
<view class="buttonGropup">
<view class="button" wx:if="{{!status}}" catchtap="change">
点击编辑
</view>
<view class="button" catchtap="bind" wx:else>
提交
</view>
</view>
</view>