strategySub.vue
1.43 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<template>
<LayoutApp :title="currentTitle" :show-back="true" :back-action="goBack">
<ul>
<li v-for="(item, index) in currentList" :key="index">
<img :src="item.image" alt=""/>
</li>
</ul>
</LayoutApp>
</template>
<script>
import data from './image.json';
export default {
name: 'Strategy',
data() {
return {
currentList: [],
currentTitle: ''
}
},
methods: {
goBack() {
this.$router.go(-1);
}
},
mounted() {
let subName = this.$route.params.subName;
let result = data.result;
switch (subName) {
case 'qualityStandard':
this.currentTitle = '商品质检标准';
this.currentList = result.standardList;
break;
case 'buyerPolicy':
this.currentTitle = '买家须知';
this.currentList = result.buyerList;
break;
case 'sellerPolicy':
this.currentTitle = '卖家协议';
this.currentList = result.sellerList;
break;
case 'qiugouExplain':
this.currentTitle = '什么是求购?';
this.currentList = result.qiugouList;
break;
default:
break;
}
}
};
</script>
<style lang="scss" scoped>
ul {
width: 100%;
list-style: none;
margin: 0;
padding: 0;
li {
position: relative;
width: 100%;
overflow: hidden;
img {
width: 100%;
float: left;
}
}
}
</style>