Blame view

src/components/simplify/simplifyCarFeeDemo.vue 374 Bytes
b25b036d   wuxw   v1.9 优化日期
1
  <template>
0a41b92e   wuxw   开发完成业务受理页面
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
    <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>