editName.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <template>
  2. <view class="page">
  3. <view class="inp">
  4. <view class="">
  5. <u--input
  6. placeholder="请输入内容"
  7. border="none"
  8. v-model="name"
  9. @confirm="changename"
  10. ></u--input>
  11. </view>
  12. <text style="color: rgba(34, 34, 34, 0.3)">{{ name.length }}</text>
  13. </view>
  14. <view class="prompt">
  15. {{ i18n.prompt }}
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. name: "张三",
  24. };
  25. },
  26. onLoad(option) {
  27. this.name = option.name;
  28. },
  29. computed: {
  30. i18n() {
  31. return this.$t("index");
  32. },
  33. },
  34. mounted() {
  35. uni.setNavigationBarTitle({
  36. title: this.i18n.editNextname,
  37. });
  38. },
  39. methods: {
  40. changename() {
  41. const eventChannel = this.getOpenerEventChannel();
  42. eventChannel.emit("getname", this.name);
  43. uni.navigateBack();
  44. },
  45. },
  46. };
  47. </script>
  48. <style lang="scss" scoped>
  49. .page {
  50. padding: 20rpx 24rpx;
  51. .inp {
  52. background-color: #fff;
  53. border-radius: 16rpx;
  54. height: 96rpx;
  55. display: flex;
  56. justify-content: space-between;
  57. padding: 0 20px;
  58. align-items: center;
  59. }
  60. }
  61. .prompt {
  62. margin-top: 16rpx;
  63. font-size: 26rpx;
  64. color: rgba(34, 34, 34, 0.6);
  65. }
  66. </style>