|
|
@ -1,7 +1,15 @@ |
|
|
|
<template> |
|
|
|
<ContentWrap> |
|
|
|
<!-- 搜索工作栏 --> |
|
|
|
<Search :schema="InterfaceInfo.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
|
|
|
<Search :schema="InterfaceInfo.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams"> |
|
|
|
<template #actionMore> |
|
|
|
<el-button type="primary" class="updateBtn" @click="replayInterfaceClick"> |
|
|
|
<Icon class="mr-5px" icon="ep:" /> |
|
|
|
重新执行 |
|
|
|
<Icon class="ml-5px" icon="ep:" /> |
|
|
|
</el-button> |
|
|
|
</template> |
|
|
|
</Search> |
|
|
|
</ContentWrap> |
|
|
|
|
|
|
|
<!-- 列表头部 --> |
|
|
@ -162,7 +170,13 @@ const buttonBaseClick = (val, item) => { |
|
|
|
} else if (val == 'export') { // 导出 |
|
|
|
handleExport() |
|
|
|
} else if (val == 'refresh') { // 刷新 |
|
|
|
getList() |
|
|
|
if (tableObject.params.filters && tableObject.params.filters.length > 0 ) { |
|
|
|
searchFormClick({ |
|
|
|
filters: tableObject.params.filters |
|
|
|
}) |
|
|
|
} else { |
|
|
|
getList() |
|
|
|
} |
|
|
|
} else if (val == 'filtrate') { // 筛选 |
|
|
|
} else { // 其他按钮 |
|
|
|
console.log('其他按钮', item) |
|
|
@ -272,6 +286,14 @@ const searchFormClick = (searchData) => { |
|
|
|
getList() // 刷新当前列表 |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const replayInterfaceClick = async ()=>{ |
|
|
|
await InterfaceInfoApi.replayInterfaceInfo() |
|
|
|
message.success('执行成功') |
|
|
|
buttonBaseClick('refresh',null) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
/** 初始化 **/ |
|
|
|
onMounted(async () => { |
|
|
|
getList() |
|
|
|