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.
57 lines
752 B
57 lines
752 B
<template>
|
|
<img :src="require('./chartDl.png')" class="iconDl" @click="$emit('export')" v-hasPermi="['service:publicService:export']" />
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: "ChartExport",
|
|
props: {
|
|
|
|
},
|
|
components: {
|
|
},
|
|
provide() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
watch: {
|
|
|
|
},
|
|
methods: {
|
|
//点击事件回调
|
|
exportClick() {
|
|
// let type = para.type;
|
|
console.log(111)
|
|
},
|
|
|
|
},
|
|
mounted() {
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.iconDl{
|
|
margin-left: 10px;
|
|
cursor: pointer;
|
|
z-index: 1900;
|
|
width: 18px;
|
|
height: 18px;
|
|
padding: 3px;
|
|
}
|
|
.iconDl:hover{
|
|
border: 2px solid #55d2b5;
|
|
border-radius: 50%;
|
|
|
|
}
|
|
</style>
|