64 lines
1.9 KiB
Vue
Raw 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="container">
<view class="header">
<view class="header-title">选择入驻类型</view>
<view class="header-desc">请选择您的商家入驻身份</view>
</view>
<view class="type-list">
<!-- 个人入驻 -->
<view class="type-card" @click="chooseType('personal')">
<view class="type-icon">
<image src="https://static.hshuishang.com/property-img-file/icon_personal.png" mode="aspectFit"></image>
</view>
<view class="type-info">
<view class="type-name">个人入驻</view>
<view class="type-desc">适用于个体工商户自然人经营者</view>
</view>
<view class="type-arrow">
<u-icon name="arrow-right" color="#999" size="28"></u-icon>
</view>
</view>
<!-- 企业入驻 -->
<view class="type-card" @click="chooseType('enterprise')">
<view class="type-icon">
<image src="https://static.hshuishang.com/property-img-file/icon_enterprise.png" mode="aspectFit"></image>
</view>
<view class="type-info">
<view class="type-name">企业入驻</view>
<view class="type-desc">适用于企业公司法人</view>
</view>
<view class="type-arrow">
<u-icon name="arrow-right" color="#999" size="28"></u-icon>
</view>
</view>
</view>
<view class="tips">
<view class="tips-title">入驻须知</view>
<view class="tips-item">1. 个人入驻需提供身份证银行卡等个人资质信息</view>
<view class="tips-item">2. 企业入驻需提供营业执照法人身份证对公账户等企业资质信息</view>
<view class="tips-item">3. 提交后将由平台工作人员进行审核预计1-3个工作日</view>
</view>
</view>
</template>
<script>
import { NavgateTo } from '../../../utils';
export default {
data() {
return {}
},
methods: {
chooseType(type) {
NavgateTo('/packages/shopEnter/index/index?enterType=' + type);
}
}
}
</script>
<style>
@import url("./index.css");
</style>