Browse Source

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

haojianlong 4 years ago
parent
commit
6d701c86e1

+ 2 - 2
package.json

@@ -12,9 +12,9 @@
     "dependencies": {
         "@mapbox/geojson-merge": "^1.1.1",
         "@saga-web/base": "2.1.24",
-        "@saga-web/big": "1.0.92",
+        "@saga-web/big": "1.0.93",
         "@saga-web/draw": "2.1.105",
-        "@saga-web/feng-map": "1.0.27",
+        "@saga-web/feng-map": "1.0.28",
         "@saga-web/graph": "2.1.117",
         "ant-design-vue": "^1.4.10",
         "axios": "^0.19.2",

+ 9 - 10
public/index.html

@@ -106,14 +106,6 @@
         window.onresize = function () {
             remHandle();
         }
-        window.load = function () {
-            // 指定条问题
-            var wd_fm_info = {
-                profile: {
-                    username: encodeURIComponent('张三')
-                }
-            }
-        }
     </script>
 </head>
 
@@ -124,9 +116,16 @@
             it to continue.</strong>
     </noscript>
     <!-- 置顶条问题 -->
-    <!-- <div style="height:26px;background-color:#efefef;padding:0 10px" id="wd"></div> -->
+    <div style="height:26px;background-color:#efefef;padding:0 10px" id="wd-fm"></div>
     <div id="app"></div>
-
+    <script>
+        // 指定条问题
+        var wd_fm_info = {
+            profile: {
+                username: encodeURIComponent('张三')
+            }
+        }
+    </script>
 </body>
 
 </html>

+ 39 - 17
src/api/httputils.js

@@ -1,6 +1,9 @@
 import axios from 'axios'
 import store from '@/store'
-import { MessageBox } from 'element-ui'
+import router from '@/router'
+import {
+    MessageBox
+} from 'element-ui'
 
 var CancelToken = axios.CancelToken
 var cancel
@@ -20,9 +23,14 @@ const axiosservice = axios.create({
 axiosservice.interceptors.request.use(
     (config) => {
         config.withCredentials = true // 允许携带token ,这个是解决跨域产生的相关问题
+        let isPreview = null
         let token = store.getters['ssoToken']
-        console.log()
-        let isPreview = store.getters['isPreview']
+        if(store.getters['isPreview'] == "null" || store.getters['isPreview'] == "" ){
+           isPreview = 'false'
+        }else{
+           isPreview = store.getters['isPreview']
+        }
+
         // if (config.url.indexOf('mapapp') < 0) {
         //     config.headers = {
         //         'sso-token': token,
@@ -44,26 +52,36 @@ axiosservice.interceptors.request.use(
 )
 
 axiosservice.interceptors.response.use(
-    function(res) {
+    function (res) {
         //在这里对返回的数据进行处理
-        let resp = res.data
+        let resp = res.data;
         if (resp.result === 'unauthc') {
             store.commit('logined', false)
             MessageBox.confirm('未登陆或登陆信息已失效, 是否重新登陆?', '提示', {
-                confirmButtonText: '确定',
-                cancelButtonText: '取消',
-                type: 'error',
-            })
+                    confirmButtonText: '确定',
+                    cancelButtonText: '取消',
+                    type: 'error',
+                })
                 .then((resp) => {
                     window.location.reload()
                 })
-                .catch((error) => {})
-        } else if (resp.result == 'unauthorization') {
-            MessageBox.alert('无权操作', { title: '警告', type: 'error' })
+                .catch((error) => {
+                    console.log('asdfasdfsad')
+                })
+        } else if (resp.error == 'Unauthorized') {
+            MessageBox.alert('无权操作', {
+                title: '警告',
+                type: 'error'
+            })
         }
         return res
     },
-    function(err) {
+    function (err) {
+        if(err.response.status == 401){
+            router.push({
+                path: '/404',
+            })
+        }
         return Promise.reject(err)
     }
 )
@@ -154,7 +172,9 @@ export default {
     download(url, requestData) {
         // 响应类型:arraybuffer, blob
         axiosservice
-            .post(url, requestData, { responseType: 'blob' })
+            .post(url, requestData, {
+                responseType: 'blob'
+            })
             .then((resp) => {
                 let headers = resp.headers
                 let contentType = headers['content-type']
@@ -163,7 +183,9 @@ export default {
                     return false
                 } else {
                     //console.log("下载文件:", resp)
-                    const blob = new Blob([resp.data], { type: contentType })
+                    const blob = new Blob([resp.data], {
+                        type: contentType
+                    })
                     const contentDisposition = resp.headers['content-disposition']
                     let fileName = 'unknown'
                     if (contentDisposition) {
@@ -172,7 +194,7 @@ export default {
                     downFile(blob, fileName)
                 }
             })
-            .catch(function(error) {})
+            .catch(function (error) {})
     },
     axios: axiosservice,
-}
+}

+ 27 - 17
src/components/Legend/src/legend.vue

@@ -30,7 +30,6 @@
                         ref='editLen'
                         :editTable='editTable'
                         @saveNum='saveNum'
-                        @cance='cance'
                         :tableHeigth='tableHeigth'
                     ></lengend-edit>
                 </div>
@@ -59,7 +58,7 @@
                 <!-- </p> -->
             </el-tooltip>
             <!-- 新增分布图 -->
-            <el-tooltip effect='dark' content='新增分布图' placement='left' v-if='floorSelect.length!=floors.length && type==0'>
+            <el-tooltip effect='dark' content='新增分布图1' placement='left' v-if='floorSelect.length!=floors.length && type==0'>
                 <p class='tltk' style='margin-left: -5px;' @click='addFloor'>
                     <img src='@/assets/imgs/bjj.png' alt />
                 </p>
@@ -330,29 +329,38 @@ export default {
         },
         /**
          * @name goToEditer
-         * @description t跳转editer编辑器
+         * @description 跳转editer编辑器
          */
         goToEditer() {
-            if (this.floor) {
-                this.floorSelect.forEach(el => {
-                    if (el.id == this.floor) {
-                        this.floorName = el.name
-                    }
-                })
-            }
+            // let FloorID = this.floor ? this.floor : this.$cookie.get('floorMapId') || 'f1'
+            // let categoryId = this.categoryId ? this.categoryId : this.$cookie.get('categoryId')
+            // let floorName = this.floorName ? this.floorName : this.$cookie.get('floorNow')
+            // let seq = this.$cookie.get('currentFloorId')
 
-            let FloorID = this.floor ? this.floor : this.$cookie.get('floorMapId') || 'f1'
-            let categoryId = this.categoryId ? this.categoryId : this.$cookie.get('categoryId')
-            const { conf } = window.__systemConf
-            const editerUrl = conf[process.env.NODE_ENV + '_editerUrl']
-            let floorName = this.floorName ? this.floorName : this.$cookie.get('floorNow')
+            //主页面(楼层功能,设备设置中的)legend, 楼层参数参数处理
+            let FloorID = this.$cookie.get('floorMapId')
+            let floorName = this.$cookie.get('floorNow')
             let seq = this.$cookie.get('currentFloorId')
-            // 弹窗组件内传入floorInfo,使用其楼层id
-            if (this.floorInfo.gname) {
+            let categoryId = this.$cookie.get('categoryId') //系统
+
+            // 弹窗组件内传入floorInfo, 楼层参数处理
+            if (this.floorInfo.gname && !this.floor) {
                 FloorID = this.floorInfo.gname
                 floorName = this.floorInfo.code
                 seq = this.floorInfo.seq
+                categoryId = this.categoryId
+            }
+            //弹窗组件点击新增楼层,确认的楼层 楼层字段处理
+            if (this.floor) {
+                // 从store中筛选出选中的楼层信息
+                let floorInfo = this.$store.state.floorsArr.filter(item => item.gname === this.floor)[0]
+                FloorID = this.floor
+                floorName = floorInfo.code
+                seq = floorInfo.seq
+                categoryId = this.categoryId
             }
+            const { conf } = window.__systemConf
+            const editerUrl = conf[process.env.NODE_ENV + '_editerUrl']
             let data = `categoryId=${categoryId}&projectId=${this.plazaId}&BuildingID=1&FloorID=${FloorID}&FloorName=${floorName}&fmapID=${this.fmapID}&seq=${seq}&token=${this.ssoToken}`
             let url = editerUrl + 'editer?' + encodeURIComponent(data)
             window.open(url)
@@ -381,6 +389,8 @@ export default {
             // 弹窗组件内传入floorInfo,使用其楼层id
             this.floorInfo.gname && (data.floorId = this.floorInfo.gname)
             queryStatis({ data, postParams }).then(res => {
+                this.$store.commit('SETPLANNUM', '')
+                this.$store.commit('SETTYPENUM', '')
                 this.loading = false
                 let viewTable = []
                 viewTable = res.data.Data ? res.data.Data : []

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

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

+ 1 - 1
src/components/editLengend.vue

@@ -273,7 +273,7 @@ export default {
                 })
             },
             deep: true,
-            immediate:true
+            immediate: true
         }
     }
 }

+ 1 - 2
src/router/index.js

@@ -106,7 +106,6 @@ router.beforeEach(async (to, from, next) => {
             sessionStorage.setItem("SSOTOKEN", to.query.token)
             token = to.query.token
         } else {
-            // to.query.token ? to.query.token : store.getters['ssoToken'] ? store.getters['ssoToken'] : __token
             if (store.getters["ssoToken"]) {
                 token = store.getters["ssoToken"]
             } else if (sessionStorage.getItem("SSOTOKEN")) {
@@ -186,7 +185,7 @@ router.afterEach((to) => {
             console.log("error", res)
         })
 })
-
+// 重定向获取token
 function redirectGetToken (to) {
     let lastRoute = {
         path: to.path,

+ 14 - 28
src/store/index.js

@@ -1,22 +1,16 @@
 import Vue from 'vue'
 import Vuex from 'vuex'
-import {
-    login,
-    queryFloor,
-    queryfmapID
-} from '@/api/login.js'
-import {
-    queryBrand
-} from '@/api/public.js'
+import { login, queryFloor, queryfmapID } from '@/api/login.js'
+import { queryBrand } from '@/api/public.js'
 import axios from 'axios'
 import router from '../router'
 
 Vue.use(Vuex)
 export default new Vuex.Store({
     state: {
-        // ssoToken: 'admin:chuyushu',
+        ssoToken: 'admin:chuyushu',
         // ssoToken: '',
-        ssoToken: null,
+        // ssoToken: null,
         plazaName: '',
         isPreview: false,
         lastRoute: '',
@@ -69,7 +63,7 @@ export default new Vuex.Store({
         isGetmap: (state) => state.isGetmap,
         planNum: (state) => state.planNum,
         typeNum: (state) => state.typeNum,
-        isrequestAuth: (state) => state.isrequestAuth
+        isrequestAuth: (state) => state.isrequestAuth,
     },
     mutations: {
         SETPLAZENAME(state, data) {
@@ -166,18 +160,16 @@ export default new Vuex.Store({
     },
     actions: {
         // 获取项目列表、userId
-        async getUserInfo({
-            commit
-        }, palyload) {
-            console.log('getUserInfo',1)
+        async getUserInfo({ commit }, palyload) {
+            console.log('getUserInfo', 1)
             await login({
-                    returnTree: true,
-                })
+                returnTree: true,
+            })
                 .then((res) => {
                     // 获取用户当前权限
                     console.log(res.result)
                     if (res.result === 'success') {
-                        console.log('getUserInfo',2)
+                        console.log('getUserInfo', 2)
                         commit('STOREACCESSLEVEL', res.level)
                         let level = res.level
                         if (window.opener) {
@@ -207,25 +199,19 @@ export default new Vuex.Store({
                         }
                         // commit('SETISREQUESTtAUTH', false)
                         // commit('SETISREQUESTtAUTH', false)
-                    } else {
-                        console.log('getuserfo error',res)
-                        router.push({
-                            path: '/404',
-                        })
-                        commit('SETISREQUESTtAUTH', res)
                     }
                 })
                 .catch((err) => {
-                    console.log('getuserfo catch',err)
+                    console.log('getuserfo catch', err)
                     // router.push({
                     //     path: '/404',
                     // })
                     commit('SETISREQUESTtAUTH', err)
                 })
-                console.log('getUserInfo',3)
+            console.log('getUserInfo', 3)
         },
         async getFloors(context) {
-          await queryFloor({
+            await queryFloor({
                 plazaId: localStorage.getItem('PLAZAID') || context.state.plazaId,
             }).then((res) => {
                 if (res.result == 'success') {
@@ -259,4 +245,4 @@ export default new Vuex.Store({
         },
     },
     modules: {},
-})
+})

+ 3 - 20
src/views/analysis/CoreDeviceReport.vue

@@ -468,7 +468,7 @@ export default {
             }
             this.showDetail = true
             this.detailTitle = '图片预览'
-            this.getDetailData(val)
+            this.getDetailData(val, type)
         },
         /**
          * 显示附件详情
@@ -492,31 +492,14 @@ export default {
             this.isClickAccessory = true
             this.showAccessory = true
             this.detailTitle = '附件预览'
-            this.getDetailData(val)
-        },
-        /**
-         * 显示附件详情
-         */
-        showReportDetail(val) {
-            console.log('val', val)
-            if (type === 'equip') {
-                if (!val.file_type || !val.file_type_id) {
-                    return
-                }
-            } else {
-                if (!val.attachments_num) {
-                    return
-                }
-            }
-            this.showDetail = true
-            this.detailTitle = '附件预览'
-            this.getDetailData(val)
+            this.getDetailData(val, type)
         },
         /**
          * 获取图片/报告详情
          */
         getDetailData(val, type) {
             let param = {
+                // assetnum: this.assetnum,
                 plazaId: this.plazaId,
                 file_type: type === 'equip' ? val.file_type : val.type,
                 // file_type: 0,

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

@@ -106,7 +106,7 @@
             </div>
             <el-table :data="tableData" max-height="300">
               <el-table-column property="sbjc" label="设备简称"></el-table-column>
-              <el-table-column property="sbjbm" label="设备号"></el-table-column>
+              <el-table-column property="sbjbm" label="设备号"></el-table-column>
               <el-table-column property="cnt" label="设备数"></el-table-column>
               <el-table-column property="wzjc" width="300" label="空间位置"></el-table-column>
             </el-table>

+ 1 - 1
src/views/equipment/index.vue

@@ -405,7 +405,7 @@ export default {
                 .title-box {
                     position: fixed;
                     z-index: 2;
-                    top: 146px;
+                    top: 156px;
                     left: 260px;
                     display: flex;
                     img {

+ 16 - 5
src/views/equipment/table/djspTable.vue

@@ -22,7 +22,7 @@
                 clearable
                 style='width:192px;margin-right:12px'
             ></el-input>
-            <Select @change='getList' v-model='floor' width='180' tipPlace='top' caption='楼层 :' :selectdata='floorSelect'></Select>
+            <Select @change='getList' v-model='floor' width='180' tipPlace='top' caption='楼层 :' :selectdata='floorAllSelect'></Select>
         </div>
         <el-table :data='tableData' :span-method='objectSpanMethod' :border='true' style='width: 100%' @row-click='innerVisible = true'>
             <el-table-column prop='floor' label='楼层' width='50'>
@@ -52,10 +52,11 @@ export default {
     data() {
         return {
             tableData: [],
-            floor: '',
+            floor: '1',
             innerVisible: false, //详情弹框
             shopsnum: '',
-            welldes: ''
+            welldes: '',
+            floorAllSelect: []
         }
     },
     computed: {
@@ -87,7 +88,7 @@ export default {
                 orderBy: `floor,0;welldesm,1;meterbox,1;`,
                 plazaId: this.plazaId
             }
-            if (this.floor) {
+            if (this.floor && this.floor != 1) {
                 getParams.floor = this.floor
             }
             getParams.keyword = ''
@@ -127,6 +128,16 @@ export default {
                     return n
                 })
             })
+        },
+        getFloorAllSelect() {
+            this.floorAllSelect = []
+            this.floorAllSelect.push({
+                name: '全部',
+                id: '1'
+            })
+            this.floorSelect.forEach(el => {
+                this.floorAllSelect.push(el)
+            })
         }
     },
     watch: {
@@ -152,8 +163,8 @@ export default {
     },
     mounted() {
         // this.floor = this.$cookie.get('floorMapId')
-        console.log(this.floor)
         this.getList()
+        this.getFloorAllSelect()
     }
 }
 </script>

+ 32 - 10
src/views/equipment/table/eqDetaileDialog.vue

@@ -16,7 +16,7 @@
             ></el-input>
             <Select v-model='sbglgs' width='180' tipPlace='top' caption='管理归属:' size='small' :selectdata='sbglgsOption' @change='queryTableList'></Select>
             <Select
-                width='146'
+                width='160'
                 style='margin: 0 12px;'
                 v-model='status'
                 tipPlace='top'
@@ -42,7 +42,7 @@
                 tipPlace='top'
                 caption='楼层:'
                 size='small'
-                :selectdata='floorSelect'
+                :selectdata='floorAllSelect'
                 @change='queryTableList'
             ></Select>
             <el-input
@@ -132,13 +132,14 @@ export default {
             sbjc: '',
             brand: '',
             wzjc: '',
-            floor: '',
-            status: '',
+            floor: '1',
+            status: '1',
             manufacturer: '',
             fws: '',
-            sbglgs: '',
+            sbglgs: '1',
             sbglgsOption: [],
-            statusOption: []
+            statusOption: [],
+            floorAllSelect: []
         }
     },
     components: {
@@ -152,6 +153,7 @@ export default {
     mounted() {
         this.queryTableList()
         this.tabFind()
+        this.getFloorAllSelect()
     },
     methods: {
         //序号的方法
@@ -199,7 +201,15 @@ export default {
                 let sb_status = res.data.data.sms_asset.sb_status
                 let sbglgs = res.data.data.sms_asset.sbglgs
                 this.sbglgsOption = []
+                this.sbglgsOption.push({
+                    name: '全部',
+                    id: '1'
+                })
                 this.statusOption = []
+                this.statusOption.push({
+                    name: '全部',
+                    id: '1'
+                })
                 sb_status.forEach(el => {
                     this.statusOption.push({
                         name: el.value,
@@ -242,7 +252,7 @@ export default {
             //输入框搜索
             data.keyword = ''
             if (this.sbjc) {
-                data.keyword += `${this.sbjc}:type_name,assetnum;`
+                data.keyword += `${this.sbjc}:sbjc,assetnum;`
             }
             if (this.brand) {
                 data.keyword += `${this.brand}:brand,sbxh;`
@@ -267,13 +277,13 @@ export default {
                 brand: this.row.brand || '--'
             }
             //下拉筛选
-            if (this.floor) {
+            if (this.floor && this.floor != 1) {
                 postParams.gname = this.floor
             }
-            if (this.sbglgs) {
+            if (this.sbglgs && this.sbglgs != 1) {
                 postParams.sbglgs = this.sbglgs
             }
-            if (this.status) {
+            if (this.status && this.status != 1) {
                 postParams.status = this.status
             }
             queryAsset({ data, postParams }).then(res => {
@@ -281,12 +291,24 @@ export default {
                 this.tableData = res.data.data
                 this.total = res.data.count
             })
+        },
+        getFloorAllSelect() {
+            this.floorAllSelect = []
+            this.floorAllSelect.push({
+                id: '1',
+                name: '全部'
+            })
+            this.floorSelect.forEach(el => {
+                this.floorAllSelect.push(el)
+            })
+            console.log(this.floorAllSelect)
         }
     },
     watch: {
         row: {
             handler(newV, oldV) {
                 this.queryTableList()
+                this.getFloorAllSelect()
                 this.tabFind()
             },
             deep: true

+ 17 - 4
src/views/equipment/table/eqListTable.vue

@@ -30,7 +30,7 @@
                 width='160'
                 tipPlace='top'
                 caption='楼层 :'
-                :selectdata='floorSelect'
+                :selectdata='floorAllSelect'
             ></Select>
             <el-input
                 placeholder='搜索生产厂商'
@@ -112,9 +112,10 @@ export default {
             manufacturer: '',
             sbjc: '',
             row: {},
-            floor: '',
+            floor: '1',
             tableMaxHeight: 0,
-            type_name: ''
+            type_name: '',
+            floorAllSelect: []
         }
     },
     computed: {
@@ -145,7 +146,7 @@ export default {
                 major: this.major
             }
             //下拉
-            if (this.floor) {
+            if (this.floor && this.floor != 1) {
                 postParams.gname = this.floor
             }
             //输入框搜索
@@ -167,6 +168,16 @@ export default {
                 this.tableData = res.data.data
                 this.total = res.data.count
             })
+        },
+        getFloorAllSelect() {
+            this.floorAllSelect = []
+            this.floorAllSelect.push({
+                name: '全部',
+                id: '1'
+            })
+            this.floorSelect.forEach(el => {
+                this.floorAllSelect.push(el)
+            })
         }
     },
     watch: {
@@ -178,6 +189,7 @@ export default {
                     // 页面渲染完成后的回调
                     this.tableMaxHeight = this.$refs.tableBox.offsetHeight
                 })
+                this.getFloorAllSelect()
             }
         },
         /* floor(newV, oldV) {
@@ -202,6 +214,7 @@ export default {
             // 页面渲染完成后的回调
             this.tableMaxHeight = this.$refs.tableBox.offsetHeight
         })
+        this.getFloorAllSelect()
     }
 }
 </script>

+ 1 - 1
src/views/equipment/table/inputDIalog.vue

@@ -81,7 +81,7 @@ export default {
                 gzglid: '',
                 wonum: '',
                 ssfasm: '',
-                status: '',
+                status: '1',
                 yssjwcsj: ''
             }
         }

+ 8 - 4
src/views/equipment/table/otherTable.vue

@@ -101,7 +101,7 @@ export default {
             currentPage: 1,
             size: 10,
             keyword: '',
-            handleresults: '',
+            handleresults: '1',
             handledate: '',
             handleOption: [],
             tableMaxHeight: 0
@@ -144,7 +144,7 @@ export default {
                 getParams.data.handledateEndDate = this.handledate[1] + '000000'
             }
             //下拉
-            if (this.handleresults) {
+            if (this.handleresults && this.handleresults != 1) {
                 getParams.data.handleresults = this.handleresults
             }
             queryQtsx(getParams).then(res => {
@@ -189,6 +189,10 @@ export default {
                 //console.log(res)
                 let handleresults = res.data.data.sms_qtsx.handleresults
                 this.handleOption = []
+                this.handleOption.push({
+                    id: '1',
+                    name: '全部'
+                })
                 handleresults.forEach(el => {
                     this.handleOption.push({
                         name: el.value,
@@ -209,9 +213,9 @@ export default {
             if (newV !== oldV) {
                 this.tabFind()
                 this.getList()
-                 this.$nextTick(() => {
+                this.$nextTick(() => {
                     // 页面渲染完成后的回调
-                    this.tableMaxHeight = this.$refs.tableBox.offsetHeight;
+                    this.tableMaxHeight = this.$refs.tableBox.offsetHeight
                 })
             }
         },

+ 18 - 4
src/views/equipment/table/standTable.vue

@@ -30,7 +30,7 @@
                 width='160'
                 tipPlace='top'
                 caption='楼层 :'
-                :selectdata='floorSelect'
+                :selectdata='floorAllSelect'
             ></Select>
             <el-input
                 clearable
@@ -101,12 +101,13 @@ export default {
             currentPage: 1,
             size: 10,
             keyword: '',
-            floor: '',
+            floor: '1',
             row: {},
             sbjc: '',
             manufacturer: '',
             type_name: '',
-            tableMaxHeight: 0
+            tableMaxHeight: 0,
+            floorAllSelect: []
         }
     },
     props: ['major', 'param', 'InfoName'],
@@ -151,7 +152,7 @@ export default {
                 // floor:this.floor
             }
             //下拉
-            if (this.floor) {
+            if (this.floor && this.floor != 1) {
                 postParams.gname = this.floor
             }
             //输入框搜索
@@ -172,6 +173,17 @@ export default {
                 this.tableData = res.data.data
                 this.total = res.data.count
             })
+        },
+        getFloorAllSelect() {
+            this.floorAllSelect = []
+            this.floorAllSelect.push({
+                name: '全部',
+                id: '1'
+            })
+            this.floorSelect.forEach(el => {
+                this.floorAllSelect.push(el)
+            })
+            console.log(this.floorAllSelect)
         }
     },
     watch: {
@@ -182,6 +194,7 @@ export default {
                     // 页面渲染完成后的回调
                     this.tableMaxHeight = this.$refs.tableBox.offsetHeight
                 })
+                this.getFloorAllSelect()
             }
         },
         /* floor(newV, oldV) {
@@ -205,6 +218,7 @@ export default {
             // 页面渲染完成后的回调
             this.tableMaxHeight = this.$refs.tableBox.offsetHeight
         })
+        this.getFloorAllSelect()
     }
 }
 </script>

+ 6 - 2
src/views/equipment/table/wbTable.vue

@@ -150,12 +150,16 @@ export default {
             size: 10,
             sjjssj: '',
             reportdate: '',
-            ischange: '',
+            ischange: '2',
             sbjc: '',
             formatter,
             number_format,
             changeOption: [
                 {
+                    id: '2',
+                    name: '全部'
+                },
+                {
                     id: '1',
                     name: '是'
                 },
@@ -221,7 +225,7 @@ export default {
                 }
             }
             //下拉
-            if (this.ischange) {
+            if (this.ischange && this.ischange != 2) {
                 // getParams.data.ischangepj = this.ischange
                 getParams.data.ismodel = this.ischange
             }

+ 6 - 2
src/views/equipment/table/wxTable.vue

@@ -150,7 +150,7 @@ export default {
             size: 10,
             reportdate: '',
             sjjssj: '',
-            ischange: '',
+            ischange: '2',
             sbjc: '',
             matters: '',
             wonum: '',
@@ -159,6 +159,10 @@ export default {
             imgUrl: [],
             changeOption: [
                 {
+                    id: '2',
+                    name: '全部'
+                },
+                {
                     id: '1',
                     name: '是'
                 },
@@ -209,7 +213,7 @@ export default {
                 }
             }
             //下拉
-            if (this.ischange) {
+            if (this.ischange && this.ischange != 2) {
                 getParams.data.ismodel = this.ischange
                 // getParams.data.ischangepj = this.ischange
             }

+ 26 - 8
src/views/equipment/table/zwTable.vue

@@ -143,11 +143,12 @@ export default {
             size: 10,
             keyword: '',
             nd: '',
-            lb: '',
-            sxjd: '',
+            lb: '1',
+            sxjd: '1',
             formatter,
             number_format,
-            xm: '',
+            xm: '1',
+            status: '1',
             statusOption: [],
             sxjdOption: [],
             xmOption: [],
@@ -166,9 +167,10 @@ export default {
         },
         //多余输入框监听
         confirm(status, yssjwcsj) {
+            console.log(status)
             this.yssjwcsj = yssjwcsj
             this.status = status
-
+            console.log(this.status)
             this.getList()
         },
         pageChanged(page) {
@@ -219,9 +221,25 @@ export default {
                 let sxjd = res.data.data.sms_zw.sxjd
                 let status = res.data.data.sms_zw.status
                 this.lbOption = []
+                this.lbOption.push({
+                    name: '全部',
+                    id: '1'
+                })
                 this.xmOption = []
+                this.xmOption.push({
+                    id: '1',
+                    name: '全部'
+                })
                 this.sxjdOption = []
+                this.sxjdOption.push({
+                    id: '1',
+                    name: '全部'
+                })
                 this.statusOption = []
+                this.statusOption.push({
+                    id: '1',
+                    name: '全部'
+                })
                 sxjd.forEach(el => {
                     this.sxjdOption.push({
                         name: el.value,
@@ -262,13 +280,13 @@ export default {
             if (this.nd) {
                 getParams.data.nd = this.nd
             }
-            if (this.lb) {
+            if (this.lb && this.lb != 1) {
                 getParams.data.lb = this.lb
             }
-            if (this.xm) {
+            if (this.xm && this.xm != 1) {
                 getParams.data.xm = this.xm
             }
-            if (this.sxjd) {
+            if (this.sxjd && this.sxjd != 1) {
                 getParams.data.sxjd = this.sxjd
             }
             //验收
@@ -280,7 +298,7 @@ export default {
                 getParams.data.lxsjwcsjStartDate = this.lxsjwcsj[0] + '000000'
                 getParams.data.lxsjwcsjEndDate = this.reportdate[1] + '000000'
             }
-            if (this.status) {
+            if (this.status && this.status != 1) {
                 getParams.data.status = this.status
             }
 

+ 104 - 17
src/views/legendLibrary/addForm.vue

@@ -84,19 +84,76 @@
             </div>
         </div>
         <div v-if='ruleForm.Type=="Image"' class='form5'>
-            <div class='form5-top'>上传新图标</div>
-            <div>
-                <el-upload
-                    class='upload-demo'
-                    action='https://jsonplaceholder.typicode.com/posts/'
-                    :http-request='getFile'
-                    :file-list='fileList'
-                    :on-change='handleChange'
-                    :on-remove='handleRemove'
-                >
-                    <el-button size='small' style='color:#1F2329;'>点击上传</el-button>
-                </el-upload>
-            </div>
+            <el-row :gutter='20'>
+                <el-col :span='16'>
+                    <div class='form5-top start'>上传新图标</div>
+                    <div>
+                        <el-upload
+                            class='upload-demo'
+                            action='https://jsonplaceholder.typicode.com/posts/'
+                            :http-request='getFile'
+                            :file-list='fileList'
+                            :on-change='handleChange'
+                            :on-remove='handleRemove'
+                        >
+                            <el-button size='small' style='color:#1F2329;'>点击上传</el-button>
+                        </el-upload>
+                    </div>
+                </el-col>
+                <el-col :span='8'>
+                    <div class='form5-top'>默认图标显示尺寸</div>
+                    <el-input-number
+                        v-model='ruleForm.Size.Width'
+                        @change='handleChangeWidth'
+                        size='small'
+                        :min='1'
+                        :max='2000'
+                        :controls='false'
+                        style='width:72px'
+                    ></el-input-number>
+                    <i style='margin:0 10px'>x</i>
+                    <el-input-number
+                        v-model='ruleForm.Size.Height'
+                        @change='handleChangeHeight'
+                        size='small'
+                        :min='1'
+                        :max='2000'
+                        :controls='false'
+                        style='width:72px'
+                    ></el-input-number>
+                </el-col>
+            </el-row>
+
+            <!-- <el-row :gutter='20'>
+                <el-col :span='8'>
+                    <div>宽</div>
+                    <Select
+                        width='200'
+                        height='40'
+                        v-model='ruleForm.Size.Width'
+                        :isReadOnly='true'
+                        :hideClear='true'
+                        :selectdata='kuan'
+                        :placeholder='"请选择"'
+                        style='margin-bottom:10px'
+                        @change='handleKuan'
+                    />
+                </el-col>
+                <el-col :span='12'>
+                    <div>高</div>
+                    <Select
+                        width='200'
+                        height='40'
+                        v-model='ruleForm.Size.Height'
+                        :isReadOnly='true'
+                        :hideClear='true'
+                        :selectdata='gao'
+                        :placeholder='"请选择"'
+                        style='margin-bottom:10px'
+                        @change='handleGao'
+                    />
+                </el-col>
+            </el-row>-->
         </div>
         <div v-if='ruleForm.Type!="None"' class='form4'>
             <div class='form4-top'>
@@ -169,7 +226,16 @@ export default {
                     name: '线条'
                 }
             ],
-
+            kuan: [
+                { id: '16', name: '16' },
+                { id: '32', name: '32' },
+                { id: '64', name: '64' }
+            ],
+            gao: [
+                { id: '16', name: '16' },
+                { id: '32', name: '32' },
+                { id: '64', name: '64' }
+            ],
             selectedIds: [],
             borderLineOption: [
                 {
@@ -226,11 +292,24 @@ export default {
     props: ['ruleForm', 'title', 'InfosList', 'InfoTypeIdList'],
 
     methods: {
+        handleChangeWidth(val) {
+            this.$set(this.ruleForm.Size, 'Width', val)
+        },
+        handleChangeHeight(val) {
+            this.$set(this.ruleForm.Size, 'Height', val)
+        },
         //业下设备分类和位置分类树形结构
         initQueryDeviceAndPOsition() {
             let postParams = {}
             queryDeviceAndPOsition({ postParams }).then(res => {
-                this.deviceList = res.data
+                this.deviceList = res.data.map(i => {
+                    i.children &&
+                        i.children.map(child => {
+                            child.id = child.id + child.type
+                            child.name = child.name
+                        })
+                    return i
+                })
             })
         },
         handleRemove(file, fileList) {
@@ -465,7 +544,13 @@ export default {
                     }
                     return i
                 })
-            InfoLocal = info
+            InfoLocal = info.map(i => {
+                return {
+                    type: i.id.split('')[i.id.length - 1],
+                    name: i.name,
+                    id: i.id.substr(0, i.id.length - 1)
+                }
+            })
             this.$set(this.ruleForm, 'InfoLocal', InfoLocal)
             this.$set(this.ruleForm, 'InfoSystem', InfoSystem)
         },
@@ -504,6 +589,7 @@ export default {
         }
     },
     mounted() {
+        console.log(this.ruleForm, 'form')
         this.initQueryDeviceAndPOsition()
         this.visualization()
         if (this.title == '修改图例库') {
@@ -644,11 +730,12 @@ export default {
     }
     .form5 {
         width: 720px;
-        height: 86px;
+        // height: 86px;
         background: rgba(245, 246, 247, 1);
         border-radius: 4px;
         margin-top: 20px;
         padding-left: 12px;
+        padding-bottom: 20px;
         .form5-top {
             padding: 12px 0 8px 0;
         }

+ 6 - 0
src/views/legendLibrary/addLegend.vue

@@ -82,6 +82,7 @@ export default {
                 Url: '',
                 LineWidth: '',
                 LineDash: '',
+                Size: { Height: '32', Width: '32' },
                 InfoTypeId: [], //铺位可视化typeid
                 InfoLocal: [], //工程信息化位置与设备分类
                 InfoSystem: [] //工程信息化专业/系统
@@ -122,6 +123,8 @@ export default {
                     FillColor: '#ffffff',
                     Color: '#ffffff',
                     Url: '',
+                    Size: { Height: '32', Width: '32' },
+
                     InfoTypeId: [], //铺位可视化typeid
                     InfoLocal: [], //工程信息化位置与设备分类
                     InfoSystem: [] //工程信息化专业/系统
@@ -137,6 +140,8 @@ export default {
                     FillColor: '#ffffff',
                     Color: '#ffffff',
                     Url: '',
+                    Size: { Height: '32', Width: '32' },
+
                     InfoTypeId: [], //铺位可视化typeid
                     InfoLocal: [], //工程信息化位置与设备分类
                     InfoSystem: [] //工程信息化专业/系统
@@ -170,6 +175,7 @@ export default {
                 FillColor: '#ffffff',
                 Color: '#ffffff',
                 Url: '',
+                Size: { Height: '32', Width: '32' },
                 InfoTypeId: [], //铺位可视化typeid
                 InfoLocal: [], //工程信息化位置与设备分类
                 InfoSystem: [] //工程信息化专业/系统

+ 1 - 1
src/views/legendLibrary/index.vue

@@ -481,7 +481,7 @@ export default {
             })
         },
         getTableList(val) {
-            this.currentPage = val || 1
+            this.currentPage = Number(val) || 1
             this.getTableTata()
         },
 

+ 15 - 3
src/views/other/gcfz2.vue

@@ -9,7 +9,7 @@
                 v-model='cg.floors'
                 size='small'
                 style='margin-right:12px'
-                :selectdata='floorSelect'
+                :selectdata='floorSelect2'
                 :placeholder='"选择楼层"'
             ></Select>
             <el-input
@@ -97,9 +97,16 @@ export default {
             searVal: '',
             cg: {
                 dateVal: '',
-                floors: '',
+                floors: '全部',
                 searVal: ''
-            }
+            },
+            allArr: [
+                {
+                    id: '全部',
+                    name: '全部'
+                }
+            ],
+            floorSelect2: []
         }
     },
     computed: {
@@ -121,6 +128,11 @@ export default {
         indexMethod(index) {
             return (this.page - 1) * this.size + index + 1
         }
+    },
+    mounted() {
+        if (this.floorSelect.length > 0) {
+            this.floorSelect2 = this.allArr.concat(this.floorSelect)
+        }
     }
 }
 </script>

+ 1 - 1
src/views/other/gcfzDialog.vue

@@ -67,7 +67,7 @@ export default {
         },
         changeEmit(val) {
             //console.log(val)
-            if (val.floors) {
+            if (val.floors && val.floors != '全部') {
                 this.floors = val.floors
             }
             if (val.searVal) {

+ 28 - 8
src/views/other/zhsxOtherTable1.vue

@@ -64,7 +64,11 @@
             </el-table-column>
             <el-table-column prop label='附件' width='80'>
                 <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 v-else>{{'--'}}</div>
                 </template>
@@ -98,7 +102,7 @@ export default {
             dateVal: '',
             loading: false,
             zhjlTable: [],
-            searVal: '',
+            searVal: '全部',
             total: 0,
             page: 1,
             size: 10,
@@ -131,15 +135,29 @@ export default {
                     name: '供电系统原理图.png',
                     url: 'http://gcgl.wanda.cn/%E7%BB%B4%E4%BF%AE%E5%B7%A5%E5%8D%95%E4%B8%80/WORKORDER_846049_2019-11-19T15-37-42-716.jpg'
                 }
+            ],
+            allArr: [
+                {
+                    id: '全部',
+                    name: '全部'
+                }
             ]
         }
     },
     components: { Select },
     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.imgUrl2 = []
             var patternFileExtension = /\.([0-9a-z]+)(?:[\?#]|$)/i
@@ -179,7 +197,7 @@ export default {
                 size: this.size,
                 orderBy: 'createdate,0'
             }
-            if (this.searVal) {
+            if (this.searVal && this.searVal != '全部') {
                 getParams.department = this.searVal
             }
             if (this.ssjlsx) {
@@ -215,7 +233,8 @@ export default {
             }
             querySelect({ data, postParams }).then(res => {
                 //console.log('政府部门', res)
-                let department = []
+                let department = [],
+                    newArr = []
                 department = res.data.data.sms_zhsxjl.department ? res.data.data.sms_zhsxjl.department : []
                 if (department.length > 0) {
                     department.forEach(el => {
@@ -223,9 +242,10 @@ export default {
                             id: el.key,
                             name: el.value
                         }
-                        this.department.push(obj)
+                        newArr.push(obj)
                     })
                     //console.log(this.department)
+                    this.department = this.allArr.concat(newArr)
                 }
             })
         },

+ 11 - 4
src/views/other/zhsxOtherTable2.vue

@@ -121,9 +121,15 @@ export default {
             status2: [],
             zgbm: [],
             conclusion: [],
-            ztdsf: '',
+            ztdsf: '全部',
             bmdsf: '',
-            jcjldsf: ''
+            jcjldsf: '',
+            allArr: [
+                {
+                    id: '全部',
+                    name: '全部'
+                }
+            ]
         }
     },
     components: { Select },
@@ -141,7 +147,7 @@ export default {
             if (this.searVal) {
                 getParams.keyword = `${this.searVal}:description`
             }
-            if (this.ztdsf) {
+            if (this.ztdsf && this.ztdsf != '全部') {
                 getParams.status = this.ztdsf
             }
             if (this.bmdsf) {
@@ -194,8 +200,9 @@ export default {
                             id: el.key,
                             name: el.value
                         }
-                        this.status2.push(obj)
+                        status2.push(obj)
                     })
+                    this.status2 = this.allArr.concat(status2)
                 }
                 if (zgbm.length > 0) {
                     zgbm.forEach(el => {

+ 13 - 3
src/views/room/detail.vue

@@ -113,9 +113,9 @@
         >
             <el-table-column type='index' label='序号' width='50'></el-table-column>
             <el-table-column prop='sbjc' label='设备名称' min-width='150' :show-overflow-tooltip='true' resizable>
-                <template slot-scope='{row}'>{{row.type_name||'--'}}</template>
+                <template slot-scope='{row}'>{{row.sbjc||'--'}}</template>
             </el-table-column>
-            <el-table-column prop='assetnum' label='设备内' :show-overflow-tooltip='true'>
+            <el-table-column prop='assetnum' label='设备内' :show-overflow-tooltip='true'>
                 <template slot-scope='{row}'>{{row.assetnum||'--'}}</template>
             </el-table-column>
             <el-table-column prop='sl' label='数量' width='70' :show-overflow-tooltip='true'>
@@ -328,7 +328,7 @@ export default {
                 {
                     columnName: { sbglgs: 'sbglgs', sb_status: 'sb_status' },
                     params: {
-                        type_code: this.type_code
+                        type_code: this.row.type_code
                     },
                     tableName: 'sms_asset'
                 }
@@ -341,6 +341,11 @@ export default {
                 if (res.data.data) {
                     let sb_status = [],
                         sbglgs = []
+                    this.sb_status = []
+                    this.sb_status.push({
+                        id: '',
+                        name: '全部'
+                    })
                     sb_status = res.data.data.sms_asset ? res.data.data.sms_asset.sb_status : []
                     sbglgs = res.data.data.sms_asset ? res.data.data.sms_asset.sbglgs : []
                     if (sb_status.length > 0) {
@@ -352,6 +357,11 @@ export default {
                             this.sb_status.push(obj)
                         })
                     }
+                    this.sbglgs = []
+                    this.sbglgs.push({
+                        name: '全部',
+                        id: ''
+                    })
                     if (sbglgs.length > 0) {
                         sbglgs.forEach(el => {
                             let obj = {

+ 18 - 8
src/views/room/index.vue

@@ -29,7 +29,7 @@
                                 v-model='floor2'
                                 tipPlace='top'
                                 caption='楼层:'
-                                :selectdata='floorSelect'
+                                :selectdata='floorSelect2'
                                 :placeholder='"请选择"'
                                 style='margin-right:12px'
                             ></Select>
@@ -101,7 +101,7 @@
                                 clearable
                                 @keyup.enter.native='Index2'
                                 @blur='Index2'
-                                placeholder='搜索品牌型号'
+                                placeholder='搜索品牌型号'
                                 size='small'
                                 prefix-icon='el-icon-search'
                                 v-model='ppxhInput'
@@ -147,7 +147,7 @@
                                 clearable
                                 @keyup.enter.native='Index3'
                                 @blur='Index3'
-                                placeholder='搜索设备名称编号'
+                                placeholder='搜索设备名称编号'
                                 size='small'
                                 prefix-icon='el-icon-search'
                                 v-model='sbmcInput4'
@@ -157,7 +157,7 @@
                                 clearable
                                 @keyup.enter.native='Index3'
                                 @blur='Index3'
-                                placeholder='搜索事项类型事项描述'
+                                placeholder='搜索事项类型事项描述'
                                 size='small'
                                 prefix-icon='el-icon-search'
                                 v-model='zysxInput4'
@@ -270,7 +270,7 @@
                                 @keyup.enter.native='Index4'
                                 @blur='Index4'
                                 clearable
-                                placeholder='搜索设备名称编号'
+                                placeholder='搜索设备名称编号'
                                 size='small'
                                 prefix-icon='el-icon-search'
                                 v-model='sbmcInput5'
@@ -466,11 +466,17 @@ export default {
             total1: 0,
             page1: 1,
             size1: 10,
-            floor2: '',
+            floor2: '全部',
             ctbhInput: '',
             cxggInput: '',
             djbhInput: '',
             kzhlInput: '',
+            allArr: [
+                {
+                    id: '全部',
+                    name: '全部'
+                }
+            ],
             //
             total2: 0,
             page2: 1,
@@ -589,7 +595,7 @@ export default {
                 page: this.page1,
                 size: this.size1
             }
-            if (this.floor2) {
+            if (this.floor2 && this.floor2 != '全部') {
                 getParams.floor = this.floor2
             }
             if (this.ctbhInput) {
@@ -910,7 +916,11 @@ export default {
             // }
         }
     },
-    mounted() {}
+    mounted() {
+        if (this.floorSelect.length > 0) {
+            this.floorSelect2 = this.allArr.concat(this.floorSelect)
+        }
+    }
 }
 </script>
 <style lang="less" scoped>

+ 19 - 4
src/views/room/room4.vue

@@ -14,7 +14,7 @@
                 <el-table-column prop label='设备名称' show-overflow-tooltip resizable min-width='360'>
                     <template slot-scope='{row}'>{{row.sbmc||'--'}}</template>
                 </el-table-column>
-                <el-table-column prop label='设备内' show-overflow-tooltip resizable width='80'>
+                <el-table-column prop label='设备内' show-overflow-tooltip resizable width='80'>
                     <template slot-scope='{row}'>{{row.location||'--'}}</template>
                 </el-table-column>
                 <el-table-column prop label='事项类型' show-overflow-tooltip resizable min-width='120'>
@@ -49,7 +49,7 @@
                         <div
                             v-if='row.glsmsImage'
                             style='cursor:pointer;color: #0091ff;'
-                            @click='clickPic(row.glsmsImage)'
+                            @click.stop='clickPic(row.glsmsImage)'
                         >{{row.glsmsImage.length+'张'}}</div>
                         <div v-else>{{'--'}}</div>
                     </template>
@@ -65,6 +65,8 @@
                 </el-table-column>
             </el-table>
         </div>
+        <pic-large ref='picLargeOpen'></pic-large>
+
         <div class='foot'>
             <el-pagination
                 background
@@ -92,7 +94,8 @@ export default {
             value1: '',
             searVal: '',
             number_format,
-            tableMaxHeight: 0
+            tableMaxHeight: 0,
+            imgUrl: []
         }
     },
     components: { Select },
@@ -104,7 +107,6 @@ export default {
             return moment.unix(date / 1000).format('YYYY.MM.DD HH:mm')
         },
         pageChanged(page) {
-            this.page = page
             this.$emit('Index3Emit', page)
         },
         //工单详情
@@ -113,6 +115,19 @@ export default {
                 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() {
             this.$nextTick(() => {
                 // 页面渲染完成后的回调

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

@@ -14,7 +14,7 @@
                 <el-table-column prop label='设备名称' show-overflow-tooltip resizable min-width='150'>
                     <template slot-scope='{row}'>{{row.sbmc||'--'}}</template>
                 </el-table-column>
-                <el-table-column prop label='设备内' :show-overflow-tooltip='true' width='80'>
+                <el-table-column prop label='设备内' :show-overflow-tooltip='true' width='80'>
                     <template slot-scope='{row}'>{{row.assetnum||'--'}}</template>
                 </el-table-column>
                 <el-table-column prop label='核心维保事项记录' :show-overflow-tooltip='true' min-width='150'>
@@ -25,7 +25,7 @@
                         <div
                             v-if='row.glsmsImage'
                             style='cursor:pointer;color: #0091ff;'
-                            @click='clickPic(row.glsmsImage)'
+                            @click.stop='clickPic(row.glsmsImage)'
                         >{{row.glsmsImage.length+'张'}}</div>
                         <div v-else>{{'--'}}</div>
                     </template>
@@ -135,7 +135,7 @@ export default {
             return (this.page - 1) * this.size + index + 1
         },
         pageChanged(page) {
-            this.page = page
+            // this.page = page
             this.$emit('Index4Emit', page)
         },
         formatter(date) {

+ 2 - 1
vue.config.js

@@ -3,7 +3,8 @@ module.exports = {
         port: 8090,
         proxy: {
             '/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://localhost:6040/data/',
                 changeOrigin: true,