Commit b65b3732 authored by 徐一鸣's avatar 徐一鸣

问答中心列表

parent 2131591b
<template> <template>
<div class="doc_container"> <div class="answer_container">
<div class="content"> <div class="content">
<router-view class="content_box" /> <router-view class="content_box" />
<div class="user_info">header</div> <div class="user_info"></div>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
components: { components: {},
data: () => ({}),
}, watch: {},
data: () => ({ methods: {},
mounted() {},
}),
watch: {
},
methods: {
},
mounted() {
},
}; };
</script> </script>
<style scoped> <style scoped>
.doc_container { .content {
height: calc(100vh - 58px);
display: flex;
justify-content: flex-start;
align-items: stretch;
}
.content{
width: 1200px; width: 1200px;
margin: 0 auto; margin: 0 auto;
position: relative; position: relative;
} }
.content_box{ .content_box {
width: 856px; width: 856px;
height: calc(100vh - 58px);
} }
.user_info{ .user_info {
width: 328px; width: 328px;
position: absolute; height: 328px;
top: 46px; background-color: #fff;
right: 0px; border-radius: 10px;
position: fixed;
top: 104px;
right: calc((100% - 1200px) / 2);
} }
</style> </style>
<template> <template>
<div> <div class="answer_list_container">
list <div class="apass_breadcrumb">
<el-breadcrumb separator="/">
<el-breadcrumb-item to="/technical_support">
技术支持
</el-breadcrumb-item>
<el-breadcrumb-item to="/technical_support/answer_center">
问答中心
</el-breadcrumb-item>
<el-breadcrumb-item>
问答列表
</el-breadcrumb-item>
</el-breadcrumb>
</div>
<div class="main_container"></div>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
props: [],
components: {
},
data() { data() {
return { return {
answerList: [],
}; };
}, },
watch: { computed: {},
},
computed: {
},
created() { created() {
this.getAnwerList();
},
mounted() {
}, },
methods: { methods: {
getAnwerList() {},
}, },
}; };
</script> </script>
<style scoped> <style scoped>
.apass_breadcrumb > .el-breadcrumb {
padding: 12px 0 11px;
}
.main_container {
min-height: calc(100% - 66px);
background-color: #fff;
border-radius: 10px;
margin-bottom: 20px;
}
</style> </style>
...@@ -206,7 +206,7 @@ export default new Router({ ...@@ -206,7 +206,7 @@ export default new Router({
import("@/pages/technical-support/answer-center/detail"), import("@/pages/technical-support/answer-center/detail"),
}, // 问答中心详情 }, // 问答中心详情
], ],
}, // 开发文档管理 }, // 问答中心
], ],
}, // 技术支持 }, // 技术支持
{ {
......
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