|
@@ -8,18 +8,32 @@
|
|
|
<van-icon class='floor-item-arrow' name='arrow' />
|
|
|
</p>
|
|
|
</div>
|
|
|
- <div v-if="floor.Statistics.length" class="floor-item-table">
|
|
|
+ <div v-if="floor.Statistics && floor.Statistics.length" class="floor-item-table">
|
|
|
<table class="table-box">
|
|
|
<tr>
|
|
|
- <th><div class="cell">项目</div></th>
|
|
|
- <th><div class="cell">数量</div></th>
|
|
|
- <th><div class="cell">单位</div></th>
|
|
|
- <th><div class="cell">图例</div></th>
|
|
|
+ <th>
|
|
|
+ <div class="cell">项目</div>
|
|
|
+ </th>
|
|
|
+ <th>
|
|
|
+ <div class="cell">数量</div>
|
|
|
+ </th>
|
|
|
+ <th>
|
|
|
+ <div class="cell">单位</div>
|
|
|
+ </th>
|
|
|
+ <th>
|
|
|
+ <div class="cell">图例</div>
|
|
|
+ </th>
|
|
|
</tr>
|
|
|
<tr v-for="tr in floor.Statistics" :key="`${floor.FloorId}-${tr.OrderId}`" v-show="tr.Num">
|
|
|
- <td><div class="cell">{{tr.Name||'--'}}</div></td>
|
|
|
- <td><div class="cell">{{tr.Num}}</div></td>
|
|
|
- <td><div class="cell">{{tr.Unit||'--'}}</div></td>
|
|
|
+ <td>
|
|
|
+ <div class="cell">{{tr.Name||'--'}}</div>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <div class="cell">{{tr.Num}}</div>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <div class="cell">{{tr.Unit||'--'}}</div>
|
|
|
+ </td>
|
|
|
<td>
|
|
|
<div class="cell">
|
|
|
<div v-if='tr.Url' class="Url-img">
|
|
@@ -40,32 +54,62 @@
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
|
|
- <h2 class="floor-additional-data" v-if="$route.query.categoryId == 'XFXT' || $route.query.categoryId == 'RDXT'">
|
|
|
- <i class="iconfont wanda-otherData"></i>
|
|
|
+ <h2 class="floor-additional-data" v-if="smsxt == '1003' || smsxt == '1004'" @click="queryTable(floor.FloorId)">
|
|
|
+ <i class="iconfont wanda-otherData"></i>
|
|
|
查看附加数据
|
|
|
</h2>
|
|
|
</div>
|
|
|
+ <div v-else-if="floor.Properties && floor.Properties.length" class="floor-item-table">
|
|
|
+ <table class="table-box">
|
|
|
+ <tr>
|
|
|
+ <th>
|
|
|
+ <div class="cell">说明</div>
|
|
|
+ </th>
|
|
|
+ <th>
|
|
|
+ <div class="cell">图例</div>
|
|
|
+ </th>
|
|
|
+ </tr>
|
|
|
+ <tr v-for="tr in floor.Properties" :key="`${floor.FloorId}-${tr.OrderId}`">
|
|
|
+ <td>
|
|
|
+ <div class="cell">{{tr.ItemExplain||'--'}}</div>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <div class="cell">
|
|
|
+ <div v-if='tr.FillColor && tr.StrokeColor' class="Url-img"
|
|
|
+ :style='`background:${tr.FillColor};border:1px solid ${tr.StrokeColor}`'>
|
|
|
+ </div>
|
|
|
+ <div v-else>{{'--'}}</div>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
+ <ImagePreview :key='imgKey' :visible.sync='showImgPreview' :imgList='imgList' />
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
import Vue from 'vue';
|
|
|
import { Toast } from 'vant';
|
|
|
Vue.use(Toast);
|
|
|
-import { appGraphElementQuery } from '@/api/public'
|
|
|
+import ImagePreview from '@/components/ImagePreview'
|
|
|
+import { appGraphElementQuery, appNodeQuery, queryPic } from '@/api/public'
|
|
|
import { mapGetters } from 'vuex'
|
|
|
export default {
|
|
|
name: 'FloorFunc',
|
|
|
props: {},
|
|
|
data() {
|
|
|
return {
|
|
|
- floorData: []
|
|
|
+ floorData: [],
|
|
|
+ showImgPreview: false,
|
|
|
+ imgList: [], //图片列表
|
|
|
+ imgKey: `img${new Date().getTime()}`,
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapGetters(['plazaId', 'floorsArr', 'categoryId']),
|
|
|
+ ...mapGetters(['plazaId', 'floorsArr', 'categoryId', 'smsxt']),
|
|
|
},
|
|
|
- components: {},
|
|
|
+ components: { ImagePreview },
|
|
|
beforeMount() { },
|
|
|
created() {
|
|
|
this.getGraphElement();
|
|
@@ -84,8 +128,42 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
- appGraphElementQuery(params).then(res => {
|
|
|
- this.floorData = res.Data;
|
|
|
+ if (this.categoryId === "SCPZ") {
|
|
|
+ appNodeQuery(params).then(res => {
|
|
|
+ this.floorData = res.Data.map(floor => {
|
|
|
+ let arr = []
|
|
|
+ if (floor.Properties && floor.Properties.length) {
|
|
|
+ arr = floor.Properties.filter(item => {
|
|
|
+ return item.ItemExplain && item.ItemExplain !== "";
|
|
|
+ })
|
|
|
+ floor.Properties = arr;
|
|
|
+ }
|
|
|
+ return floor;
|
|
|
+ });
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ appGraphElementQuery(params).then(res => {
|
|
|
+ this.floorData = res.Data;
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 查询附加数据图片
|
|
|
+ queryTable(floorId) {
|
|
|
+ let getParams = {
|
|
|
+ module: '1003',
|
|
|
+ floor: floorId,
|
|
|
+ system: this.smsxt,
|
|
|
+ plazaId: this.plazaId,
|
|
|
+ }
|
|
|
+ queryPic({ getParams }).then((res) => {
|
|
|
+ if (res.data && res.data) {
|
|
|
+ this.imgList = res.data.map(item => {
|
|
|
+ return item.url
|
|
|
+ })
|
|
|
+ this.showImgPreview = true;
|
|
|
+ } else {
|
|
|
+ Toast.fail('暂无附加数据!');
|
|
|
+ }
|
|
|
})
|
|
|
},
|
|
|
goToMapView(floor) {
|
|
@@ -94,16 +172,22 @@ export default {
|
|
|
FloorId: floor.FloorId,
|
|
|
FloorName: floor.FloorName
|
|
|
}
|
|
|
- this.$router.push({ name: 'MapView', params: {floor: floorObj} })
|
|
|
+ this.$router.push({ name: 'MapView', params: { floor: floorObj } })
|
|
|
} else {
|
|
|
Toast.fail('缺少楼层信息!');
|
|
|
}
|
|
|
},
|
|
|
},
|
|
|
+ watch: {
|
|
|
+ categoryId: {
|
|
|
+ handler() {
|
|
|
+ this.getGraphElement();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
<style lang='less' scoped>
|
|
|
-
|
|
|
.floor-function {
|
|
|
width: 100%;
|
|
|
height: calc(100% - 100px);
|
|
@@ -139,7 +223,8 @@ export default {
|
|
|
table-layout: fixed;
|
|
|
border-collapse: collapse;
|
|
|
border-spacing: 0;
|
|
|
- td, th {
|
|
|
+ td,
|
|
|
+ th {
|
|
|
font-size: 12px;
|
|
|
font-weight: 500;
|
|
|
color: #333333;
|
|
@@ -148,7 +233,7 @@ export default {
|
|
|
text-overflow: ellipsis;
|
|
|
white-space: nowrap;
|
|
|
min-width: 0;
|
|
|
- border: 1px solid #E4E6E7;
|
|
|
+ border: 1px solid #e4e6e7;
|
|
|
box-sizing: border-box;
|
|
|
vertical-align: middle;
|
|
|
position: relative;
|
|
@@ -164,7 +249,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
th {
|
|
|
- background: #EFF0F1;
|
|
|
+ background: #eff0f1;
|
|
|
}
|
|
|
.Url-img {
|
|
|
width: 20px;
|
|
@@ -195,7 +280,7 @@ export default {
|
|
|
}
|
|
|
.floor-additional-data {
|
|
|
font-size: 14px;
|
|
|
- color: #025BAA;
|
|
|
+ color: #025baa;
|
|
|
margin-top: 10px;
|
|
|
i {
|
|
|
vertical-align: bottom;
|