2020-06-01 08:51:11 +00:00
|
|
|
<template>
|
|
|
|
<view class="mine-help">
|
2020-06-04 00:21:34 +00:00
|
|
|
<ArticleList :articleList="helpList" :type="type"></ArticleList>
|
2020-06-01 08:51:11 +00:00
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script>
|
2020-06-04 00:21:34 +00:00
|
|
|
import ArticleList from '@/components/mine/article-list/index'
|
2020-06-01 08:51:11 +00:00
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2020-06-04 00:21:34 +00:00
|
|
|
type: '使用帮助',
|
2020-06-02 03:42:13 +00:00
|
|
|
helpList: [1,1,1,1, 1, 1, 1]
|
2020-06-01 08:51:11 +00:00
|
|
|
}
|
2020-06-02 07:35:19 +00:00
|
|
|
},
|
2020-06-04 00:21:34 +00:00
|
|
|
components: {
|
|
|
|
ArticleList
|
2020-06-02 07:35:19 +00:00
|
|
|
},
|
2020-06-04 00:21:34 +00:00
|
|
|
methods: {},
|
2020-06-01 08:51:11 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mine-help {
|
2020-06-04 00:21:34 +00:00
|
|
|
min-height: calc(100vh - var(--window-top));
|
2020-06-02 03:42:13 +00:00
|
|
|
background-color: #ECECEC;
|
2020-06-01 08:51:11 +00:00
|
|
|
}
|
|
|
|
</style>
|