This commit is contained in:
2020-06-08 15:23:23 +08:00
parent e8c74df8a0
commit 233cb82ee4
44 changed files with 2461 additions and 82 deletions

View File

@@ -2,7 +2,7 @@
<view class="article-list">
<view v-for="(item, index) in articleList" :key="index" class="list-item" @click="toDetailsPage()">
<view>{{ type }}</view>
<img src="@/pageE/static/mine/21.png" />
<image src="@/pageE/static/mine/21.png"></image>
</view>
</view>
</template>
@@ -18,7 +18,7 @@ export default {
methods: {
toDetailsPage() {
uni.navigateTo({
url: '/pageE/mine/ArticleDetails?title=' + this.type
url: '/pageE/mine/ArticleDetails?title=' + this.type + "详情"
});
}
},
@@ -26,7 +26,7 @@ export default {
</script>
<style lang="scss" scoped>
.article-list {
min-height: calc(100vh-var(--custom-bar-height));
min-height: calc(100vh - var(--window-top));
background-color: #ECECEC;
.list-item {
display: flex;
@@ -38,7 +38,7 @@ export default {
padding: 0 30rpx;
font-size: 30rpx;
color: rgba(51,51,51,1);
> img {
> image {
width: 14rpx;
height: 24rpx;
}