Blame view

antis-ncc-admin/src/views/workFlow/leave-apply-pages/rest-leave-apply/index.vue 427 Bytes
8daf47d0   “wangming”   修改访问地址
1
  <template>
05dda61f   “wangming”   Enhance attendanc...
2
    <leave-apply-page ref="leaveForm" scene="rest" v-on="$listeners" />
8daf47d0   “wangming”   修改访问地址
3
4
5
6
7
8
9
  </template>
  
  <script>
  import LeaveApplyPage from '../components/leave-apply-page'
  
  export default {
    name: 'RestLeaveApplyPage',
05dda61f   “wangming”   Enhance attendanc...
10
11
12
13
14
15
16
17
18
    components: { LeaveApplyPage },
    methods: {
      init(data) {
        this.$refs.leaveForm.init(data)
      },
      dataFormSubmit(eventType) {
        this.$refs.leaveForm.dataFormSubmit(eventType)
      }
    }
8daf47d0   “wangming”   修改访问地址
19
20
  }
  </script>