remind.vue 553 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view>
  3. <addressBook :isSearch="true" :list="memberItem" @linkTo="memberLink"></addressBook>
  4. </view>
  5. </template>
  6. <script>
  7. import addressBook from '@/components/addressBook.vue'
  8. export default {
  9. name:'remind',
  10. components:{ addressBook },
  11. data() {
  12. return {
  13. textMsg:'',
  14. };
  15. },
  16. onLoad({msg}) {
  17. this.textMsg = msg
  18. },
  19. methods:{
  20. memberLink(e){
  21. // const msg = this.textMsg + e.groupNickName + ' '
  22. // this.$u.vuex('_textMsg', msg)
  23. uni.navigateBack();
  24. }
  25. }
  26. }
  27. </script>
  28. <style lang="scss">
  29. </style>