change-name.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <template>
  2. <view class="change-name">
  3. <view class="name-box u-flex u-row-between">
  4. <input type="text" maxlength="12" placeholder="请输入姓名" v-model="name.virtual_name">
  5. <text>12</text>
  6. </view>
  7. <view class="name-tips u-flex">
  8. <u-checkbox v-model="value" size="26" active-color="#0C66C2" shape="circle">
  9. <text class="text">显示先生/女士</text>
  10. </u-checkbox>
  11. </view>
  12. <view class="user-down">
  13. <view class="down-btn u-flex">
  14. <text @click="save">保存</text>
  15. </view>
  16. <view class="safe-area-inset-bottom"></view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. value: false,
  25. name: {
  26. name: '',
  27. virtual_name: ''
  28. }
  29. }
  30. },
  31. onLoad(option) {
  32. this.name = JSON.parse(option.name)
  33. if (this.name.name != this.name.virtual_name) {
  34. this.value = true
  35. } else {
  36. this.value = false
  37. }
  38. },
  39. methods: {
  40. save() {
  41. if (!this.name.virtual_name) {
  42. this.$u.toast("请输入姓名")
  43. return
  44. }
  45. if (this.value) {
  46. this.name.name = ''
  47. } else {
  48. this.name.name = this.name.virtual_name
  49. }
  50. const eventChannel = this.getOpenerEventChannel();
  51. eventChannel.emit('getname', this.name);
  52. uni.navigateBack()
  53. }
  54. }
  55. }
  56. </script>
  57. <style lang="scss">
  58. .change-name {
  59. padding: 0 32rpx;
  60. .user-down {
  61. position: fixed;
  62. bottom: 0;
  63. left: 0;
  64. z-index: 99;
  65. width: 750rpx;
  66. background-color: #fff;
  67. .down-btn {
  68. padding: 8rpx 32rpx;
  69. text {
  70. line-height: 88rpx;
  71. background: #0C66C2;
  72. border-radius: 12rpx;
  73. width: 100%;
  74. font-size: 32rpx;
  75. font-family: PingFangSC-Medium, PingFang SC;
  76. font-weight: 500;
  77. color: #FFFFFF;
  78. text-align: center;
  79. }
  80. }
  81. }
  82. .name-tips {
  83. padding: 30rpx 0;
  84. .text {
  85. font-size: 26rpx;
  86. font-family: PingFangSC-Regular, PingFang SC;
  87. font-weight: 400;
  88. color: #666666;
  89. }
  90. }
  91. .name-box {
  92. height: 110rpx;
  93. border-bottom: 2rpx solid #F0F0F0;
  94. input {
  95. flex: 1;
  96. font-size: 32rpx;
  97. margin-right: 10rpx;
  98. }
  99. text {
  100. font-size: 24rpx;
  101. font-family: SFPro-Regular, SFPro;
  102. font-weight: 400;
  103. color: #ACACAC;
  104. }
  105. }
  106. }
  107. </style>