33 lines
683 B
Vue
33 lines
683 B
Vue
<template>
|
|
<view class="page_padding font13">
|
|
<view class="phone_page contentboxsty">
|
|
<view class="content_row">
|
|
<input placeholder="请输入要更换的手机号码" />
|
|
</view>
|
|
<view class="content_row noborbot">
|
|
<input placeholder="请输入短信验证码" />
|
|
<view class="theme_color">获取验证码</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.phone_page{padding: 0 12px;}
|
|
.content_row{display: flex;height: 49px;align-items: center;border-bottom: 1px solid #2D3A6F;}
|
|
.content_row input{flex: 1;}
|
|
</style>
|