You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
780 B
Vue

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<view class="content page-box">
<view>
<view style="display: flex;align-items: center;">
<view style="margin-right: 20rpx;">
账号
</view>
<view style="flex:1;margin-bottom: 20rpx;background-color: ghostwhite;padding: 20rpx 24rpx;border-radius: 10px;">
<u--input focus :customStyle="{}" placeholder="账号名/手机号" border="none" clearable></u--input>
</view>
</view>
<u-button @click="toUrl('/subPackages/login/forgotPassword/nuxt')" shape="circle" type="error"
text="下一步"></u-button>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
},
onLoad() {
},
methods: {},
};
</script>
<style lang="scss" scoped>
.content {
padding: 20rpx;
background-color: white;
}
</style>