change-name.vue 2.4 KB

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