Explorar el Código

Merge branch 'dev' of http://39.106.8.246:3003/yunxing/wanda-bm-guide-h5 into dev

yunxing hace 4 años
padre
commit
b015c166d8
Se han modificado 2 ficheros con 5 adiciones y 5 borrados
  1. 4 4
      src/views/FloorFunc.vue
  2. 1 1
      src/views/equipmentFacilities/index.vue

+ 4 - 4
src/views/FloorFunc.vue

@@ -24,7 +24,7 @@
               <div class="cell">图例</div>
             </th>
           </tr>
-          <tr v-for="tr in floor.Statistics" :key="`${floor.FloorId}-${tr.OrderId}`" v-show="tr.Num">
+          <tr v-for="tr in floor.Statistics" :key="`${floor.FloorId}-${tr.GraphElementId}`" v-show="tr.Num">
             <td>
               <div class="cell">{{tr.Name||'--'}}</div>
             </td>
@@ -62,15 +62,15 @@
       <div v-else-if="floor.Properties && floor.Properties.length" class="floor-item-table">
         <table class="table-box">
           <tr>
-            <th>
+            <th colspan="3">
               <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>
+          <tr v-for="(tr, index) in floor.Properties" :key="`${floor.FloorId}-${index}`">
+            <td colspan="3">
               <div class="cell">{{tr.ItemExplain||'--'}}</div>
             </td>
             <td>

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

@@ -350,7 +350,7 @@ export default {
         handleFloor(item) {
             let title = this.systemText + '-楼层分布'
             // TODO: 楼层分布
-            // this.$router.push({ name: 'SystemFloor', params: { title } })
+            this.$router.push({ name: 'SystemFloor', params: { title } })
         },
         goToEquipment(data) {
             console.log(data)