123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <template>
- <view class="container register">
- <view class="main">
- <view class="main-item">
- <view class="item" @click.stop="this.$api.navigateTo('/pages/seller/login/register-general')">
- <view class="icon">
- <image src="https://static.caimei365.com/app/img/icon/icon-general.png" mode=""></image>
- </view>
- <view class="text">个人机构</view>
- </view>
- <view class="item" @click.stop="this.$api.navigateTo('/pages/seller/login/register-member')">
- <view class="icon">
- <image src="https://static.caimei365.com/app/img/icon/icon-member.png" mode=""></image>
- </view>
- <view class="text">资质机构</view> <view class="text none">(原会员机构)</view>
- </view>
- </view>
- <view class="main-item-text"> 提示:请尽量搜集客户完整信息,优先注册资质机构 </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {}
- },
- onLoad(option) {},
- computed: {},
- methods: {}
- }
- </script>
- <style lang="scss">
- .register {
- width: 100%;
- height: 100%;
- position: relative;
- box-sizing: border-box;
- padding-top: 100rpx;
- .main {
- width: 100%;
- height: 370rpx;
- .main-item-text {
- width: 100%;
- height: 100rpx;
- float: left;
- box-sizing: border-box;
- margin-top: 150rpx;
- text-align: center;
- font-size: 24rpx;
- line-height: 100rpx;
- color: #fea785;
- }
- .main-item {
- width: 100%;
- height: auto;
- float: left;
- box-sizing: border-box;
- margin-top: 20rpx;
- .item {
- width: 100%;
- height: auto;
- float: left;
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 80rpx;
- .icon {
- width: 190rpx;
- height: 190rpx;
- image {
- width: 190rpx;
- height: 190rpx;
- display: block;
- }
- }
- .text {
- line-height: 54rpx;
- font-size: $font-size-30;
- text-align: center;
- color: #333333;
- &.none {
- color: #999999;
- font-size: $font-size-26;
- line-height: 28rpx;
- }
- }
- .text-small {
- line-height: 54rpx;
- font-size: $font-size-24;
- text-align: center;
- color: #999999;
- }
- }
- }
- }
- }
- </style>
|