nameAuthentication.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view class="pages">
  3. <div class="top">
  4. <div style="line-height:60px;text-align:center;">
  5. 完成身份实名后可享受会员权益,实名信息仅可修改一次
  6. </div>
  7. <u--input :customStyle="{height: '40px'}" placeholder="请输入姓名" border="surround" v-model="value" @change="change"></u--input>
  8. <u--input :customStyle="{height: '40px'}" placeholder="请输入身份证号" border="surround" v-model="value" @change="change"></u--input>
  9. </div>
  10. <div class="save-btn">
  11. <u-button type="primary">保存</u-button>
  12. </div>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. }
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .pages {
  27. width: 100vw;
  28. height: 100vh;
  29. background: #f5f5f5;
  30. }
  31. .top {
  32. background: #fff;
  33. }
  34. .save-btn {
  35. text-align: center;
  36. // margin-top:20px;
  37. position: fixed;
  38. bottom: 0;
  39. width: 100%;
  40. padding: 30px;
  41. box-sizing: border-box;
  42. }
  43. </style>