flx:兼容路径
This commit is contained in:
parent
0f1e58507b
commit
e5d15cda1a
@ -41,7 +41,7 @@
|
||||
</div>
|
||||
<video
|
||||
v-if="projectData.videoUrl && optionListIndex == 1"
|
||||
:src="$store.state.FILEURL + projectData.videoUrl"
|
||||
:src="projectData.videoUrl.includes('http://') ? projectData.videoUrl : $store.state.FILEURL + projectData.videoUrl"
|
||||
class="topInner videos"
|
||||
autoplay
|
||||
controls
|
||||
@ -77,7 +77,7 @@
|
||||
margin-top: 20px;
|
||||
height: 345px;
|
||||
"
|
||||
:src="fileUrl + imgUrl"
|
||||
:src="imgUrl.includes('http://') ? imgUrl : fileUrl + imgUrl"
|
||||
alt=""
|
||||
/>
|
||||
<!-- <img style="width: 686px;;margin-left: 113px;margin-top: 16px;height: 430px" src="@/assets/images/aa5cd03a486a3faaeb9cf4b8d06405e.png" alt="">-->
|
||||
|
||||
@ -218,6 +218,11 @@ export default {
|
||||
},
|
||||
itemClick(item, index) {
|
||||
console.log("item:::::::::", index);
|
||||
if(item.moduleName == "智能安全帽" && COMPANY == "shzj"){
|
||||
console.log(item, COMPANY);
|
||||
window.open(item.modulePath, "_self")
|
||||
return
|
||||
}
|
||||
|
||||
// console.log(item,this.$store.state.userInfo.account)
|
||||
if (item.moduleName == "智能安全帽系统") {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user