2023-05-12 18:16:16 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="entryProcess">
|
2023-05-13 10:37:10 +08:00
|
|
|
|
<view class="record flex">
|
|
|
|
|
<view class="circle"></view>
|
|
|
|
|
<view class="cont-box">
|
|
|
|
|
<view class="title">入驻申请</view>
|
|
|
|
|
<view class="text-box">
|
|
|
|
|
<view class="have-filled" v-if="false"></view>
|
|
|
|
|
<view class="get-through" v-if="true">
|
|
|
|
|
<text>1、填写入驻申请资本资料</text>
|
|
|
|
|
<text>请按照营业执照和店招真实信息填写入驻基
|
|
|
|
|
本材料,进行审核。</text>
|
|
|
|
|
<button>开始填写</button>
|
2023-05-12 18:16:16 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2023-05-13 10:37:10 +08:00
|
|
|
|
</view>
|
2023-05-12 18:16:16 +08:00
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad() {},
|
|
|
|
|
onShow() {},
|
|
|
|
|
methods: {},
|
|
|
|
|
onPullDownRefresh() {
|
|
|
|
|
uni.stopPullDownRefresh()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
.entryProcess {
|
2023-05-13 10:37:10 +08:00
|
|
|
|
height: 100%;
|
2023-05-12 18:16:16 +08:00
|
|
|
|
background: linear-gradient(180deg, #F98649 0%, #F34E45 100%);
|
|
|
|
|
|
|
|
|
|
:last-child {
|
|
|
|
|
.circle {
|
|
|
|
|
&::before {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.record {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-bottom: 14.04rpx;
|
|
|
|
|
|
|
|
|
|
.circle {
|
|
|
|
|
width: 31.58rpx;
|
|
|
|
|
height: 31.58rpx;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
margin: 5px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
clear: both;
|
|
|
|
|
width: 1px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: #EDF7F3;
|
|
|
|
|
margin: 31.58rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cont-box {
|
|
|
|
|
flex: 1;
|
|
|
|
|
margin-left: 7.02rpx;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 31.58rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-box {
|
|
|
|
|
width: 631.58rpx;
|
|
|
|
|
height: 366.67rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 29.82rpx 24.56rpx;
|
|
|
|
|
margin-top: 35.09rpx;
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-13 10:37:10 +08:00
|
|
|
|
|
|
|
|
|
.text-box.get-through {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
2023-05-12 18:16:16 +08:00
|
|
|
|
</style>
|