guoxiaohuan 4 роки тому
батько
коміт
84a4c6f988

+ 5 - 0
env.prod.js

@@ -0,0 +1,5 @@
+'use strict'
+module.exports = {
+    NODE_ENV: '"production"',
+    VUE_APP_TITLE="production"
+}

+ 5 - 0
env.test.js

@@ -0,0 +1,5 @@
+'use strict'
+module.exports = {
+    NODE_ENV: '"production"',
+    VUE_APP_TITLE="test"
+}

+ 15 - 6
src/components/PicLarge/src/picLarge.vue

@@ -9,15 +9,17 @@
             <div class='pic-list'>
                 <div class='pic-left'>
                     <ul v-for='(item,index) in imgUrl' :key='index'>
-                        <li @click='getIndex(item.url)'>
-                            <img :src='item.url' />
+                        <li @click='getIndex(item)'>
+                            <img :src='item.url' v-if='item.type=="png"' />
+                            <span v-else></span>
                         </li>
-                        <!-- <span>{{item.name}}</span> -->
+                        <span>{{item.name}}</span>
                     </ul>
                 </div>
                 <div class='pic-right'>
                     <div class='pic-right-img'>
-                        <img :src='ImgUrl' />
+                        <img :src='ImgUrl' v-if='this.type=="png"' />
+                        <span v-else style='line-height:540px'>{{`此文件类型为${this.type}类型,无法展示`}}</span>
                     </div>
                 </div>
             </div>
@@ -31,7 +33,8 @@ export default {
     data() {
         return {
             dialogVisible: false,
-            ImgUrl: ''
+            ImgUrl: '',
+            type: ''
         }
     },
     methods: {
@@ -39,7 +42,13 @@ export default {
             this.dialogVisible = true
         },
         getIndex(imgUrl) {
-            this.ImgUrl = imgUrl
+            this.ImgUrl = imgUrl.url
+            this.type = imgUrl.type
+        }
+    },
+    mounted() {
+        if (this.imgUrl.length > 0) {
+            console.log(this.imgUrl)
         }
     },
     computed: {

BIN
src/components/Rotation/src/3440.jpg


+ 2 - 3
src/components/Rotation/src/rotation.vue

@@ -5,10 +5,10 @@
 */
 <template>
     <div :class='[type==1?"rotationFull":(type==3?"rotationFullYlt":"rotation")]' class='wanda-rotation'>
-        <div v-if='rotationImg.length==1&&size=="width"' class='rotationConType'>
+        <div v-if='rotationImg.length==1&&size=="height"' class='rotationConType'>
             <img :src='rotationImg[0].url' alt />
         </div>
-        <div v-else-if='rotationImg.length==1&&size=="height"' class='rotationCon'>
+        <div v-else-if='rotationImg.length==1&&size=="width"' class='rotationCon'>
             <img :src='rotationImg[0].url' alt />
         </div>
         <!-- <el-carousel v-else trigger='click' style='height:100%;width:100%' :interval='5000' arrow='always' @change='changePic' :loop='false'>
@@ -61,7 +61,6 @@ export default {
         if (this.type == 2) {
             this.changePic(1)
         }
-        console.log(this.rotationImg, this.size)
     }
 }
 </script>

+ 4 - 4
src/components/editLengend.vue

@@ -31,17 +31,17 @@
                                             :content='`当前图例 ${row.Name} 与平面图中的不一致,平面图中为${row.RealNum}`'
                                             placement='top'
                                         >
-                                            <el-input @keyup.enter.native='changeTable(row)' v-model='row.Num' size='mini'></el-input>
+                                            <el-input @change='changeTable(row)' v-model='row.Num' size='mini'></el-input>
                                         </el-tooltip>
                                     </div>
                                     <div v-else-if='row.Num==null||row.RealNum==null'>
-                                        <el-input @keyup.enter.native='changeTable(row)' v-model='row.Num' size='mini'></el-input>
+                                        <el-input @change='changeTable(row)' v-model='row.Num' size='mini'></el-input>
                                     </div>
                                     <div v-else-if='!row.Num' class='nullData'>
-                                        <el-input @keyup.enter.native='changeTable(row)' v-model='row.Num' size='mini'></el-input>
+                                        <el-input @change='changeTable(row)' v-model='row.Num' size='mini'></el-input>
                                     </div>
                                     <div v-else style='width:50px'>
-                                        <el-input @keyup.enter.native='changeTable(row)' v-model='row.Num' size='mini'></el-input>
+                                        <el-input @change='changeTable(row)' v-model='row.Num' size='mini'></el-input>
                                     </div>
                                 </div>
 

+ 6 - 6
src/components/menuList.vue

@@ -123,9 +123,9 @@ export default {
         },
         //入草稿箱
         toDrafts() {
-            const { conf } = window.__systemConf;
-                // { editerUrl } = conf;
-            const editerUrl = conf[process.env.NODE_ENV+'_editerUrl'];
+            const { conf } = window.__systemConf
+            // { editerUrl } = conf;
+            const editerUrl = conf[process.env.NODE_ENV + '_editerUrl']
             let data = `projectId=${this.plazaId}&fmapID=${this.fmapID}&token=${this.$store.state.ssoToken}`
             let url = editerUrl + 'drafts?' + encodeURIComponent(data)
             window.open(url, true)
@@ -177,8 +177,8 @@ export default {
         },
 
         dumpLegend() {
-            const { conf } = window.__systemConf;
-            const wandaBmGuideUrl = conf[process.env.NODE_ENV+'_wandaBmGuideUrl'];
+            const { conf } = window.__systemConf
+            const wandaBmGuideUrl = conf[process.env.NODE_ENV + '_wandaBmGuideUrl']
             window.open(`${wandaBmGuideUrl}home/legendLibrary?token=${this.$store.state.ssoToken}`, true)
         }
     }
@@ -286,7 +286,7 @@ export default {
                 border-radius: 90px;
                 font-size: 12px;
                 text-align: center;
-                line-height: 18px;
+                line-height: 16px;
                 color: #ffffff;
             }
         }

