Commit 45eb7f57 by Tang

feat: 软件下载

parent 0fe56507
......@@ -296,6 +296,13 @@ const routes = [
name: "条码微站",
},
},
{
path: "Book",
component: () => import("@/views/Service/book"),
meta: {
name: "软件下载",
},
},
],
},
],
......
<template>
<div class="search-content barcodev">
<div class="title">软件下载</div>
<div class="body">
<el-tabs v-model="activeName" class="tab-no-bottom">
<el-tab-pane label="条码图书" name="first">
</el-tab-pane>
<el-tab-pane label="软件下载" name="second">
</el-tab-pane>
</el-tabs>
</div>
</div>
</template>
<script>
export default {
data() {
return {
activeName: 'second',
}
},
};
</script>
<style lang="scss">
.barcodev {
p {
font-family: PingFangSC-Regular, PingFang SC;
margin: 20px 0;
font-size: 14px;
font-weight: 400;
color: #414345;
}
img {
width: 100%;
}
.barcodev-title{
display: inline-block;
font-size: 16px;
font-weight: 500;
color: #F26335;
margin: 60px 0 20px;
}
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment