change-name.vue 2.2 KB

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