| | |
| | | > |
| | | |
| | | <el-table-column prop="id" label="id" width="220" fixed="left" show-overflow-tooltip> </el-table-column> |
| | | <el-table-column label="数据库" prop="database" show-overflow-tooltip> </el-table-column> |
| | | <el-table-column label="数据库" prop="database" show-overflow-tooltip> |
| | | |
| | | <template #default="scope"> |
| | | {{ getMapDatabase(scope.row.database)?.title }} |
| | | </template> |
| | | |
| | | </el-table-column> |
| | | |
| | | <el-table-column label="操作" width="120" fixed="right" show-overflow-tooltip> |
| | | <template #default="scope"> |
| | |
| | | }; |
| | | |
| | | const databaseList = ref([]); |
| | | |
| | | const getMapDatabase = (id:string)=>{ |
| | | const foundItem = databaseList.value.find(item=>item.id===id); |
| | | return foundItem; |
| | | } |
| | | //#endregion |
| | | onMounted(async () => { |
| | | xmlJson = await supervisorApi.getLowCodeJson({ |