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
| <template>
| <div>
| <div class="flex items-center font-30 textColor" v-if="contentObj.title">
| <img
| v-if="state"
| src="../../assets/image/certificationCenter/kfc.png"
| class="w-36 h-36"
| alt=""
| />
| <img
| v-else
| src="../../assets/image/certificationCenter/nokfc.png"
| class="w-36 h-36"
| alt=""
| />
| <span class="ml-24 textColor">{{ contentObj.title }}</span>
| </div>
| <div
| class="flex items-center mt-44 font-30 justify-between"
| v-for="(item, index) in contentObj.list"
| :key="index"
| >
| <span class="text-grey">{{ item.left }}</span>
| <span class="textColor">{{ item.right }}</span>
| </div>
| </div>
| </template>
|
| <script>
| export default {
| props: {
| state: {
| type: Boolean,
| default: false,
| },
| contentObj: {
| type: Object,
| default() {
| return {
| title: "",
| list: [
| {
| left: "",
| right: "",
| },
| ],
| };
| },
| },
| },
| components: {},
| data() {
| return {};
| },
| methods: {},
| };
| </script>
|
| <style lang="scss" scoped></style>
|
|