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

32 lines
595 B
Vue
Raw Normal View History

2021-05-13 11:03:32 +08:00
<template>
<div class="layout">
<div class="flex-one" @click="modelNavigateTo(res.list[0])">
<u-image width="100%" mode="aspectFit" height="280rpx" :src="res.list[0].img" alt=""></u-image>
2021-05-13 11:03:32 +08:00
</div>
</div>
</template>
<script>
import { modelNavigateTo } from "./tpl";
2021-05-13 11:03:32 +08:00
export default {
title: "单行图片模块",
2021-05-13 11:03:32 +08:00
data() {
return {
modelNavigateTo,
2021-05-13 11:03:32 +08:00
};
},
props: ["res"],
};
</script>
<style lang="scss" scoped>
@import "./tpl.scss";
.flex-one {
width: 100%;
display: block;
overflow: hidden;
> img {
width: 100%;
height: 100%;
}
}
</style>