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.
65 lines
992 B
65 lines
992 B
<template>
|
|
<div>
|
|
<xy-dialog
|
|
ref="dialog"
|
|
:is-show.sync="isShow"
|
|
type="normal"
|
|
title="出差审批"
|
|
>
|
|
<xy-table :table-item="table"></xy-table>
|
|
</xy-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
isShow: false,
|
|
table: [
|
|
{
|
|
prop: '',
|
|
label: '资金来源'
|
|
},
|
|
{
|
|
prop: '',
|
|
label: '年份'
|
|
},
|
|
{
|
|
prop: '',
|
|
label: '科室'
|
|
},
|
|
{
|
|
prop: '',
|
|
label: '姓名'
|
|
},
|
|
{
|
|
prop: '',
|
|
label: '报销金额'
|
|
},
|
|
{
|
|
prop: '',
|
|
label: '日期区间'
|
|
},
|
|
{
|
|
prop: '',
|
|
label: '状态'
|
|
},
|
|
]
|
|
}
|
|
},
|
|
methods: {
|
|
show() {
|
|
this.isShow = true;
|
|
},
|
|
hidden() {
|
|
this.isShow = false;
|
|
},
|
|
},
|
|
computed: {},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
</style>
|