| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <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">
- <u-loading slot="loading"></u-loading>
- </u-image>
- </div>
- </template>
- <script>
- import { modelNavigateTo } from "./tpl";
- export default {
- title: "三列单行图片模块",
- props: ["res"],
- mounted() {
-
- },
- data() {
- return {
- modelNavigateTo,
- };
- },
- };
- </script>
- <style lang="scss" scoped>
- @import "./tpl.scss";
- .layout {
- padding: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- background-size: cover;
- }
- img {
- width: 111px;
- }
- </style>
|