瀏覽代碼

Merge branch 'develop' of http://39.106.8.246:3003/web/wanda-bm-guide into develop

YaolongHan 4 年之前
父節點
當前提交
ddfebb2ace

+ 9 - 1
src/components/Rotation/src/rotation.vue

@@ -16,11 +16,13 @@
                 <img :src='item.url' alt />
                 <img :src='item.url' alt />
             </el-carousel-item>
             </el-carousel-item>
         </el-carousel>-->
         </el-carousel>-->
+        <!-- 不显示指示器 -->
+        <!-- :indicator-position='rotationImg.length == 1 ? "none":""' -->
         <el-carousel
         <el-carousel
             v-else
             v-else
             style='height:100%;width:100%'
             style='height:100%;width:100%'
             :interval='5000'
             :interval='5000'
-            :indicator-position='rotationImg.length == 1 ? "none":""'
+            indicator-position='none'
             :arrow='rotationImg.length == 1 ? "never":"always"'
             :arrow='rotationImg.length == 1 ? "never":"always"'
             @change='changePic'
             @change='changePic'
         >
         >
@@ -64,6 +66,12 @@ export default {
             }
             }
         }
         }
     },
     },
+    // 解决两张图片时,轮播顺序反向
+    created() {
+        if (this.rotationImg && this.rotationImg.length === 2) {
+            this.rotationImg = [...this.rotationImg, ...this.rotationImg]
+        }
+    },
     mounted() {
     mounted() {
         if (this.type == 2) {
         if (this.type == 2) {
             this.changePic(1)
             this.changePic(1)

+ 1 - 1
src/views/analysis/CoreDeviceReport.vue

@@ -499,7 +499,7 @@ export default {
          */
          */
         getDetailData(val, type) {
         getDetailData(val, type) {
             let param = {
             let param = {
-                assetnum: this.assetnum,
+                // assetnum: this.assetnum,
                 plazaId: this.plazaId,
                 plazaId: this.plazaId,
                 file_type: type === 'equip' ? val.file_type : val.type,
                 file_type: type === 'equip' ? val.file_type : val.type,
                 // file_type: 0,
                 // file_type: 0,

+ 16 - 4
src/views/other/zhsxOtherTable1.vue

@@ -64,7 +64,11 @@
             </el-table-column>
             </el-table-column>
             <el-table-column prop label='附件' width='80'>
             <el-table-column prop label='附件' width='80'>
                 <template slot-scope='{row}'>
                 <template slot-scope='{row}'>
-                    <div v-if='row.glsmsImage' style='cursor:pointer;color: #0091ff;' @click='clickPic(row.glsmsImage)'>{{row.glsmsImage.length+'张'}}</div>
+                    <div
+                        v-if='row.glsmsZhsxfj'
+                        style='cursor:pointer;color: #0091ff;'
+                        @click='clickPic(row.glsmsZhsxfj)'
+                    >{{row.glsmsZhsxfj.length+'张'}}</div>
                     <!-- <div style='cursor:pointer;color: #0091ff;' @click='clickPic'>{{5+'张'}}</div> -->
                     <!-- <div style='cursor:pointer;color: #0091ff;' @click='clickPic'>{{5+'张'}}</div> -->
                     <div v-else>{{'--'}}</div>
                     <div v-else>{{'--'}}</div>
                 </template>
                 </template>
@@ -142,10 +146,18 @@ export default {
     },
     },
     components: { Select },
     components: { Select },
     methods: {
     methods: {
-        clickPic() {
-            if (this.imgUrls.length > 0) {
-                this.$refs.picLargeOpen.open(this.imgUrls)
+        clickPic(row) {
+            this.imgUrl = []
+            if (row) {
+                row.forEach(el => {
+                    let obj = {
+                        name: el.description,
+                        url: el.urlname
+                    }
+                    this.imgUrl.push(obj)
+                })
             }
             }
+            this.$refs.picLargeOpen.open(this.imgUrl)
             /* this.imgUrl = []
             /* this.imgUrl = []
             this.imgUrl2 = []
             this.imgUrl2 = []
             var patternFileExtension = /\.([0-9a-z]+)(?:[\?#]|$)/i
             var patternFileExtension = /\.([0-9a-z]+)(?:[\?#]|$)/i

+ 18 - 2
src/views/room/room4.vue

@@ -49,7 +49,7 @@
                         <div
                         <div
                             v-if='row.glsmsImage'
                             v-if='row.glsmsImage'
                             style='cursor:pointer;color: #0091ff;'
                             style='cursor:pointer;color: #0091ff;'
-                            @click='clickPic(row.glsmsImage)'
+                            @click.stop='clickPic(row.glsmsImage)'
                         >{{row.glsmsImage.length+'张'}}</div>
                         >{{row.glsmsImage.length+'张'}}</div>
                         <div v-else>{{'--'}}</div>
                         <div v-else>{{'--'}}</div>
                     </template>
                     </template>
@@ -65,6 +65,8 @@
                 </el-table-column>
                 </el-table-column>
             </el-table>
             </el-table>
         </div>
         </div>
+        <pic-large ref='picLargeOpen'></pic-large>
+
         <div class='foot'>
         <div class='foot'>
             <el-pagination
             <el-pagination
                 background
                 background
@@ -92,7 +94,8 @@ export default {
             value1: '',
             value1: '',
             searVal: '',
             searVal: '',
             number_format,
             number_format,
-            tableMaxHeight: 0
+            tableMaxHeight: 0,
+            imgUrl: []
         }
         }
     },
     },
     components: { Select },
     components: { Select },
@@ -113,6 +116,19 @@ export default {
                 window.open(`http://gcgl.wanda.cn/maximo/ui/?event=loadapp&value=JXWO&uniqueid=WB_GZGL&uniqueid=${row.wb_gzglid}`)
                 window.open(`http://gcgl.wanda.cn/maximo/ui/?event=loadapp&value=JXWO&uniqueid=WB_GZGL&uniqueid=${row.wb_gzglid}`)
             }
             }
         },
         },
+        clickPic(row) {
+            this.imgUrl = []
+            if (row) {
+                row.forEach(el => {
+                    let obj = {
+                        name: el.description,
+                        url: el.url
+                    }
+                    this.imgUrl.push(obj)
+                })
+            }
+            this.$refs.picLargeOpen.open(this.imgUrl)
+        },
         computedHeight() {
         computedHeight() {
             this.$nextTick(() => {
             this.$nextTick(() => {
                 // 页面渲染完成后的回调
                 // 页面渲染完成后的回调

+ 2 - 2
src/views/room/room5.vue

@@ -25,7 +25,7 @@
                         <div
                         <div
                             v-if='row.glsmsImage'
                             v-if='row.glsmsImage'
                             style='cursor:pointer;color: #0091ff;'
                             style='cursor:pointer;color: #0091ff;'
-                            @click='clickPic(row.glsmsImage)'
+                            @click.stop='clickPic(row.glsmsImage)'
                         >{{row.glsmsImage.length+'张'}}</div>
                         >{{row.glsmsImage.length+'张'}}</div>
                         <div v-else>{{'--'}}</div>
                         <div v-else>{{'--'}}</div>
                     </template>
                     </template>
@@ -136,7 +136,7 @@ export default {
         },
         },
         pageChanged(page) {
         pageChanged(page) {
             this.page = page
             this.page = page
-            this.$emit('Index4Emit', page)
+            this.$emit('Index4Emit', this.page)
         },
         },
         formatter(date) {
         formatter(date) {
             return moment.unix(date / 1000).format('YYYY.MM.DD HH:mm')
             return moment.unix(date / 1000).format('YYYY.MM.DD HH:mm')

+ 1 - 0
vue.config.js

@@ -4,6 +4,7 @@ module.exports = {
         proxy: {
         proxy: {
             '/data': {
             '/data': {
                 target: 'http://60.205.177.43',
                 target: 'http://60.205.177.43',
+                // target: 'http://10.199.143.126',
                 // target: 'http://192.168.200.11:9003', //yll
                 // target: 'http://192.168.200.11:9003', //yll
                 // target: 'http://localhost:6040/data/',
                 // target: 'http://localhost:6040/data/',
                 changeOrigin: true,
                 changeOrigin: true,