|
|
|
@ -7,7 +7,7 @@ |
|
|
|
</view> |
|
|
|
<qn-form-item label="商户信息" type="title"></qn-form-item> |
|
|
|
<qn-form-item label="商户名称"> |
|
|
|
<text>{{ form.name }}</text> |
|
|
|
<text class="text">{{ form.name }}</text> |
|
|
|
</qn-form-item> |
|
|
|
<qn-form-item label="商户类型" required> |
|
|
|
<qn-select |
|
|
|
@ -18,7 +18,7 @@ |
|
|
|
></qn-select> |
|
|
|
</qn-form-item> |
|
|
|
<qn-form-item label="客服电话" required> |
|
|
|
<qn-easyinput :maxlength="11" v-model="form.servicePhone" :inputBorder="false" text="right" placeholder="请输入客服电话"></qn-easyinput> |
|
|
|
<qn-easyinput type="number" :maxlength="11" v-model="form.servicePhone" :inputBorder="false" text="right" placeholder="请输入客服电话"></qn-easyinput> |
|
|
|
</qn-form-item> |
|
|
|
<qn-form-item label="联系邮箱" required> |
|
|
|
<qn-easyinput :maxlength="25" v-model="form.contactEmail" :inputBorder="false" text="right" placeholder="请输入联系邮箱"></qn-easyinput> |
|
|
|
@ -30,26 +30,32 @@ |
|
|
|
</qn-form-item> |
|
|
|
<qn-form-item label="结算账户" type="title"></qn-form-item> |
|
|
|
<qn-form-item label="账户类型"> |
|
|
|
<text>{{ accountTypeName }}</text> |
|
|
|
<text class="text">{{ accountTypeName }}</text> |
|
|
|
</qn-form-item> |
|
|
|
<qn-form-item label="账户名"> |
|
|
|
<text>{{ form.accountName }}</text> |
|
|
|
<text class="text">{{ form.accountName }}</text> |
|
|
|
</qn-form-item> |
|
|
|
<qn-form-item label="账户号码"> |
|
|
|
<text>{{ form.accountNumber }}</text> |
|
|
|
<text class="text">{{ form.accountNumber }}</text> |
|
|
|
</qn-form-item> |
|
|
|
<qn-form-item label="开户行"> |
|
|
|
<text>{{ form.accountBank }}</text> |
|
|
|
<text class="text">{{ form.accountBank }}</text> |
|
|
|
</qn-form-item> |
|
|
|
<qn-form-item label="开户行所属市编码" required> |
|
|
|
<qn-easyinput type="number" v-model="form.bankAddressCode" :inputBorder="false" text="right" placeholder="请输入开户行所属市编码"></qn-easyinput> |
|
|
|
</qn-form-item> |
|
|
|
<qn-form-item label="开户行联行号" required> |
|
|
|
<qn-easyinput type="number" v-model="form.bankBranchId" :inputBorder="false" text="right" placeholder="请输入开户行联行号"></qn-easyinput> |
|
|
|
</qn-form-item> |
|
|
|
<qn-form-item label="法人信息" type="title"></qn-form-item> |
|
|
|
<qn-form-item label="法人姓名"> |
|
|
|
<text>{{ form.contactName }}</text> |
|
|
|
<text class="text">{{ form.contactName }}</text> |
|
|
|
</qn-form-item> |
|
|
|
<qn-form-item label="法人身份证号"> |
|
|
|
<text>{{ form.contactIdNumber }}</text> |
|
|
|
<text class="text">{{ form.contactIdNumber }}</text> |
|
|
|
</qn-form-item> |
|
|
|
<qn-form-item label="法人手机号"> |
|
|
|
<text>{{ form.mobilePhone }}</text> |
|
|
|
<text class="text">{{ form.mobilePhone }}</text> |
|
|
|
</qn-form-item> |
|
|
|
<qn-footer fixed height="120rpx"> |
|
|
|
<view class="button-area"> |
|
|
|
@ -92,15 +98,15 @@ const accountFields = [ |
|
|
|
{ |
|
|
|
label: '银行账号', |
|
|
|
key: 'accountNumber' |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '开户银行省市编码', |
|
|
|
key: 'bankAddressCode' |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '开户银行联行号', |
|
|
|
key: 'bankBranchId' |
|
|
|
} |
|
|
|
// { |
|
|
|
// label: '开户银行省市编码', |
|
|
|
// key: 'bankAddressCode' |
|
|
|
// }, |
|
|
|
// { |
|
|
|
// label: '开户银行联行号', |
|
|
|
// key: 'bankBranchId' |
|
|
|
// } |
|
|
|
] |
|
|
|
|
|
|
|
const validateFields = [ |
|
|
|
@ -114,6 +120,14 @@ const validateFields = [ |
|
|
|
{ required: true, message: '请输入客服电话' }, |
|
|
|
{ type: 'phone', message: '请输入正确的手机号' } |
|
|
|
] |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: 'bankAddressCode', |
|
|
|
rules: [{ required: true, message: '请输入开户行所属市编码' }] |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: 'bankBranchId', |
|
|
|
rules: [{ required: true, message: '请输入开户行联行号' }] |
|
|
|
} |
|
|
|
] |
|
|
|
export default { |
|
|
|
@ -244,6 +258,9 @@ export default { |
|
|
|
height: 120rpx; |
|
|
|
border: 1px solid #f7f8fa; |
|
|
|
} |
|
|
|
.text { |
|
|
|
font-size: 28rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
.section_1 { |
|
|
|
width: 750rpx; |
|
|
|
|