Blame view

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