Blame view

pages/template/component-communication/reciver.vue 659 Bytes
4b045f7c   刘淇   江阴初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  <template>
      <view>
          <view class="reciver">
              {{msg===''?'等待发送':'收到消息:'}}{{msg}}
          </view>
      </view>
  </template>
  
  <script>
      export default {
          data() {
              return {
                  msg: ''
              }
          },
          created() {
              uni.$on('cc', this.recive)
          },
          beforeDestroy() {
              uni.$off('cc',this.recive)
          },
          methods: {
              recive(e) {
                  this.msg = e.msg
              }
          }
      }
  </script>
  
  <style>
      .reciver {
          padding: 40px 0px;
          text-align: center;
          line-height: 40px;
      }
  </style>