84 lines
1.7 KiB
Vue
Raw Normal View History

2024-02-19 10:44:33 +08:00
<template>
2024-04-29 00:01:57 +08:00
<view class="content">
<view class="heder-tips">
简单3步 享开店好礼
2024-03-01 15:55:42 +08:00
</view>
2024-04-29 00:01:57 +08:00
<view class="steps">
<view class="steps-li">
<view class="num">
1
2024-03-16 13:49:31 +08:00
</view>
2024-04-29 00:01:57 +08:00
<view class="" style="font-size: 28rpx;">
添加店铺
2024-03-16 13:49:31 +08:00
</view>
</view>
2024-04-29 00:01:57 +08:00
<u-line color="#99999B" length="148rpx" style="transform: translateY(-80rpx);"></u-line>
<view class="steps-li">
<view class="num">
1
2024-03-01 15:55:42 +08:00
</view>
2024-04-29 00:01:57 +08:00
<view class="" style="font-size: 28rpx;">
添加店铺
2024-02-19 10:44:33 +08:00
</view>
</view>
2024-04-29 00:01:57 +08:00
<u-line color="#99999B" length="148rpx" style="transform: translateY(-80rpx);"></u-line>
<view class="steps-li">
<view class="num">
1
</view>
<view class="" style="font-size: 28rpx;">
添加店铺
2024-02-19 10:44:33 +08:00
</view>
</view>
2024-04-29 00:01:57 +08:00
2024-02-19 10:44:33 +08:00
</view>
2024-04-29 00:01:57 +08:00
<view class="" style="display: flex;align-items: center;margin-top: 30rpx;">
<u--image :showLoading="true" src="/static/images/YDT.png" style="margin: 0 auto;" width="670rpx"
height="202rpx"></u--image>
2024-02-19 10:44:33 +08:00
</view>
2024-04-29 00:01:57 +08:00
<view class="form">
2024-03-12 18:06:08 +08:00
2024-04-29 00:01:57 +08:00
</view>
2024-03-16 13:49:31 +08:00
2024-04-29 00:01:57 +08:00
</view>
</template>
2024-03-01 15:55:42 +08:00
2024-04-29 00:01:57 +08:00
<script>
2024-02-19 10:44:33 +08:00
</script>
2024-04-29 00:01:57 +08:00
<style lang="scss" scoped>
.content {
min-height: 100vh;
2024-02-19 10:44:33 +08:00
background-color: #fff;
2024-04-29 00:01:57 +08:00
padding: 20rpx;
box-sizing: border-box;
2024-03-01 15:55:42 +08:00
2024-04-29 00:01:57 +08:00
.heder-tips {
font-weight: 400;
font-size: 24rpx;
color: #20B128;
2024-03-01 15:55:42 +08:00
text-align: center;
2024-04-29 00:01:57 +08:00
margin-bottom: 50rpx;
2024-03-01 15:55:42 +08:00
}
2024-04-29 00:01:57 +08:00
.steps {
2024-03-01 15:55:42 +08:00
display: flex;
2024-04-29 00:01:57 +08:00
justify-content: center;
// justify-content: space-around;
// align-items: center;
.num {
width: 52rpx;
height: 52rpx;
border-radius: 52rpx;
background-color: #20B128;
color: white;
text-align: center;
line-height: 52rpx;
margin: 0 auto;
margin-bottom: 16rpx;
2024-03-01 15:55:42 +08:00
}
2024-02-19 10:44:33 +08:00
}
}
2024-03-01 15:55:42 +08:00
</style>