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.

42 lines
1.2 KiB

3 years ago
<template>
<div style="padding: 0 20px;">
<lx-header icon="md-apps" text="预算进展情况" style="margin-bottom: 10px; border: 0px; margin-top: 15px">
<div slot="content"></div>
<slot>
<span style="padding: 0 6px;word-break: keep-all;">年份</span>
<span>
<DatePicker placeholder="请选择年份" type="year" placement="bottom-start" style="width: 160px"></DatePicker>
</span>
<span style="padding: 0 6px;word-break: keep-all;">预算类型</span>
<span>
<Select placeholder="请选择预算类型" type="date" style="width: 160px"></Select>
</span>
<span style="padding: 0 6px;word-break: keep-all;">科室</span>
<span>
<Select placeholder="请选择科室" type="date" style="width: 160px"></Select>
</span>
<Button type="primary" style="margin-left: 10px" ghost>重置</Button>
<Button type="primary" style="margin-left: 10px">查询</Button>
</slot>
</lx-header>
<xy-table></xy-table>
</div>
</template>
<script>
export default {
data() {
return {}
},
methods: {},
}
</script>
<style scoped lang="scss">
</style>