金五联管理系统PC前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
jwl-manage-web/src/views/finance/expense/index.vue

29 lines
565 B

<template>
<div class="p20">
<el-tabs v-model="expenseType" tab-position="left">
<el-tab-pane label="报名点报销" name="1">
<RightPane :type="expenseType" />
</el-tab-pane>
<el-tab-pane label="学员成交报销" name="2">
<RightPane :type="expenseType" />
</el-tab-pane>
</el-tabs>
</div>
</template>
<script>
import RightPane from './RightPane';
export default {
components: {
RightPane
},
data() {
return {
expenseType: '1'
};
}
};
</script>
<style lang="scss" scoped></style>