增加分销页面,订单增加会员折扣

This commit is contained in:
2025-10-25 16:31:38 +08:00
parent 26532150b5
commit 845d9f7b40
39 changed files with 5988 additions and 43 deletions

View File

@@ -0,0 +1,73 @@
<template>
<view class="min-h-100vh bg-gray">
<view class="box">
<view class="u-flex">
<view class="title">姓名</view>
<view class="u-flex-1 input-box">
<input type="text" class="input" placeholder="请输入姓名" />
</view>
</view>
<view class="u-flex u-m-t-32">
<view class="title">身份证号</view>
<view class="u-flex-1 input-box">
<input type="text" class="input" placeholder="请输入身份证号" />
</view>
</view>
<view class="tips">请输入和当前微信账号为同一实名否则将会提现失败</view>
</view>
<view class="u-m-t-60 u-p-l-28 u-p-r-28">
<view class="submit">提交</view>
<view class="cancel">取消</view>
</view>
</view>
</template>
<style scoped lang="scss">
.min-h-100vh {
padding: 32rpx 28rpx;
}
.tips{
font-size: 24rpx;
line-height: 40rpx;
color: #ff1c1c;
margin-top: 32rpx;
}
.box {
background-color: #fff;
padding: 32rpx 28rpx;
font-size: 28rpx;
color: #333;
.title{
min-width: 160rpx;
}
.input-box {
border-bottom: 2rpx solid #ededed;
.input{
}
}
}
.submit{
background: #FFD158;
border-radius: 100rpx;
padding: 22rpx 288rpx;
font-size: 32rpx;
line-height: 46rpx;
color: #ffffff;
text-align: center;
font-weight: 700;
white-space: nowrap;
}
.cancel{
color: #999999;
white-space: nowrap;
border-radius: 100rpx;
padding: 22rpx 288rpx;
font-size: 32rpx;
line-height: 46rpx;
text-align: center;
}
</style>