济菏高速业务端

57 lines
752 B

10 months ago
<template>
7 months ago
<img :src="require('./chartDl.png')" class="iconDl" @click="$emit('export')" v-hasPermi="['service:publicService:export']" />
10 months ago
</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;
10 months ago
width: 18px;
height: 18px;
padding: 3px;
}
.iconDl:hover{
border: 2px solid #55d2b5;
border-radius: 50%;
}
</style>