新增resultUrl执行传参

This commit is contained in:
2026-05-18 11:37:15 +08:00
parent 4baf6946a3
commit c527c32a63
2 changed files with 104 additions and 12 deletions

View File

@@ -83,9 +83,11 @@
<el-pagination
@current-change="handleImagePageChange"
v-model:current-page="imagePage"
:page-size="imagePageSize"
layout="total, prev, pager, next"
v-model:page-size="imagePageSize"
:page-sizes="[10, 20, 50, 100]"
layout="total, sizes, prev, pager, next, jumper"
:total="imageTotal"
background
>
</el-pagination>
</div>
@@ -178,9 +180,11 @@
<el-pagination
@current-change="handleVideoPageChange"
v-model:current-page="videoPage"
:page-size="videoPageSize"
layout="total, prev, pager, next"
v-model:page-size="videoPageSize"
:page-sizes="[10, 20, 50, 100]"
layout="total, sizes, prev, pager, next, jumper"
:total="videoTotal"
background
>
</el-pagination>
</div>
@@ -721,9 +725,8 @@ onMounted(() => {
<style scoped lang="scss">
.ads-compliance-tencent {
padding: 24px;
background: #f5f7fa;
min-height: calc(100vh - 60px);
height: 100vh;
}
.main-card {
@@ -755,7 +758,10 @@ onMounted(() => {
}
.tab-content {
padding: 20px 0;
padding: 20px;
display: flex;
flex-direction: column;
max-height: calc(100vh - 280px);
}
.toolbar {
@@ -805,6 +811,9 @@ onMounted(() => {
border-radius: 8px;
border: 1px solid #ebeef5;
overflow: hidden;
flex: 1;
min-height: 0;
overflow-y: auto;
}
.table-wrapper :deep(.el-table) {
@@ -866,8 +875,11 @@ onMounted(() => {
.pagination-container {
margin-top: 16px;
display: flex;
justify-content: flex-end;
text-align: right;
flex-shrink: 0;
padding-top: 16px;
border-top: 1px solid #ebeef5;
background: #fff;
}
.media-preview {