腾讯广告样式滚动条调整

This commit is contained in:
2026-05-18 17:14:59 +08:00
parent c527c32a63
commit 7f28b3fd5d

View File

@@ -205,13 +205,13 @@
<el-dialog title="校验日志" v-model="logVisible" width="70%">
<el-table :data="currentLogList" border style="width: 100%">
<el-table-column prop="time" label="时间" width="180"></el-table-column>
<el-table-column prop="type" label="类型" width="120">
<!-- <el-table-column prop="type" label="类型" width="120">
<template #default="scope">
<span :class="'table-status status-' + (scope.row.type || 'info').toLowerCase()">
{{ getLogTypeText(scope.row.type) }}
</span>
</template>
</el-table-column>
</el-table-column> -->
<el-table-column prop="status" label="状态" width="120">
<template #default="scope">
<span :class="'table-status status-' + (scope.row.status || 'info').toLowerCase()">
@@ -271,7 +271,7 @@ const videoStats = reactive({ pending: 0, verified: 0, rejected: 0 });
const imageList = ref<any[]>([]);
const imageLoading = ref(false);
const imagePage = ref(1);
const imagePageSize = ref(20);
const imagePageSize = ref(10);
const imageTotal = ref(0);
const imageFilters = reactive({ status: '', accountId: '' });
@@ -279,7 +279,7 @@ const imageFilters = reactive({ status: '', accountId: '' });
const videoList = ref<any[]>([]);
const videoLoading = ref(false);
const videoPage = ref(1);
const videoPageSize = ref(20);
const videoPageSize = ref(10);
const videoTotal = ref(0);
const videoFilters = reactive({ status: '', accountId: '' });
@@ -651,7 +651,7 @@ const viewLog = (row: any) => {
status: row.verifyStatus,
suggestion: row.suggestion,
errorMsg: row.errorMsg || '-',
message: `校验完成,结果:${getStatusText(row.verifyStatus)}`,
message: `结果:${getStatusText(row.verifyStatus)}`,
},
];
}
@@ -664,7 +664,7 @@ const viewLog = (row: any) => {
status: row.verifyStatus,
suggestion: row.suggestion,
errorMsg: row.errorMsg || '-',
message: `校验完成,结果:${getStatusText(row.verifyStatus)}`,
message: `结果:${getStatusText(row.verifyStatus)}`,
},
];
});
@@ -726,7 +726,6 @@ onMounted(() => {
<style scoped lang="scss">
.ads-compliance-tencent {
background: #f5f7fa;
height: 100vh;
}
.main-card {
@@ -754,7 +753,7 @@ onMounted(() => {
}
.main-tabs {
margin-top: 16px;
margin-top: -12px;
}
.tab-content {