You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
168 lines
3.3 KiB
168 lines
3.3 KiB
<template>
|
|
<view class="qingshaonian">
|
|
<view class="bd">
|
|
|
|
</view>
|
|
<view class="fd">
|
|
<view class="btn">申请合作</view>
|
|
</view>
|
|
<u-popup v-model="show" mode="center" border-radius="20" :mask-close-able="true" zIndex="21">
|
|
<view class="hezuo">
|
|
<view class="title">合作信息<image src="@/static/cha.png"></image></view>
|
|
<view class="content">
|
|
<view class="item">
|
|
<view class="a"><text>*</text>姓名</view>
|
|
<view class="b">
|
|
<input type="text" placeholder="请输入" />
|
|
</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="a"><text>*</text>手机号</view>
|
|
<view class="b">
|
|
<input type="number" placeholder="请输入" />
|
|
</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="a">所在区域</view>
|
|
<view class="b">
|
|
<picker mode="region">
|
|
<view class="picker picker-on">请输入</view>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="a">公司名称</view>
|
|
<view class="b">
|
|
<input type="text" placeholder="请输入" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="btns">提交</view>
|
|
</view>
|
|
</u-popup>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
show: true
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
page{
|
|
background-color: #fff;
|
|
}
|
|
.qingshaonian{
|
|
padding: 0 25rpx;
|
|
overflow: hidden;
|
|
.hezuo{
|
|
width: 670rpx;
|
|
height: 951rpx;
|
|
background: #FFFFFF;
|
|
border-radius: 20rpx;
|
|
.btns{
|
|
width: 300rpx;
|
|
height: 80rpx;
|
|
background: linear-gradient(0deg, #000000, #3D3B38);
|
|
box-shadow: 0px 4rpx 18rpx 0px rgba(42,41,39,0.34);
|
|
border-radius: 80rpx;
|
|
text-align: center;
|
|
line-height: 80rpx;
|
|
font-weight: 500;
|
|
font-size: 26rpx;
|
|
color: #FFFFFF;
|
|
margin: 0 auto;
|
|
margin-top: 50rpx;
|
|
}
|
|
.title{
|
|
text-align: center;
|
|
padding: 30rpx;
|
|
font-weight: 500;
|
|
font-size: 36rpx;
|
|
color: #222222;
|
|
border-bottom: 1px solid #EAEAEA;
|
|
image{
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
float: right;
|
|
}
|
|
}
|
|
.content{
|
|
.item{
|
|
margin-top: 10rpx;
|
|
padding: 0 30rpx;
|
|
overflow: hidden;
|
|
.a{
|
|
padding: 20rpx 0;
|
|
font-weight: 500;
|
|
font-size: 30rpx;
|
|
color: #212121;
|
|
text{
|
|
color: #E70C0C;
|
|
}
|
|
}
|
|
.b{
|
|
width: 100%;
|
|
input{
|
|
line-height: 80rpx;
|
|
height: 80rpx;
|
|
background: #FFFFFF;
|
|
border-radius: 10rpx;
|
|
border: 1px solid #E5E5E5;
|
|
padding: 0 20rpx;
|
|
box-sizing: border-box;
|
|
font-size: 28rpx;
|
|
color: #000000;
|
|
}
|
|
.picker{
|
|
line-height: 80rpx;
|
|
height: 80rpx;
|
|
background: #FFFFFF;
|
|
border-radius: 10rpx;
|
|
border: 1px solid #E5E5E5;
|
|
padding: 0 20rpx;
|
|
box-sizing: border-box;
|
|
font-size: 28rpx;
|
|
color: #000000;
|
|
&-on{
|
|
color: #808080;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.fd{
|
|
width: 100%;
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
padding: 25rpx;
|
|
overflow: hidden;
|
|
z-index: 8;
|
|
box-sizing: border-box;
|
|
.btn{
|
|
width: 100%;
|
|
line-height: 98rpx;
|
|
background: linear-gradient(0deg, #000000, #3D3B38);
|
|
box-shadow: 0px 4rpx 18rpx 0px rgba(42,41,39,0.34);
|
|
border-radius: 98rpx;
|
|
font-weight: 400;
|
|
font-size: 30rpx;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
}
|
|
}
|
|
.bd{
|
|
|
|
}
|
|
}
|
|
</style>
|
|
|