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.
76 lines
1.4 KiB
76 lines
1.4 KiB
<template>
|
|
|
|
<RefreshView ref="mescrollRef" :hasBack="true" text="加入临时球队" :useDownScroll="false" :useUpScroll="false">
|
|
|
|
|
|
</RefreshView>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
list:[
|
|
{
|
|
logo:"https://www.keaidian.com/uploads/allimg/190424/24110307_8.jpg",
|
|
teamName:"撒大苏打阿萨的骄傲四京东爱睡觉ask就打算殴打送i的1",
|
|
name:"张三",
|
|
number:"100",
|
|
},
|
|
{
|
|
logo:"https://tse1-mm.cn.bing.net/th/id/OIP-C.n0_p3rYRuofABd3XudbZnAHaEo?w=298&h=186&c=7&r=0&o=5&pid=1.7",
|
|
teamName:"临时球队1",
|
|
name:"张三",
|
|
number:"100",
|
|
},
|
|
{
|
|
logo:"https://www.keaidian.com/uploads/allimg/190424/24110307_35.jpg",
|
|
teamName:"临时球队2",
|
|
name:"张三",
|
|
number:"100",
|
|
}
|
|
|
|
]
|
|
}
|
|
},
|
|
methods: {
|
|
nameText(e) {
|
|
this.teamName = e.detail.value
|
|
console.log(this.teamName)
|
|
},
|
|
save() {
|
|
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.inputLay {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-left: 40rpx;
|
|
margin-right: 40rpx;
|
|
margin-top: 40rpx;
|
|
margin-bottom: 28rpx;
|
|
|
|
.input {
|
|
margin-left: 40rpx;
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
justify-content: center;
|
|
width: 100%;
|
|
display: flex;
|
|
margin-top: 100rpx;
|
|
padding: 30rpx;
|
|
font-size: 28rpx;
|
|
color: #FFFFFF;
|
|
background: #007AFF;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
|