6.8
This commit is contained in:
26
pageE/more/AfterSalesHelp.vue
Normal file
26
pageE/more/AfterSalesHelp.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<view class="after-sale">
|
||||
<ArticleList :articleList="policyList" :type="type"></ArticleList>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
import ArticleList from '@/components/mine/article-list/index'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
type: '售后政策',
|
||||
policyList: [1,1,1,1, 1, 1, 1]
|
||||
}
|
||||
},
|
||||
components: {
|
||||
ArticleList
|
||||
},
|
||||
methods: {},
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.after-sale {
|
||||
min-height: calc(100vh - var(--window-top));
|
||||
background-color: #ECECEC;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user