+ 7 - 15
src/store/index.js

@@ -1,13 +1,7 @@
 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'
 
@@ -49,7 +43,7 @@ export default new Vuex.Store({
         plazaName: (state) => state.plazaName,
         accessLevel: (state) => state.accessLevel,
         isPreview: (state) => state.isPreview,
-        ssoToken: (state) =>  state.ssoToken,
+        ssoToken: (state) => state.ssoToken,
         lastRoute: (state) => state.lastRoute,
         floorsArr: (state) => state.floorsArr,
         floorSelect: (state) => state.floorSelect,
@@ -154,12 +148,10 @@ export default new Vuex.Store({
     },
     actions: {
         // 获取项目列表、userId
-        async getUserInfo({
-            commit
-        }, palyload) {
+        async getUserInfo({ commit }, palyload) {
             await login({
-                    returnTree: true,
-                })
+                returnTree: true,
+            })
                 .then((res) => {
                     // 获取用户当前权限
                     console.log(res.result)
@@ -242,4 +234,4 @@ export default new Vuex.Store({
         },
     },
     modules: {},
-})
+})

+ 5 - 2
src/views/equipment/eqDialog.vue

@@ -212,7 +212,6 @@ export default {
             }
             queryPic({ getParams }).then(res => {
                 this.rotationImg = res.data || []
-                this.rotationImg[0].url
                 let img = new Image()
                 img.src = this.rotationImg[0].url
                 const vm = this
@@ -287,7 +286,7 @@ export default {
         padding-left: 24px;
         color: #000;
         font-weight: bold;
-        color: #646a73;
+        color: #fff;
         font-weight: normal;
     }
 }
@@ -302,6 +301,10 @@ export default {
 .dialog-container {
     .el-dialog__header {
         padding: 16px 24px;
+        background: linear-gradient(180deg, rgba(54, 156, 247, 1) 0%, rgba(2, 91, 170, 1) 100%);
+    }
+    .el-dialog__headerbtn .el-dialog__close {
+        color: #fff;
     }
     .el-dialog__title {
         font-size: 16px;

+ 12 - 4
src/views/equipment/table/eqDetaileDialog.vue

@@ -43,7 +43,15 @@
                 :selectdata='floorSelect'
                 @change='queryTableList'
             ></Select>
-            <el-input placeholder='搜索安装位置' clearable style='width:180px;margin-right:12px' size='small' prefix-icon='el-icon-search' v-model='wzjc'></el-input>
+            <el-input
+                placeholder='搜索安装位置'
+                @keyup.enter.native='queryTableList'
+                clearable
+                style='width:180px;margin-right:12px'
+                size='small'
+                prefix-icon='el-icon-search'
+                v-model='wzjc'
+            ></el-input>
             <!-- 多余的筛选 -->
             <input-dialog :type='1' @confirm='confirm'></input-dialog>
         </div>
@@ -52,8 +60,8 @@
             <el-table-column prop='sbjc' label='设备名称' show-overflow-tooltip resizable width='230'>
                 <template slot-scope='{row}'>{{row.sbjc || '--'}}</template>
             </el-table-column>
-            <el-table-column prop='sbjbm' label='设备编号' show-overflow-tooltip resizable width='80'>
-                <template slot-scope='{row}'>{{row.sbjbm || '--'}}</template>
+            <el-table-column prop='assetnum' label='设备编号' show-overflow-tooltip resizable width='80'>
+                <template slot-scope='{row}'>{{row.assetnum || '--'}}</template>
             </el-table-column>
             <el-table-column prop='sl' label='数量' width='80'>
                 <template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
@@ -83,7 +91,7 @@
                 <template slot-scope='{row}'>{{row.fws || '--'}}</template>
             </el-table-column>
             <el-table-column prop label='相关资料' show-overflow-tooltip resizable width='100'>
-                <template slot-scope='{row}'>{{ '--'}}</template>
+                <template slot-scope='{row}'>{{'--'}}</template>
             </el-table-column>
         </el-table>
         <div class='foot'>

+ 8 - 6
src/views/equipment/table/tjTable.vue

@@ -6,7 +6,7 @@
                 clearable
                 placeholder='搜索类别'
                 size='small'
-                @blur='getList'
+                @keyup.enter.native='getList'
                 prefix-icon='el-icon-search'
                 v-model='lb'
                 style='width:192px;margin-right:12px'
@@ -26,15 +26,17 @@
             <el-table-column prop='category' label='类别' show-overflow-tooltip resizable>
                 <template slot-scope='{row}'>{{row.category || '--'}}</template>
             </el-table-column>
-            <el-table-column prop='sl' label='数量'>
-                <template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
+            <el-table-column prop='sl' label='数量' align='center' width='130'>
+                <template slot-scope='{row}'>
+                    <div style='text-align:right'>{{row.sl>=0?row.sl:'--'}}</div>
+                </template>
+            </el-table-column>
+            <el-table-column prop='unit' label='单位' width='130' align='center'>
+                <template slot-scope='{row}'>{{row.unit || '--'}}</template>
             </el-table-column>
             <el-table-column prop='brand' label='品牌'>
                 <template slot-scope='{row}'>{{row.brand || '--'}}</template>
             </el-table-column>
-            <el-table-column prop='unit' label='单位'>
-                <template slot-scope='{row}'>{{row.unit || '--'}}</template>
-            </el-table-column>
         </el-table>
         <div class='foot'>
             <el-pagination

+ 3 - 3
src/views/equipment/table/wbTable.vue

@@ -5,7 +5,7 @@
             <el-input
                 placeholder='搜索设备名称编号'
                 size='small'
-                @blur='getList'
+                @keyup.enter.native='getList'
                 prefix-icon='el-icon-search'
                 v-model='sbjc'
                 clearable
@@ -96,7 +96,7 @@
             <el-table-column prop='brand' label='现场照片' width='70'>
                 <template slot-scope='{row}'>
                     <div v-if='row.glsmsImage' style='cursor:pointer;color: #0091ff;' @click='clickPic(row.glsmsImage)'>{{row.glsmsImage.length+'张'}}</div>
-                    <div v-else>{{'---'}}</div>
+                    <div v-else>{{'--'}}</div>
                 </template>
             </el-table-column>
             <el-table-column prop='reportdate' label='填报时间' width='140'>
@@ -107,7 +107,7 @@
             </el-table-column>
             <el-table-column prop='wonum' label='任务编号' show-overflow-tooltip resizable width='90'>
                 <template slot-scope='{row}'>
-                    <div @click='ycgd(row)'>{{row.wb_gzglid || '--'}}</div>
+                    <div @click='ycgd(row)' style='cursor:pointer;color: #0091ff;'>{{row.wb_gzglid || '--'}}</div>
                 </template>
             </el-table-column>
         </el-table>

+ 3 - 1
src/views/equipment/table/wxTable.vue

@@ -110,7 +110,9 @@
                 <template slot-scope='{row}'>{{row.sjjssj?formatter(row.sjjssj): '--'}}</template>
             </el-table-column>
             <el-table-column prop='wonum' label='工单编号' show-overflow-tooltip resizable width='80'>
-                <template slot-scope='{row}'>{{row.wonum || '--'}}</template>
+                <template slot-scope='{row}'>
+                    <div style='cursor:pointer;color: #0091ff;'>{{row.wonum || '--'}}</div>
+                </template>
             </el-table-column>
         </el-table>
         <div class='foot'>

+ 1 - 6
src/views/equipment/table/zwTable.vue

@@ -79,12 +79,7 @@
                 <template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
             </el-table-column>
             <el-table-column prop='ssfasm' label='实施方案说明' show-overflow-tooltip resizable min-width='320'>
-                <template slot-scope='{row}'>
-                    <a
-                        :href='`http://10.199.204.167:7001/maximo/ui/?event=loadapp&value=GCZXWXLINE&uniqueid=${row.ssfasm}`'
-                        target='_blank'
-                    >{{row.ssfasm || '--'}}</a>
-                </template>
+                <template slot-scope='{row}'>{{row.ssfasm || '--'}}</template>
             </el-table-column>
             <el-table-column prop='sxjd' label='当前阶段' show-overflow-tooltip resizable width='80'>
                 <template slot-scope='{row}'>{{row.sxjd || '--'}}</template>

+ 44 - 11
src/views/other/zhsxOtherTable1.vue

@@ -63,16 +63,8 @@
             </el-table-column>
             <el-table-column prop label='附件' width='80'>
                 <template slot-scope='{row}'>
-                    <el-popover placement='right' trigger='hover' v-if='row.glsmsZhsxfj&&row.glsmsZhsxfj.length>0'>
-                        <div>
-                            <p
-                                style='color: rgba(0, 145, 255, 1);cursor: pointer;'
-                                v-for='(item,index) in row.glsmsZhsxfj'
-                                :key='index'
-                            >{{item.description}}</p>
-                        </div>
-                        <div class='fileOpen' slot='reference'>{{row.glsmsZhsxfj.length}}</div>
-                    </el-popover>
+                    <div v-if='row.glsmsImage' style='cursor:pointer;color: #0091ff;' @click='clickPic(row.glsmsImage)'>{{row.glsmsImage.length+'张'}}</div>
+                    <!-- <div style='cursor:pointer;color: #0091ff;' @click='clickPic'>{{5+'张'}}</div> -->
                     <div v-else>{{'--'}}</div>
                 </template>
             </el-table-column>
@@ -87,6 +79,7 @@
                 @next-click='pageChanged'
                 @current-change='pageChanged'
             ></el-pagination>
+            <pic-large v-if='imgUrl.length>0' :imgUrl='imgUrl' ref='picLargeOpen'></pic-large>
         </div>
     </div>
 </template>
@@ -109,11 +102,51 @@ export default {
             size: 10,
             department: [],
             ssjlsx: '',
-            isOpen: true
+            isOpen: true,
+            imgUrl: [],
+            imgUrl2: [],
+            imgUrls: [
+                {
+                    name: '供电系统原理图.png',
+                    url:
+                        'http://10.199.204.168:9080/doclinks/MANAGEINS/2020061921294136524467354%E4%BE%9B%E7%94%B5%E7%B3%BB%E7%BB%9F%E5%8E%9F%E7%90%86%E5%9B%BE.png'
+                },
+                {
+                    name: '供电系统原理图.pdf',
+                    url: 'http://10.199.204.168:9080/doclinks/MANAGEINS/2020061921260429024467352%E5%8C%BA%E4%BD%8D%E5%9B%BE.png'
+                },
+                {
+                    name: '供电系统原理图.html',
+                    url:
+                        'http://10.199.204.168:9080/doclinks/MANAGEINS/2020061921294136524467354%E4%BE%9B%E7%94%B5%E7%B3%BB%E7%BB%9F%E5%8E%9F%E7%90%86%E5%9B%BE.png'
+                }
+            ]
         }
     },
     components: { Select },
     methods: {
+        clickPic() {
+            this.imgUrl = []
+            this.imgUrl2 = []
+            var patternFileExtension = /\.([0-9a-z]+)(?:[\?#]|$)/i
+            if (this.imgUrls.length > 0) {
+                this.imgUrls.forEach(el => {
+                    let name = el.name.match(patternFileExtension)[1]
+                    let obj = {
+                        name: el.name,
+                        url: el.url,
+                        type: name
+                    }
+                    this.imgUrl.push(obj)
+                })
+            }
+            console.log(this.imgUrl)
+            // var fileExtension = '供电系统原理图.html'.match(patternFileExtension)
+            // console.log(fileExtension[1])
+            if (this.imgUrl.length > 0) {
+                this.$refs.picLargeOpen.open()
+            }
+        },
         formatter(date) {
             return moment.unix(date / 1000).format('YYYY.MM.DD')
         },

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

@@ -3,7 +3,7 @@
         <div class='tab-top'>
             <el-input
                 clearable
-                @change='dsfjc'
+                @keyup.enter.native='dsfjc'
                 placeholder='搜索任务名称'
                 size='small'
                 prefix-icon='el-icon-search'

+ 19 - 2
src/views/overview/picModal.vue

@@ -5,7 +5,7 @@
                 src='https://ss0.bdstatic.com/94oJfD_bAAcT8t7mm9GUKT-xh_/timg?image&quality=100&size=b4000_4000&sec=1592807833&di=5adf17cda9f46c37696da5b1d0aec9dc&src=http://a3.att.hudong.com/14/75/01300000164186121366756803686.jpg'
                 alt
             />-->
-            <rotation :key='key' :type='1' v-if='rotationImg.length>0' :rotationImg='rotationImg' style='height:100%;width:100%'></rotation>
+            <rotation :size='sizePic' :key='key' :type='3' v-if='rotationImg.length>0' :rotationImg='rotationImg' style='height:100%;width:100%'></rotation>
             <span class='close' @click='close'>X</span>
         </el-dialog>
     </div>
@@ -18,7 +18,9 @@ export default {
             dialogVisible: false,
             mode: 'top',
             rotationImg: [],
-            key: 1
+            key: 1,
+            sizePic: '',
+            imgInfo: {}
         }
     },
     methods: {
@@ -26,6 +28,21 @@ export default {
             this.key++
             this.dialogVisible = true
             this.rotationImg = params
+            if (this.rotationImg.length > 0) {
+                let img = new Image()
+                img.src = this.rotationImg[0].url
+                const vm = this
+                img.onload = function() {
+                    vm.$set(vm.imgInfo, 'width', img.width)
+                    vm.$set(vm.imgInfo, 'height', img.height)
+                    if (vm.imgInfo.width > vm.imgInfo.height) {
+                        vm.sizePic = 'width'
+                    } else {
+                        vm.sizePic = 'height'
+                    }
+                    console.log(vm.sizePic)
+                }
+            }
         },
         close() {
             this.dialogVisible = false

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

@@ -114,8 +114,8 @@
             <el-table-column prop='sbjc' label='设备名称' min-width='150' :show-overflow-tooltip='true' resizable>
                 <template slot-scope='{row}'>{{row.sbjc||'--'}}</template>
             </el-table-column>
-            <el-table-column prop='sbbh' label='设备编号' :show-overflow-tooltip='true'>
-                <template slot-scope='{row}'>{{row.sbbh||'--'}}</template>
+            <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'>
                 <template slot-scope='{row}'>{{row.sl||'--'}}</template>

+ 38 - 28
src/views/room/index.vue

@@ -877,31 +877,6 @@ export default {
 </script>
 <style lang="less" scoped>
 .compute-box {
-    /deep/ .el-dialog {
-        // padding: 16px 20px 20px;
-        overflow: hidden;
-        .el-dialog__header {
-            padding: 0;
-            font-size: 16px;
-            font-family: PingFangSC-Medium, PingFang SC;
-            font-weight: 500;
-            color: rgba(0, 0, 0, 0.85);
-            height: 60px;
-            line-height: 60px;
-            background: #f1f2f2;
-            padding-left: 20px;
-            // padding-bottom: 16px;
-        }
-        .el-dialog__headerbtn {
-            top: 0;
-        }
-        .el-dialog__body {
-            padding: 0 24px;
-            .is-active {
-                background: rgba(2, 91, 170, 0.15);
-            }
-        }
-    }
     .compute-zf {
         width: 15px;
         height: 13px;
@@ -910,14 +885,15 @@ export default {
         background-size: 100% 100%;
         position: absolute;
         right: 74px;
-        top: 25px;
+        top: 24px;
         cursor: pointer;
         &::after {
             content: '';
             position: absolute;
+            top: -2px;
             right: -16px;
             width: 1px;
-            height: 16px;
+            height: 15px;
             background: rgba(216, 216, 216, 1);
         }
     }
@@ -995,17 +971,51 @@ export default {
 </style>
 <style lang="less">
 .compute-box {
+    .el-dialog__header {
+        padding: 16px 24px;
+        background: linear-gradient(180deg, rgba(54, 156, 247, 1) 0%, rgba(2, 91, 170, 1) 100%);
+    }
+    .el-dialog__headerbtn .el-dialog__close {
+        color: #fff;
+    }
     .compute-tab {
+        /deep/ .el-dialog {
+            // padding: 16px 20px 20px;
+            overflow: hidden;
+            .el-dialog__header {
+                padding: 0;
+                font-size: 16px;
+                font-family: PingFangSC-Medium, PingFang SC;
+                font-weight: 500;
+                // color: rgba(0, 0, 0, 0.85);
+                height: 60px;
+                line-height: 60px;
+                // background: #f1f2f2;
+                padding-left: 20px;
+                // padding-bottom: 16px;
+            }
+            .el-dialog__headerbtn {
+                top: 0;
+            }
+            .el-dialog__body {
+                padding: 0 24px;
+                .is-active {
+                    background: rgba(2, 91, 170, 0.15);
+                }
+            }
+        }
+
         .el-dialog__title {
             font-size: 16px;
             font-family: PingFangSC-Medium, PingFang SC;
             font-weight: 500;
-            color: rgba(0, 0, 0, 0.85);
+            color: #ffffff;
             line-height: 60px;
         }
         .el-dialog__body {
             padding: 0 24px;
         }
+
         .el-tabs--bottom .el-tabs__item.is-bottom:nth-child(2),
         .el-tabs--bottom .el-tabs__item.is-top:nth-child(2),
         .el-tabs--top .el-tabs__item.is-bottom:nth-child(2),

+ 1 - 1
src/views/room/room1.vue

@@ -1,6 +1,6 @@
 <template>
     <div class='jf-inner' style='width:100%;overflow:hidden'>
-        <rotation :rotationImg='tableImg' :type='3'></rotation>
+        <rotation size='width' :rotationImg='tableImg' :type='3'></rotation>
     </div>
 </template>
 <script>

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

@@ -1135,7 +1135,7 @@ export default {
                     border-radius: 90px;
                     font-size: 1.2rem;
                     text-align: center;
-                    line-height: 18px;
+                    line-height: 16px;
                     color: #ffffff;
                 }
             }

+ 15 - 14
src/views/table/index.vue

@@ -27,11 +27,11 @@
             <el-table-column prop='type' label='type' width='180'></el-table-column>
             <el-table-column prop='professional' label='professional'></el-table-column>
             <el-table-column prop='unit' label='unit'></el-table-column>
-            <el-table-column prop='seq0' label='seq0'></el-table-column>
+            <!-- <el-table-column prop='seq0' label='seq0'></el-table-column>
             <el-table-column prop='seq1' label='seq1'></el-table-column>
             <el-table-column prop='seq2' label='seq2'></el-table-column>
             <el-table-column prop='seq3' label='seq3'></el-table-column>
-            <el-table-column prop='seq4' label='seq4'></el-table-column>
+            <el-table-column prop='seq4' label='seq4'></el-table-column>-->
         </el-table>
     </div>
 </template>
@@ -182,18 +182,19 @@ export default {
     created() {
         console.log('--------------------- Table1 created')
         let tableData = [
-            { siteid: '1000423', type: '总包', professional: '土建', unit: '中建二局' },
-            { siteid: '1000423', type: '分包', professional: '电梯', unit: '上海三菱' },
-            { siteid: '1000423', type: '总包', professional: '消防电', unit: '中建二局2' },
-            { siteid: '1000423', type: '总包', professional: '机电', unit: '中建二局' },
-            { siteid: '1000423', type: '分包', professional: '精装', unit: '深圳嘉信' },
-            { siteid: '1000423', type: '总包', professional: '给排水', unit: '中建二局' },
-            { siteid: '1000423', type: '分包', professional: '幕墙', unit: '中建二局' },
-            { siteid: '1000423', type: '分包', professional: '精装', unit: '深圳艺涛' },
-            { siteid: '1000423', type: '分包', professional: '采光顶', unit: '上海通用' },
-            { siteid: '1000423', type: '分包', professional: '空调', unit: '武汉三重' },
-            { siteid: '1000423', type: '总包', professional: '弱电', unit: '中建二局' },
-            { siteid: '1000423', type: '分包', professional: '消防水', unit: '辽宁强盾' }
+            { siteid: '1000423', type: '总包', professional: '土建', unit: '中建二局 15625857784' },
+            { siteid: '1000423', type: '分包', professional: '电梯', unit: '上海三菱 15625857784' },
+            { siteid: '1000423', type: '总包', professional: '消防电', unit: '中建二局215625857784' },
+            { siteid: '1000423', type: '总包', professional: '机电', unit: '中建二局15625857784' },
+            { siteid: '1000423', type: '总包', professional: '机电', unit: '中建二局15625857784' },
+            { siteid: '1000423', type: '分包', professional: '精装', unit: '深圳嘉信15625857784' },
+            { siteid: '1000423', type: '总包', professional: '给排水', unit: '中建二局15625857784' },
+            { siteid: '1000423', type: '分包', professional: '幕墙', unit: '中建二局15625857784' },
+            { siteid: '1000423', type: '分包', professional: '精装', unit: '深圳艺涛15625857784' },
+            { siteid: '1000423', type: '分包', professional: '采光顶', unit: '上海通用15625857784' },
+            { siteid: '1000423', type: '分包', professional: '空调', unit: '武汉三重15625857784' },
+            { siteid: '1000423', type: '总包', professional: '弱电', unit: '中建二局15625857784' },
+            { siteid: '1000423', type: '分包', professional: '消防水', unit: '辽宁强盾15625857784' }
         ]
         this.parseTableData(tableData)
     },