80 lines
2.1 KiB
Vue
80 lines
2.1 KiB
Vue
<template>
|
||
<view class="help">
|
||
<view class="tit">1、截图保存二维码,微信扫二维码</view>
|
||
<u--image class="box" mode="aspectFit" src="/static/help/0.jpg"></u--image>
|
||
|
||
<view class="tit"
|
||
>2、关注微信支付商家助手->发消息->微信支付商家注册</view
|
||
>
|
||
<u--image class="box" mode="aspectFit" src="/static/help/1.jpg"></u--image>
|
||
|
||
<view class="tit">3、去核实</view>
|
||
<u--image
|
||
class="box"
|
||
mode="aspectFit"
|
||
src="/static/help/101.jpg"
|
||
></u--image>
|
||
|
||
<view class="tit">4、选择商家主体类型</view>
|
||
<view class="desc"
|
||
>如果是营业执照,请选择企业;如果是个人,请选择小微商户,<text class="red">其他类型暂不支持。</text></view
|
||
>
|
||
<u--image class="box" mode="aspectFit" src="/static/help/2.jpg"></u--image>
|
||
|
||
<view class="tit">5、企业类型->金融类型选择“否”</view>
|
||
<u--image class="box" mode="aspectFit" src="/static/help/3.jpg?=v1"></u--image>
|
||
|
||
<view class="tit">6、企业类型->填写企业资料</view>
|
||
<u--image
|
||
class="box"
|
||
mode="aspectFit"
|
||
src="/static/help/301.jpg?=v1"
|
||
></u--image>
|
||
|
||
<view class="tit">6、小微商户类型->填写个人资料</view>
|
||
<u--image class="box" mode="aspectFit" src="/static/help/4.jpg"></u--image>
|
||
|
||
<view class="tit">7、小微商户类型->填写辅佐证明材料->经营类型</view>
|
||
<view class="desc"
|
||
><text class="red">经营类型栏目,一定要选择[线上商品/服务交易],否则无法正常营业分账。</text></view
|
||
>
|
||
<u--image
|
||
class="box"
|
||
mode="aspectFit"
|
||
src="/static/help/401.jpg"
|
||
></u--image>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {};
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.help {
|
||
padding: 32rpx 0;
|
||
.tit {
|
||
font-size: 40rpx;
|
||
padding: 0 32rpx;
|
||
}
|
||
.desc {
|
||
font-size: 32rpx;
|
||
padding: 0 32rpx 24rpx;
|
||
color: #666;
|
||
}
|
||
::v-deep .box {
|
||
padding-top: 24rpx;
|
||
padding-bottom: 48rpx;
|
||
}
|
||
::v-deep .u-image {
|
||
width: 100% !important;
|
||
height: auto !important;
|
||
align-items: center;
|
||
}
|
||
}
|
||
.red{
|
||
color: red;
|
||
font-size: 32rpx;
|
||
}
|
||
</style>
|