1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
| <template>
| <div class="layout">
| <u-image width="140rpx" mode="aspectFit" height="140rpx" @click="modelNavigateTo(item)" class="image-mode" v-for="(item,index) in res.list" :key="index" :src="item.img" alt="">
| <u-loading slot="loading"></u-loading>
| </u-image>
| </div>
| </template>
|
| <script>
| import '@/uview-components/uview-ui'
| import { modelNavigateTo } from "./tpl";
| export default {
| title: "五列单行图片模块",
| props: ["res"],
| data() {
| return {
| modelNavigateTo,
| };
| },
| mounted() {},
| };
| </script>
| <style lang="scss" scoped>
| @import "./tpl.scss";
| .layout {
| display: flex;
| align-items: center;
| justify-content: center;
| background-size: cover;
| }
| </style>
|
|