|
@@ -27,7 +27,7 @@
|
|
|
<el-table style="width: 100%" v-loading="listLoading" :key="tableKey" :data="list" row-key="id"
|
|
<el-table style="width: 100%" v-loading="listLoading" :key="tableKey" :data="list" row-key="id"
|
|
|
stripe border fit highlight-current-row @selection-change="handleSelectionChange">
|
|
stripe border fit highlight-current-row @selection-change="handleSelectionChange">
|
|
|
<!-- <el-table-column type="selection" width="55" :selectable="selectable"></el-table-column> -->
|
|
<!-- <el-table-column type="selection" width="55" :selectable="selectable"></el-table-column> -->
|
|
|
- <el-table-column label="SKU名称" align="center">
|
|
|
|
|
|
|
+ <el-table-column label="SKU名称" align="center" min-width="100">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<el-popover
|
|
<el-popover
|
|
|
placement="bottom"
|
|
placement="bottom"
|
|
@@ -67,7 +67,7 @@
|
|
|
</el-popover>
|
|
</el-popover>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column label="原图" min-width="100" align="center">
|
|
|
|
|
|
|
+ <el-table-column label="原图" min-width="180" align="center">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<p v-if="scope.row.type == 1 && scope.row.referenceImagesList && scope.row.referenceImagesList.length" @click="openGallery(scope.row, 'default')">
|
|
<p v-if="scope.row.type == 1 && scope.row.referenceImagesList && scope.row.referenceImagesList.length" @click="openGallery(scope.row, 'default')">
|
|
|
<img style="max-width: 100px;" :src="scope.row.referenceImagesList[0]" alt=""></img>
|
|
<img style="max-width: 100px;" :src="scope.row.referenceImagesList[0]" alt=""></img>
|
|
@@ -77,15 +77,15 @@
|
|
|
</p>
|
|
</p>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column label="AI生成图" min-width="100" align="center">
|
|
|
|
|
|
|
+ <el-table-column label="AI生成图" min-width="180" align="center">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<p style="margin: 0;cursor: pointer;" v-if="scope.row.aiGeneratedImageVOList && scope.row.aiGeneratedImageVOList.length" @click="openGallery(scope.row)">
|
|
<p style="margin: 0;cursor: pointer;" v-if="scope.row.aiGeneratedImageVOList && scope.row.aiGeneratedImageVOList.length" @click="openGallery(scope.row)">
|
|
|
<img style="max-width: 100px;" :src="scope.row.aiGeneratedImageVOList.filter(acc => acc.imageType == 1)[0].imageUrl" alt="">
|
|
<img style="max-width: 100px;" :src="scope.row.aiGeneratedImageVOList.filter(acc => acc.imageType == 1)[0].imageUrl" alt="">
|
|
|
</p>
|
|
</p>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column label="预计完成时间" min-width="100" align="center" prop="expectedCompletionTime" />
|
|
|
|
|
- <el-table-column label="状态" min-width="100" align="center">
|
|
|
|
|
|
|
+ <el-table-column label="预计完成时间" min-width="150" align="center" prop="expectedCompletionTime" />
|
|
|
|
|
+ <el-table-column label="状态" min-width="120" align="center">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<el-tag v-if="scope.row.status == 0">提交中</el-tag>
|
|
<el-tag v-if="scope.row.status == 0">提交中</el-tag>
|
|
|
<el-tag v-if="scope.row.status == 1">AI生成中</el-tag>
|
|
<el-tag v-if="scope.row.status == 1">AI生成中</el-tag>
|