|
@@ -89,6 +89,7 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+import { downloadUrl } from '@/api/file'
|
|
import {getOrgName} from '@/api/org'
|
|
import {getOrgName} from '@/api/org'
|
|
import { getProfileInfo, getHonorList, getQualificationList, getFeatureList } from '@/api/home0'
|
|
import { getProfileInfo, getHonorList, getQualificationList, getFeatureList } from '@/api/home0'
|
|
export default {
|
|
export default {
|
|
@@ -97,7 +98,7 @@ export default {
|
|
orgName: '',
|
|
orgName: '',
|
|
toScale: 1.0,
|
|
toScale: 1.0,
|
|
show: true,
|
|
show: true,
|
|
- filePrefix: '/proxyApi/file-service/minio-file/download/',
|
|
|
|
|
|
+ filePrefix: '',
|
|
profileInfo: {}, // 企业简介
|
|
profileInfo: {}, // 企业简介
|
|
honorList: [], // 企业荣誉列表
|
|
honorList: [], // 企业荣誉列表
|
|
qualificationList: [], // 企业资质列表
|
|
qualificationList: [], // 企业资质列表
|
|
@@ -125,6 +126,8 @@ export default {
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
async init () {
|
|
async init () {
|
|
|
|
+ this.filePrefix = downloadUrl
|
|
|
|
+
|
|
await getOrgName().then(({data}) => {
|
|
await getOrgName().then(({data}) => {
|
|
this.orgName = data
|
|
this.orgName = data
|
|
})
|
|
})
|