merchapp/java-mall-app-shop-admin/pages/audit/help.vue
2025-11-07 16:13:33 +08:00

80 lines
2.1 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>