forgotPassword.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <!-- 注册 -->
  2. <template>
  3. <view id="register">
  4. <view class="register_li">
  5. <view class="register_li_min">
  6. <view>*</view>
  7. <view>登录账号:</view>
  8. <input v-model="form.name" type="text" placeholder="请输入账号">
  9. </view>
  10. <view class="register_li_min" style="border: none;">
  11. <view>*</view>
  12. <view>手机号:</view>
  13. <input v-model="form.name" type="text" placeholder="请输入注册时填写的手机号码">
  14. </view>
  15. </view>
  16. <view class="sub_btn">提交</view>
  17. </view>
  18. </template>
  19. <script>
  20. import {} from '@/api/apiDemo/index.js'
  21. import { config } from '@/api/request/config.js'
  22. export default {
  23. data() {
  24. return {
  25. form:{
  26. name:'',
  27. },
  28. }
  29. },
  30. onLoad(option) {
  31. },
  32. onShow(){
  33. },
  34. methods: {
  35. }
  36. }
  37. </script>
  38. <style lang="stylus" scoped>
  39. #register{
  40. height:100%;
  41. width:100%;
  42. display flex
  43. flex-direction column;
  44. padding-bottom: 220rpx;
  45. .register_li{
  46. background #fff;
  47. border-radius:20rpx;
  48. margin:20rpx 20rpx 0;
  49. padding:20rpx 0;
  50. box-sizing: border-box;
  51. .register_li_min{
  52. margin:0 26rpx;
  53. display flex;
  54. align-items center;
  55. border-bottom: 1px solid #F5F5F5;
  56. view{
  57. line-height:100rpx;
  58. font-size:28rpx;
  59. }
  60. view:nth-child(1){
  61. color:red;
  62. line-height:28rpx;
  63. margin-right: 12rpx;
  64. }
  65. view:nth-child(2){
  66. width:140rpx;
  67. font-size: 28rpx;
  68. font-family: PingFang SC;
  69. font-weight: 500;
  70. color: #333333;
  71. }
  72. >input{
  73. width 500rpx;
  74. text-align: right;
  75. font-size: 24rpx;
  76. font-family: PingFang SC;
  77. font-weight: 500;
  78. color: #CCCCCC;
  79. }
  80. }
  81. }
  82. /* 按钮 */
  83. .sub_btn{
  84. width: 650rpx;
  85. height: 100rpx;
  86. background: #0183FA;
  87. border-radius: 20rpx;
  88. font-size: 28rpx;
  89. font-family: PingFang SC;
  90. font-weight: 500;
  91. color: #FFFFFF;
  92. line-height: 100rpx;
  93. text-align: center;
  94. margin-left: 50rpx;
  95. position: fixed;
  96. bottom:30rpx;
  97. z-index: 1000;
  98. }
  99. }
  100. /deep/.input-value-border{
  101. display :none !important;
  102. }
  103. </style>