|
@@ -136,8 +136,7 @@ async function onChangeStatus(row: { apiId: number; status: number }) {
|
|
|
<template>
|
|
<template>
|
|
|
<div class="absolute-container">
|
|
<div class="absolute-container">
|
|
|
<tool-header title="API管理">
|
|
<tool-header title="API管理">
|
|
|
- <template #right>
|
|
|
|
|
- </template>
|
|
|
|
|
|
|
+ <template #right />
|
|
|
</tool-header>
|
|
</tool-header>
|
|
|
|
|
|
|
|
<div class="page-main">
|
|
<div class="page-main">
|
|
@@ -219,7 +218,9 @@ async function onChangeStatus(row: { apiId: number; status: number }) {
|
|
|
|
|
|
|
|
<el-table-column label="操作" header-align="center" align="center" width="120">
|
|
<el-table-column label="操作" header-align="center" align="center" width="120">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
- <el-button type="primary" size="small" plain @click="onApiDebug(scope.row)">在线调试</el-button>
|
|
|
|
|
|
|
+ <el-button type="primary" size="small" plain @click="onApiDebug(scope.row)">
|
|
|
|
|
+ 在线调试
|
|
|
|
|
+ </el-button>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
</el-table>
|
|
</el-table>
|