Blame view

src/components/simplify/simplifyOwnerCarDemo.vue 389 Bytes
0a41b92e   wuxw   开发完成业务受理页面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <template>
    <simplify-owner-car ref="simplifyOwnerCar"></simplify-owner-car>
  </template>
  
  <script>
  import SimplifyOwnerCar from '@/components/simplify/simplifyOwnerCar'
  
  export default {
    name: 'SimplifyOwnerCarDemo',
    components: {
      SimplifyOwnerCar
    },
    methods: {
      openSimplifyOwnerCar(params) {
        this.$refs.simplifyOwnerCar.$emit('switch', params)
      }
    }
  }
  </script>