|
@@ -6,6 +6,7 @@
|
|
*/
|
|
*/
|
|
|
|
|
|
import { useTableHeight } from '/@/utils/useCustomHeight';
|
|
import { useTableHeight } from '/@/utils/useCustomHeight';
|
|
|
|
+import PriceChart from '/@/views/product-manage/historical-detail/component/PriceChart.vue';
|
|
|
|
|
|
|
|
|
|
const isShowHistory = defineModel({ default: false });
|
|
const isShowHistory = defineModel({ default: false });
|
|
@@ -15,8 +16,6 @@ const props = defineProps({
|
|
title: String
|
|
title: String
|
|
});
|
|
});
|
|
const { rowData, title } = props;
|
|
const { rowData, title } = props;
|
|
-console.log("(index.vue: 15)=> rowData", rowData);
|
|
|
|
-
|
|
|
|
|
|
|
|
const heightObj = { topBar: 50, cardMargin: 8, cardPadding: 20 };
|
|
const heightObj = { topBar: 50, cardMargin: 8, cardPadding: 20 };
|
|
const { tableHeight } = useTableHeight(heightObj);
|
|
const { tableHeight } = useTableHeight(heightObj);
|
|
@@ -30,28 +29,16 @@ const { tableHeight } = useTableHeight(heightObj);
|
|
ref="editDrawer"
|
|
ref="editDrawer"
|
|
v-model="isShowHistory"
|
|
v-model="isShowHistory"
|
|
:show-close="false"
|
|
:show-close="false"
|
|
|
|
+ :title="`${title} - 历史详情`"
|
|
direction="btt"
|
|
direction="btt"
|
|
size="85%"
|
|
size="85%"
|
|
- style="background-color:#F3F4FB;"
|
|
|
|
- :title="`${title} - 历史详情`">
|
|
|
|
|
|
+ style="background-color:#F3F4FB;">
|
|
<div class="sticky top-0" style="background-color:#F3F4FB; min-height: 20px; z-index: 2"></div>
|
|
<div class="sticky top-0" style="background-color:#F3F4FB; min-height: 20px; z-index: 2"></div>
|
|
<div class="px-5">
|
|
<div class="px-5">
|
|
- <el-card>12341</el-card>
|
|
|
|
- <el-card :body-style="{ height: tableHeight + 'px' }">
|
|
|
|
- <div class="h-full overflow-hidden">
|
|
|
|
- <vxe-table height="100%">
|
|
|
|
- <vxe-column type="seq"></vxe-column>
|
|
|
|
- <vxe-column type="seq"></vxe-column>
|
|
|
|
- <vxe-column type="seq"></vxe-column>
|
|
|
|
- <vxe-column type="seq"></vxe-column>
|
|
|
|
- <vxe-column type="seq"></vxe-column>
|
|
|
|
- </vxe-table>
|
|
|
|
- </div>
|
|
|
|
- </el-card>
|
|
|
|
|
|
+ <PriceChart :asin="rowData.asin" :country="rowData.country_code" />
|
|
|
|
+
|
|
</div>
|
|
</div>
|
|
-
|
|
|
|
</el-drawer>
|
|
</el-drawer>
|
|
-
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</template>
|
|
</template>
|