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
33
34
35
36
37
| <template>
| <div class="layout">
| <div class="box">
| <u-swiper @click="clickSwiper" interval="5000" duration="500" height="350" v-if="res" name="img" :list="res.list">
| <u-loading slot="loading"></u-loading>
| </u-swiper>
| </div>
| </div>
| </template>
|
| <script>
| import { modelNavigateTo } from "./tpl";
| export default {
| title: "导航栏",
| props: ["res"],
| watch: {
| res: {
| handler(newValue, oldValue) {
| this.$set(this, "res", newValue);
| },
| deep: true,
| },
| },
|
| mounted() {
|
| },
| methods: {
| clickSwiper(index) {
| modelNavigateTo(this.res.list[index]);
| },
| },
| };
| </script>
| <style lang="scss" scoped>
| @import "./tpl.scss";
| </style>
|
|