change-jianli.vue 2.0 KB

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