This commit is contained in:
张成
2025-10-08 15:10:33 +08:00
commit 2e1cd65b07
161 changed files with 19936 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<template>
<div class="table-head-tool ss">
<Button shape="circle" v-if="$route.meta.type==='功能'" icon="ios-undo" @click="goBack">返回</Button>
<slot></slot>
</div>
</template>
<script>
export default {
data() {
return {}
},
created() {},
methods: {
goBack() {
this.$router.go(-1)
},
},
}
</script>
<style lang="less" scoped>
</style>