|
@@ -28,7 +28,7 @@ const asinInp = ref('B0');
|
|
const tableLoading = ref(false);
|
|
const tableLoading = ref(false);
|
|
|
|
|
|
const gridOptions: any = reactive({
|
|
const gridOptions: any = reactive({
|
|
- height: 'auto',
|
|
|
|
|
|
+ height: '100%',
|
|
border: false,
|
|
border: false,
|
|
round: true,
|
|
round: true,
|
|
columnConfig: {
|
|
columnConfig: {
|
|
@@ -144,9 +144,9 @@ function validateAsinInput(input: string) {
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<template>
|
|
- <div class="py-2 px-2.5" style="background-color: #f7f7f7">
|
|
|
|
|
|
+ <div class="py-2 px-2.5 flex" style="background-color: #f7f7f7">
|
|
<el-card shadow="hover" class="mb-2.5" style="border: none; margin-bottom: 10px">
|
|
<el-card shadow="hover" class="mb-2.5" style="border: none; margin-bottom: 10px">
|
|
- <div class="flex justify-between">
|
|
|
|
|
|
+ <div ref="queryContainer" class="flex justify-between">
|
|
<div class="flex gap-5 flex-wrap">
|
|
<div class="flex gap-5 flex-wrap">
|
|
<div>
|
|
<div>
|
|
<span class="font-medium mr-0.5">报告类型 </span>
|
|
<span class="font-medium mr-0.5">报告类型 </span>
|
|
@@ -188,8 +188,8 @@ function validateAsinInput(input: string) {
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</el-card>
|
|
</el-card>
|
|
- <el-card shadow="hover" style="border: none">
|
|
|
|
- <div style="overflow: hidden; width: 100%; height: 950px" v-loading="tableLoading">
|
|
|
|
|
|
+ <el-card shadow="hover" style="border: none; flex: 1 1 auto; height: calc(100vh - 154px)">
|
|
|
|
+ <div style="overflow: hidden; width: 100%; height: calc(100vh - 174px)" v-loading="tableLoading">
|
|
<vxe-grid v-bind="gridOptions">
|
|
<vxe-grid v-bind="gridOptions">
|
|
<template #toolbar_buttons></template>
|
|
<template #toolbar_buttons></template>
|
|
<template v-for="col in asinColumns" #[`${col.field}_default`]="{ row }">
|
|
<template v-for="col in asinColumns" #[`${col.field}_default`]="{ row }">
|