| | |
| | | <el-table-column prop="projectName" label="项目名称" show-overflow-tooltip /> |
| | | <el-table-column label="房源名称" show-overflow-tooltip> |
| | | <template slot-scope="{row}"> |
| | | {{row.buildingName}}/{{row.code}} |
| | | {{row.buildingName}}/{{row.roomNum}} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="租赁面积(㎡)" show-overflow-tooltip> |
| | | <template slot-scope="{row}"> |
| | | {{row.area}}㎡ |
| | | {{row.rentArea}}㎡ |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | |
| | | <i class="el-icon-delete" |
| | | style="color: red; margin-left: 10px; font-size: 18px; cursor: pointer;" |
| | | @click="deleRow(scope.$index)" |
| | | v-if="scope.row.date && scope.row.date.length !==0"> |
| | | v-if="scope.row.isDele"> |
| | | </i> |
| | | </div> |
| | | </template> |
| | |
| | | }) |
| | | }, |
| | | getObjS (obj) { |
| | | console.log(obj) |
| | | obj.startDate = obj.startDate.substring(0, 10) |
| | | obj.endDate = obj.endDate.substring(0, 10) |
| | | obj.isDele = true |
| | | this.info.terminateList.push(obj) |
| | | this.countData() |
| | | }, |