From 4ecfd8ff590e30d370eae257bb65d4d062b86f8d Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Tue, 21 May 2024 13:40:49 +0800
Subject: [PATCH] 出租屋管理修改
---
src/views/rentalInfo/index.vue | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/src/views/rentalInfo/index.vue b/src/views/rentalInfo/index.vue
index b7d251a..f2d6cd3 100644
--- a/src/views/rentalInfo/index.vue
+++ b/src/views/rentalInfo/index.vue
@@ -57,8 +57,15 @@
v-if="chooseTab == '居住证申请'" :key="Math.random()"></el-table-column>
<el-table-column prop="houseName" :show-overflow-tooltip="true" label="房屋"
v-if="chooseTab == '出租屋管理'" :key="Math.random()"></el-table-column>
- <el-table-column prop="phone" :show-overflow-tooltip="true" label="关系"
- v-if="chooseTab == '出租屋管理'" :key="Math.random()"></el-table-column>
+ <el-table-column prop="rentalUse" :show-overflow-tooltip="true" label="用途"
+ v-if="chooseTab == '出租屋管理'" :key="Math.random()">
+ <template slot-scope="scope">
+ <div v-if="scope.row.rentalUse == 1">仓库</div>
+ <div v-if="scope.row.rentalUse == 2">办公</div>
+ <div v-if="scope.row.rentalUse == 3">商用</div>
+ <div v-if="scope.row.rentalUse == 4">居住</div>
+ </template>
+ </el-table-column>
<el-table-column prop="houseStatus" :show-overflow-tooltip="true" label="房屋状态"
v-if="chooseTab == '出租屋管理'" :key="Math.random()">
<template slot-scope="scope">
--
Gitblit v1.9.3