|
@@ -39,6 +39,7 @@
|
|
</div>
|
|
</div>
|
|
<div class="content-item" v-show="tabsIndex === 2">
|
|
<div class="content-item" v-show="tabsIndex === 2">
|
|
<div class="formContent-item_title">车辆信息</div>
|
|
<div class="formContent-item_title">车辆信息</div>
|
|
|
|
+ <vehicle></vehicle>
|
|
</div>
|
|
</div>
|
|
<div class="content-item" v-show="tabsIndex === 3">
|
|
<div class="content-item" v-show="tabsIndex === 3">
|
|
<div class="widthFlex" v-for="item in parkingData" :key="item">
|
|
<div class="widthFlex" v-for="item in parkingData" :key="item">
|
|
@@ -50,15 +51,17 @@
|
|
<div class="formContent-item_title">人员进出记录</div>
|
|
<div class="formContent-item_title">人员进出记录</div>
|
|
</div>
|
|
</div>
|
|
<div class="content-item" v-show="tabsIndex === 5">
|
|
<div class="content-item" v-show="tabsIndex === 5">
|
|
- <div class="formContent-item_title">车辆进出记录</div>
|
|
|
|
|
|
+ <vehicleOutToIn></vehicleOutToIn>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
import householdTable from './stepPage/householdTable.vue';
|
|
import householdTable from './stepPage/householdTable.vue';
|
|
|
|
+import vehicle from './vehicle.vue';
|
|
|
|
+import vehicleOutToIn from './vehicleOutToIn.vue'
|
|
export default {
|
|
export default {
|
|
- components: { householdTable },
|
|
|
|
|
|
+ components: { householdTable, vehicle,vehicleOutToIn },
|
|
name: 'ownerManagementDetails',
|
|
name: 'ownerManagementDetails',
|
|
data() {
|
|
data() {
|
|
let _this = this;
|
|
let _this = this;
|