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
601 B

3 years ago
<template>
<div>
<el-drawer
size="1050px"
title="执行统计"
:visible.sync="drawer"
direction="rtl">
<div style="padding: 0 10px;">
{{type}}
</div>
</el-drawer>
</div>
</template>
<script>
export default {
data() {
return {
type: 1,//1科室2类型
drawer: false
}
},
methods: {
show () {
this.drawer = true
},
hide () {
this.drawer = false
},
setType (type) {
console.log(type)
this.type = type
}
},
computed: {}
}
</script>
<style scoped lang="scss">
</style>