临时添加

This commit is contained in:
Zy
2026-04-08 08:56:37 +08:00
parent b87a594d4e
commit dc3080db32
7 changed files with 88 additions and 79 deletions

View File

@@ -3,11 +3,11 @@
<div class="Unit_top flex align-center justify-between">
<div>
<span class="text-size-16px text-color-black text-widget-bold mr-30px">
<strong>B栋</strong>
<strong>{{ houseStore.currentBuildingInfo.buildingName }}</strong>
</span>
<span class="mr-30px">楼栋朝向:西南</span>
<span class="mr-30px">楼高30</span>
<span class="mr-30px">楼栋结构框架 </span>
<span class="mr-30px">楼栋朝向:{{ houseStore.currentBuildingInfo.buildToward }}</span>
<span class="mr-30px">楼高{{ houseStore.currentBuildingInfo.buildTall }}</span>
<span class="mr-30px">楼栋结构{{ houseStore.currentBuildingInfo.buildStructure }} </span>
</div>
<div class="rightActions">
<span class="mr-20px" @click="handleAddHouse">+增加房屋</span>
@@ -24,6 +24,8 @@
<script setup lang="ts">
import { ref } from 'vue';
import TableUnit from './components/table.vue';
import { useHouseStore } from '@/store/modules/house';
const houseStore = useHouseStore();
const router = useRouter();
function handleAddHouse() {
router.push({