Blame view

src/components/simplify/simplifyShopsHireLogDemo.vue 427 Bytes
0a41b92e   wuxw   开发完成业务受理页面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <template>
    <simplify-shops-hire-log ref="simplifyShopsHireLog"></simplify-shops-hire-log>
  </template>
  
  <script>
  import SimplifyShopsHireLog from '@/components/simplify/simplifyShopsHireLog'
  
  export default {
    name: 'SimplifyShopsHireLogDemo',
    components: {
      SimplifyShopsHireLog
    },
    methods: {
      openSimplifyShopsHireLog(params) {
        this.$refs.simplifyShopsHireLog.$emit('switch', params)
      }
    }
  }
  </script>