lilishop-uniapp/pages/tabbar/home/template/tpl_flex_three.vue

39 lines
694 B
Vue
Raw Permalink Normal View History

2021-05-13 11:03:32 +08:00
<template>
<div class="layout">
<u-image @click="modelNavigateTo(item)" height="240rpx" width="240rpx" class="image-mode" :src="item.img" v-for="(item, index) in res.list" :key="index">
2021-05-13 11:03:32 +08:00
<u-loading slot="loading"></u-loading>
</u-image>
</div>
</template>
<script>
import { modelNavigateTo } from "./tpl";
2021-05-13 11:03:32 +08:00
export default {
title: "三列单行图片模块",
props: ["res"],
mounted() {
2021-05-17 18:19:26 +08:00
2021-05-13 11:03:32 +08:00
},
data() {
return {
modelNavigateTo,
2021-05-13 11:03:32 +08:00
};
},
};
</script>
<style lang="scss" scoped>
@import "./tpl.scss";
.layout {
2021-05-27 16:24:44 +08:00
padding: 0;
2021-05-13 11:03:32 +08:00
display: flex;
align-items: center;
justify-content: center;
background-size: cover;
}
img {
width: 111px;
}
</style>