friendDetail.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <custom-layout class="main">
  3. <el-col :span="24" class="elimage">
  4. <el-image class="image" :src="lists" fit="fill" />
  5. </el-col>
  6. <div class="w_1300">
  7. <el-col :span="24" class="one">
  8. <el-descriptions size="large" border>
  9. <el-descriptions-item align="center" label="名称">{{ info.name || '暂无' }}</el-descriptions-item>
  10. <el-descriptions-item align="center" label="LOGO">
  11. <el-image class="image" :src="getUrl(info.file)" fit="fill" />
  12. </el-descriptions-item>
  13. </el-descriptions>
  14. </el-col>
  15. <el-col :span="24" class="two">
  16. <div class="title">上级合作伙伴简介</div>
  17. <div class="content">
  18. <div v-if="info.brief" v-html="info.brief"></div>
  19. </div>
  20. </el-col>
  21. <el-col :span="24" class="thr">
  22. <el-collapse v-model="activeName" @change="handleChange" accordion>
  23. <el-collapse-item :title="item.name" :name="item.id" v-for="(item, index) in list" :key="index">
  24. <div v-if="item.brief" v-html="item.brief"></div>
  25. </el-collapse-item>
  26. </el-collapse>
  27. </el-col>
  28. </div>
  29. </custom-layout>
  30. </template>
  31. <script setup>
  32. // 图片引入
  33. import lists from '/images/company.png'
  34. // 接口
  35. import { FriendStore } from '@/store/api/platform/friend'
  36. const friendStore = FriendStore()
  37. import { UserStore } from '@/store/user'
  38. const userStore = UserStore()
  39. const user = computed(() => userStore.user)
  40. // 加载中
  41. const loading = ref(false)
  42. // 路由
  43. const route = useRoute()
  44. const list = ref([])
  45. const info = ref({})
  46. // 请求
  47. onMounted(async () => {
  48. loading.value = true
  49. await search()
  50. await searchOther()
  51. loading.value = false
  52. })
  53. const search = async () => {
  54. if (route.query.code) {
  55. const data = { skip: 0, limit: 5, is_use: '0', code: route.query.code }
  56. const res = await friendStore.list(data)
  57. if (res.errcode == '0') info.value = res.data[0]
  58. }
  59. }
  60. const searchOther = async () => {
  61. const info = { is_use: '0', parent_code: route.query.code }
  62. const res = await friendStore.list(info)
  63. if (res.errcode == '0') {
  64. list.value = res.data
  65. if (res.total > 0) activeName.value = res.data[0].id
  66. }
  67. }
  68. const getUrl = (item) => {
  69. if (item && item.length > 0) return `${import.meta.env.VITE_APP_HOST}${item[0].uri}`
  70. }
  71. const activeName = ref('1')
  72. const handleChange = (val) => {
  73. console.log(val)
  74. }
  75. </script>
  76. <style scoped lang="scss">
  77. .main {
  78. .elimage {
  79. .image {
  80. width: 100%;
  81. height: 350px;
  82. }
  83. }
  84. .one {
  85. margin: 30px 0;
  86. .image {
  87. width: 200px;
  88. height: 140px;
  89. }
  90. }
  91. .two {
  92. margin: 20px 0 0 0;
  93. .title {
  94. color: #000;
  95. display: inline-block;
  96. margin-right: 80px;
  97. padding-bottom: 20px;
  98. font-size: $global-font-size-20;
  99. color: #000000;
  100. border-bottom: 5px solid #378cff;
  101. cursor: pointer;
  102. }
  103. .content {
  104. padding: 20px;
  105. font-size: $global-font-size-18;
  106. }
  107. }
  108. .thr {
  109. margin: 30px 0;
  110. }
  111. }
  112. </style>