|
|
|
@ -7,9 +7,9 @@ |
|
|
|
<van-field id="name" value="{{ form.name }}" required label="客户姓名:" clearable placeholder="请输入客户姓名" bind:input="bindInput" /> |
|
|
|
<van-field id="mobile" value="{{ form.mobile }}" type="number" label="手机号码:" placeholder="请输入手机号码" clearable |
|
|
|
bind:input="bindInput" /> |
|
|
|
<van-field id="settleType" value="{{ form.customerSettleName }}" required readonly label="结算类型:" is-link arrow-direction="down" bindtap="chooseMethod" placeholder="结算类型" /> |
|
|
|
<van-field value="{{ form.defaultPaymentMethod == 1 ? '现金支付' : (form.defaultPaymentMethod == 2 ? '银行卡转账' : '' )}}" readonly |
|
|
|
label="付款方式:" is-link arrow-direction="down" bindtap="chooseMethod" placeholder="请选择付款方式(选填)" /> |
|
|
|
<van-field id="settleType" value="{{ form.customerSettleName }}" readonly label="结算类型:" is-link arrow-direction="down" bindtap="chooseMethod" placeholder="请选择结算类型(选填)" /> |
|
|
|
<van-field value="{{ form.defaultPaymentMethod == 1 ? '现金支付' : (form.defaultPaymentMethod == 2 ? '银行卡转账' : '' )}}" required readonly |
|
|
|
label="付款方式:" is-link arrow-direction="down" bindtap="chooseMethod" placeholder="请选择付款方式" /> |
|
|
|
<van-field id="bankName" value="{{ form.bankName }}" label="银行名称:" readonly is-link arrow-direction="down" placeholder="请选择银行(选填)" |
|
|
|
bind:input="bindInput" wx:if="{{form.defaultPaymentMethod == 2}}" bindtap="chooseMethod" /> |
|
|
|
<van-field id="bankBranchName" value="{{ form.bankBranchName }}" label="开户行:" placeholder="请输入开户行(选填)" |
|
|
|
|