Shannon_mu 2 years ago
parent
commit
80ad272ed6

+ 1 - 1
operationSupport/src/views/buildingManagement/pageJump/addoredit.vue

@@ -24,7 +24,7 @@
                                     class="width100"
                                 >
                                     <el-option label="高层" :value="1"></el-option>
-                                    <el-option label="层" :value="2"></el-option>
+                                    <el-option label="层" :value="2"></el-option>
                                 </el-select>
 
                                 <el-select

+ 0 - 8
operationSupport/src/views/ownerManagement/index.vue

@@ -68,13 +68,6 @@
                         {{ item.buildingName }}-{{ CheckChinese(item.unitName, '单元') }}-{{ item.roomNumber }}
                     </div>
                 </template>
-                <template slot-scope="scope" slot="householdType">
-                    <div class="table-list" v-for="(item, index) in scope.row.houseList" :key="index">
-                        <template v-if="item.householdType === 1"> 业主 </template>
-                        <template v-else-if="item.householdType === 2"> 亲属 </template>
-                        <template v-else> 租客 </template>
-                    </div>
-                </template>
                 <template slot-scope="scope" slot="communityName">
                     <div class="table-list" v-for="(item, index) in scope.row.houseList" :key="index">{{ item.communityName }}</div>
                 </template>
@@ -151,7 +144,6 @@ export default {
                 {
                     label: '住户类型',
                     prop: 'householdType',
-                    slot: 'householdType',
                     width: '100',
                     format(val) {
                         if (val == 1) {

+ 1 - 2
operationSupport/src/views/parkingLotAdministration/pageJump/partitionManagement.vue

@@ -168,16 +168,15 @@ export default {
             this.selectRow = val;
         },
         close() {
-            debugger;
             let activeRout = this.$route;
             let tagsList = this.$store.getters['getTagsList'];
             tagsList.forEach((item, index) => {
                 if (item.title == activeRout.meta.title || item.path == activeRout.path) {
                     tagsList.splice(index, 1);
-                    this.$router.push({ path: tagsList[tagsList.length - 1].path });
                     return true;
                 }
             });
+            this.$router.push({ path: '/parkingLotAdministration/index' });
         }
     },
     created() {