创新服务详情

This commit is contained in:
熊丽君
2022-01-04 17:44:19 +08:00
parent e81db422f4
commit 3797d82cd9
2 changed files with 182 additions and 19 deletions

View File

@ -0,0 +1,45 @@
<template>
<el-breadcrumb separator="/">
<el-breadcrumb-item>
<span class="_one pointer" @click="handleShow">{{
breadcrumbTitle.title
}}</span>
</el-breadcrumb-item>
<el-breadcrumb-item>
<span class="_two">{{ breadcrumbTitle.twoTitle }}</span>
</el-breadcrumb-item>
</el-breadcrumb>
</template>
<script setup>
const props = defineProps({
isShow: {
required: true,
type: Boolean,
},
breadcrumbTitle: {
required: true,
type: Object,
},
});
const emit = defineEmits();
function handleShow() {
emit("update:isShow", !props.isShow);
}
</script>
<style lang="scss" scoped>
.el-breadcrumb {
padding: 20px 0;
._two {
font-size: 16px;
font-weight: 400;
color: #666666;
}
._one {
font-size: 16px;
font-weight: 600 !important;
color: #333333;
}
}
</style>