Browse Source

设备设施图片预览问题 修复

yunxing 4 years ago
parent
commit
1e7cc43b46
2 changed files with 6 additions and 3 deletions
  1. 2 2
      src/main.ts
  2. 4 1
      src/views/equipmentFacilities/index.vue

+ 2 - 2
src/main.ts

@@ -19,7 +19,7 @@ import VConsole from 'vconsole'
 // 开发环境引入 vConsole调试工具
 if (process.env.NODE_ENV === 'production' && process.env.VUE_APP_RealEnv !== 'production') {
     // TODO: vConsole
-    new VConsole()
+    // new VConsole()
 }
 const ua = navigator.userAgent
 
@@ -38,7 +38,7 @@ if (process.env.NODE_ENV === 'production') {
     })
 } else {
     // 开发环境
-    new Vue({
+    new Vue({ 
         router,
         store,
         render: (h) => h(App),

+ 4 - 1
src/views/equipmentFacilities/index.vue

@@ -323,6 +323,8 @@ export default {
         async showImage(item) {
             console.log('显示原理图')
             console.log(item)
+            this.imgList = []
+            this.imgKey = 'img_' + new Date().getTime()
             if (Array.isArray(item.typecode)) {
                 return this.getTuJianImage(item)
             }
@@ -344,6 +346,7 @@ export default {
                 imgList.push(item.url)
             })
             this.imgList = imgList
+
             imgList.length && (this.showImgPreview = true)
         },
         /**
@@ -367,7 +370,7 @@ export default {
             }
             let resData = res.data
             let imgList = []
-            resData.map((item) => {
+            resData?.data.map((item) => {
                 imgList.push(item.url)
             })
             this.imgList = imgList