Logo white

antissoft / lvqianmeiye_ERP

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • lvqianmeiye_ERP
  • 绿纤uni-app
  • pagesA
  • paid-leave-apply
  • paid-leave-apply.vue
  • 修改访问地址
    8daf47d0
    “wangming” authored
    2026-03-30 09:58:44 +0800  
    Browse Code »
paid-leave-apply.vue 335 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<template>
	<leave-apply-scene scene="paid" :page-options="pageOptions" />
</template>

<script>
import LeaveApplyScene from '../components/leave-apply-scene.vue'

export default {
	components: {
		LeaveApplyScene
	},
	data() {
		return {
			pageOptions: {}
		}
	},
	onLoad(options) {
		this.pageOptions = options || {}
	}
}
</script>