| | |
| | | <th>广告类型</th> <!-- 广告类型 --> |
| | | <th>广告子类型</th> <!-- 广告子类型 --> |
| | | <th>合作内容形式</th> <!-- 合作内容形式 --> |
| | | <th>小区楼栋数/电梯数</th> <!-- 小区楼栋数/电梯数 --> |
| | | <th>上线数量</th> <!-- 上线数量 --> |
| | | <th>设施安装位置</th> <!-- 设施安装位置 --> |
| | | <th>物业公司名称</th> <!-- 物业公司名称 --> |
| | | <th>合同年限(年)</th> <!-- 合同年限 --> |
| | | <th>是否存档</th> <!-- 是否存档 --> |
| | | <th>合同提醒日期</th> <!-- 合同提醒日期 --> |
| | | <th>操作</th> <!-- 操作按钮 --> |
| | | </tr> |
| | | </thead> |
| | |
| | | <td>{{item.adType}}</td> |
| | | <td>{{item.subType}}</td> |
| | | <td>{{item.cooperationForm}}</td> |
| | | <td>{{item.buildingElevatorCount || '-'}}</td> |
| | | <td>{{item.onlineQuantity || '-'}}</td> |
| | | <td>{{item.facilityLocation || '-'}}</td> |
| | | <td>{{item.propertyCompany || '-'}}</td> |
| | | <td>{{item.contractTerm || '-'}}</td> |
| | | <td> |
| | | <span v-if="item.isArchived === '0'" class="label label-info">未存档</span> |
| | | <span v-else-if="item.isArchived === '1'" class="label label-success">已存档</span> |
| | | <span v-else class="label label-default">未知</span> |
| | | </td> |
| | | <td>{{item.contractReminderDate || '-'}}</td> |
| | | <td> |
| | | <!-- 编辑按钮 --> |
| | | <button type="button" class="btn btn-xs btn-info" |