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
/**
* @Author wangliang
* @date 20220726
*/
<template>
<div class="body d-page">
<div class="rarle">
<tatle-bar :tatle="tatleName"></tatle-bar>
</div>
<div>
<company-card :params="params"></company-card>
</div>
</div>
</template>
<script lang="ts" >
import {Component, Vue} from "vue-property-decorator";
@Component({
name: "CooperationBusiness",
components: {
},
})
export default class CooperationBusiness extends Vue {
tatleName= "合作企业";
params: any=[
{title:"上海滑索",image:require('@/assets/images/qyimage.png'),commpay:"上海市松江区华硕大道330号",phone:"15879213419"},
{title:"黑龙江中泰",image:require('@/assets/images/qyimage.png'),commpay:"上海市松江区华硕大道330号",phone:"15879213419"},
{title:"黑龙江华夏",image:require('@/assets/images/qyimage.png'),commpay:"上海市松江区华硕大道330号",phone:"15879213419"},
{title:"黑龙江深重集团",image:require('@/assets/images/qyimage.png'),commpay:"上海市松江区华硕大道330号",phone:"15879213419"},
];
}
</script>
<style scoped>
.body{
width: 100%;
height: 100%;
background-color: #ebeef5;
}
</style>