| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <div class="layout">
- <u-image width="140rpx" 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 { 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>
|