| | |
| | | </template> |
| | | <template #operation="{ row }"> |
| | | <el-button link type="primary" size="small" @click="openForm('edit', row)">编辑</el-button> |
| | | <el-button link type="primary" size="small" v-if="row.usageStatus === '空闲'" |
| | | @click="openUseForm(row)">用车</el-button> |
| | | <el-button link type="primary" size="small" v-if="row.usageStatus === '使用中'" |
| | | @click="openReturnForm(row)">还车</el-button> |
| | | <el-button link type="primary" size="small" v-if="row.usageStatus === '空闲'" @click="openUseForm(row)">用车</el-button> |
| | | <el-button link type="primary" size="small" v-if="row.usageStatus === '使用中'" @click="openReturnForm(row)">还车</el-button> |
| | | <el-button link type="primary" size="small" @click="openUsageRecordsDialog(row)">使用记录</el-button> |
| | | </template> |
| | | </PIMTable> |