|
@@ -49,11 +49,10 @@
|
|
<el-image
|
|
<el-image
|
|
v-if="detail.type === 'img'"
|
|
v-if="detail.type === 'img'"
|
|
style="width: 100px; height: 100px"
|
|
style="width: 100px; height: 100px"
|
|
- :src="$cdnUrl + detail.thumb"
|
|
|
|
|
|
+ :src="$cdnUrl + detail.filePath"
|
|
:preview-src-list="bigImgUrl"
|
|
:preview-src-list="bigImgUrl"
|
|
>
|
|
>
|
|
</el-image>
|
|
</el-image>
|
|
- <!-- <img :src="$cdnUrl + detail.thumb" alt="" /> -->
|
|
|
|
<iframe
|
|
<iframe
|
|
v-if="detail.type === 'model'"
|
|
v-if="detail.type === 'model'"
|
|
:src="detail.modelUrl"
|
|
:src="detail.modelUrl"
|
|
@@ -108,7 +107,7 @@ export default {
|
|
// console.log(77777, this.$route.query)
|
|
// console.log(77777, this.$route.query)
|
|
this.detail = this.$route.query
|
|
this.detail = this.$route.query
|
|
// console.log(999,this.detail);
|
|
// console.log(999,this.detail);
|
|
- this.bigImgUrl[0] = this.$cdnUrl + this.detail.thumb
|
|
|
|
|
|
+ this.bigImgUrl[0] = this.$cdnUrl + this.detail.filePath
|
|
this.collectionType = this.detail.navType
|
|
this.collectionType = this.detail.navType
|
|
},
|
|
},
|
|
// 生命周期 - 挂载完成(可以访问DOM元素)
|
|
// 生命周期 - 挂载完成(可以访问DOM元素)
|