| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565 |
- <template>
- <headerBar
- title="处理图像"
- showUser
- :menu="menu"
- />
- <hardware-check/>
- <div class="photography-page flex-col ">
- <div class="main-container page—wrap max-w-full">
- <div class="history-section flex-col koutu-section">
- <div class="history-warp">
- <div v-if="!goodsList.length" class="fs-14 c-666 mar-top-50">
- {{ loading ? '数据正在加载中,请稍候...' : '暂无数据,请先进行拍摄'}}
- </div>
- <div v-else class="history-item" v-for="item in goodsList" :key="item.goods_art_no" >
- <div class="history-item-header">
- <div class="history-item-left">
- <el-checkbox
- :model-value="selectedGoods.has(item.goods_art_no)"
- @change="toggleGoods(item.goods_art_no)"
- class="goods-checkbox"
- />
- <span class="goods-art-no">{{ item.goods_art_no }}</span>
- <div class="history-item-meta ">
- <span class="action-time flex left">
- <img src="@/assets/images/processImage.vue/riq.png" />
- {{ getTime(item.action_time) }}</span>
- <span class="image-count mar-left-10 flex left">
- <img src="@/assets/images/processImage.vue/tup.png" />
- {{ item.items?.length || 0 }}张图片</span>
- </div>
- </div>
- <div class="history-item-right">
- <el-dropdown :disabled="runLoading || takePictureLoading" trigger="click">
- <el-button :disabled="runLoading || takePictureLoading" size="small" plain>高级生成</el-button>
- <template #dropdown>
- <el-dropdown-menu>
- <el-dropdown-item
- v-for="menu in generate.children"
- @click.native="onGenerateCLick(menu,item)">{{ menu.name }}</el-dropdown-item>
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- <el-button style="color: #FF4C00" size="small" class="mar-left-10" :disabled="runLoading || takePictureLoading" @click="delGoods({goods_art_nos:[item.goods_art_no]})" v-log="{ describe: { action: '删除货号', goods_art_no: item.goods_art_no } }">删除</el-button>
- </div>
- </div>
- <div class="history-item-images" >
- <div
- v-for="(image, index) in item.items"
- :key="image.action_id || image.action_name"
- class="history-item_image"
- v-loading="!image.PhotoRecord.image_path && runAction.goods_art_no == item.goods_art_no"
- >
- <span class="tag" v-if="!image.PhotoRecord.image_path">{{ image.action_name }}</span>
- <el-image
- v-if="image.PhotoRecord.image_path"
- :src="getFilePath(image.PhotoRecord.image_path)"
- :preview-src-list="getPreviewImageList(item)"
- :initial-index="getPreviewIndex(item, index)"
- class="preview-image"
- fit="contain"
- :preview-teleported="true"
- lazy
- >
- <template #error>
- <div class="image-slot">
- <span class="tag">{{ image.action_name }}</span>
- </div>
- </template>
- </el-image>
- <div v-else class="image-placeholder">
- <span class="tag">{{ image.action_name }}</span>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="footer-controls">
- <div class="footer-left">
- <el-checkbox
- :model-value="isSelectAll"
- :indeterminate="isIndeterminate"
- @change="toggleSelectAll"
- class="select-all-checkbox"
- >
- 全选
- </el-checkbox>
- <span class="image-count-text">
- 已选择 <span style="color: #2957FF">{{ selectedImageCount }}</span> 张图片 共 <span style="color: #2957FF">{{ totalImageCount }}</span> 张图片
- </span>
- </div>
- <div class="footer-right">
- <el-button
- :disabled="selectedGoods.size === 0 || runLoading || takePictureLoading"
- @click="deleteSelected"
- v-log="{ describe: { action: '删除选中货号' } }"
- >
- 删除
- </el-button>
- <el-button
- type="primary"
- :disabled="!goodsList.length || runLoading || takePictureLoading"
- @click="openPhotographyDetail()"
- v-log="{ describe: { action: '点击开始生成' } }"
- >
- <img src="@/assets/images/processImage.vue/sc.png" />
- 开始生成
- <img src="@/assets/images/processImage.vue/go.png" class="go"/>
- </el-button>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import headerBar from '@/components/header-bar/index.vue'
- import { onMounted, onBeforeUnmount, ref, computed } from 'vue'
- import HardwareCheck from '@/components/check/index.vue'
- import usePhotography from './mixin/usePhotography'
- import generate from '@/utils/menus/generate'
- import { ElMessageBox } from 'element-plus'
- const {
- loading,
- runLoading,
- takePictureLoading,
- goodsList,
- runAction,
- menu,
- getTime,
- getFilePath,
- getPhotoRecords,
- delGoods,
- openPhotographyDetail,
- onGenerateCLick,
- initEventListeners,
- cleanupEventListeners,
- } = usePhotography()
- // 选中的货号列表
- const selectedGoods = ref<Set<string>>(new Set())
- // 全选状态
- const isSelectAll = computed(() => {
- return goodsList.value.length > 0 && selectedGoods.value.size === goodsList.value.length
- })
- // 是否半选状态
- const isIndeterminate = computed(() => {
- return selectedGoods.value.size > 0 && selectedGoods.value.size < goodsList.value.length
- })
- // 切换单个货号的选中状态
- const toggleGoods = (goodsArtNo: string) => {
- if (selectedGoods.value.has(goodsArtNo)) {
- selectedGoods.value.delete(goodsArtNo)
- } else {
- selectedGoods.value.add(goodsArtNo)
- }
- }
- // 全选/取消全选
- const toggleSelectAll = () => {
- if (isSelectAll.value) {
- selectedGoods.value.clear()
- } else {
- goodsList.value.forEach((item: any) => {
- selectedGoods.value.add(item.goods_art_no)
- })
- }
- }
- // 计算已选择的图片数量
- const selectedImageCount = computed(() => {
- let count = 0
- goodsList.value.forEach((item: any) => {
- if (selectedGoods.value.has(item.goods_art_no)) {
- count += item.items?.length || 0
- }
- })
- return count
- })
- // 计算总图片数量
- const totalImageCount = computed(() => {
- let count = 0
- goodsList.value.forEach((item: any) => {
- count += item.items?.length || 0
- })
- return count
- })
- // 删除选中的货号
- const deleteSelected = async () => {
- if (selectedGoods.value.size === 0) {
- return
- }
- try {
- await ElMessageBox.confirm(
- `确定要删除选中的 ${selectedGoods.value.size} 个货号的拍摄数据吗?`,
- '提示',
- {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- }
- )
- const goodsArtNos = Array.from(selectedGoods.value)
- await delGoods({ goods_art_nos: goodsArtNos })
- // 删除成功后清空选中状态
- selectedGoods.value.clear()
- } catch (e) {
- // 用户取消
- }
- }
- // 获取预览图片列表(只包含有图片路径的,保持原始顺序)
- const getPreviewImageList = (item: any) => {
- if (!item || !item.items) return []
- return item.items
- .filter((img: any) => img.PhotoRecord?.image_path)
- .map((img: any) => getFilePath(img.PhotoRecord.image_path))
- }
- // 获取当前图片在预览列表中的索引
- const getPreviewIndex = (item: any, currentIndex: number) => {
- if (!item || !item.items) return 0
- // 计算当前图片在过滤后的预览列表中的索引
- let previewIndex = 0
- for (let i = 0; i <= currentIndex; i++) {
- if (item.items[i]?.PhotoRecord?.image_path) {
- if (i === currentIndex) break
- previewIndex++
- }
- }
- return previewIndex
- }
- onMounted(async () => {
- await getPhotoRecords()
- initEventListeners()
- })
- onBeforeUnmount(() => {
- cleanupEventListeners()
- })
- </script>
- <style lang="scss">
- .koutu-image-popper {
- width: calc(100vw - 470px) !important;
- right: 70px !important;
- top: 100px !important;
- height: calc(100vh - 170px) !important;
- transform: translate(0px, 0px) !important;
- .el-image {
- width: 100%;
- height:100%;
- display: block;
- .el-image__inner {
- width: 100%;
- height:100%;
- display: block;
- }
- }
- }
- </style>
- <style scoped lang="scss">
- .photography-page {
- background-color:#F5F6F7;
- position: relative;
- .main-container {
- position: relative;
- display: flex;
- }
- }
- .history-section {
- width: 100%;
- height: calc(100vh - 30px);
- display: flex;
- flex-direction: column;
- padding: 20px;
- overflow-y: auto;
- ::v-deep {
- .el-checkbox__input {
- transform: scale(1.4);
- }
- }
- .history-warp {
- flex: 1;
- .history-item {
- background: #FFFFFF;
- box-shadow: 0px 2px 4px 0px rgba(23,33,71,0.1);
- border-radius: 10px;
- border: 1px solid #D9DEE6;
- margin-bottom: 20px;
- .history-item-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 40px;
- padding: 0 10px;
- background: linear-gradient( 90deg, #F4ECFF 0%, #DFEDFF 100%);
- border-radius: 10px 10px 0px 0px;
- .history-item-left {
- display: flex;
- align-items: center;
- gap: 10px;
- .goods-checkbox {
- margin-right: 0;
- }
- .goods-art-no {
- font-size: 16px;
- font-weight: 500;
- color: #333;
- }
- }
- .history-item-right {
- display: flex;
- align-items: center;
- ::v-deep {
- .el-button { height: 30px; line-height: 30px;}
- }
- }
- }
- .history-item-meta {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 12px;
- color: #666;
- img {
- height: 14px;
- margin-right: 2px;
- }
- .action-time {
- color: #666;
- }
- .image-count {
- color: #666;
- }
- }
- .history-item-images {
- display: grid;
- grid-template-columns: repeat(5, 1fr);
- gap: 10px;
- padding: 15px;
- border-top: 1px solid #f0f0f0;
- overflow-x: auto;
- // 如果图片数量超过5个,允许横向滚动
- @media (min-width: 1200px) {
- grid-template-columns: repeat(5, 1fr);
- }
- // 响应式:小屏幕时每行3个
- @media (max-width: 768px) {
- grid-template-columns: repeat(3, 1fr);
- }
- }
- .history-item_image_wrap {
- padding-bottom: 0;
- border-bottom: none;
- }
- .history-item_image {
- position: relative;
- width: 100%;
- aspect-ratio: 1;
- background: #F7F7F7;
- border-radius: 10px;
- overflow: hidden;
- cursor: pointer;
- border: 1px solid #D9DEE6;
- transition: all 0.3s;
- .tag {
- color: #bbb;
- position: absolute;
- left: 0;
- right: 0;
- top: 50%;
- margin-top: -10px;
- line-height: 20px;
- text-align: center;
- font-size: 12px;
- z-index: 1;
- pointer-events: none;
- }
- .preview-image {
- width: 100%;
- height: 100%;
- :deep(.el-image__inner) {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- }
- .image-placeholder {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #F7F7F7;
- }
- .image-slot {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #F7F7F7;
- }
- &:hover {
- border-color: #409eff;
- transform: scale(1.02);
- box-shadow: 0 2px 8px rgba(64, 158, 255, 0.2);
- }
- &.el-loading-parent--relative{
- ::v-deep {
- .el-loading-mask { display: none}
- }
- }
- }
- .el-image_view {
- display: flex;
- width: 100%;
- height: 100%;
- .reset-button {
- width: 40px;
- text-align: center;
- height: 20px;
- position: absolute;
- left:50%;
- top:50%;
- padding: 0px;
- margin-left:-20px;
- margin-top:-10px;
- color: #ffffff;
- font-size: 14px;
- background: rgba(0,0,0,0.6);
- border-radius: 12px;
- display: none;
- cursor: pointer;
- }
- &:hover {
- .reset-button {
- display: block;
- }
- }
- }
- p:first-of-type {
- ::v-deep {
- .el-loading-mask { display: block !important;}
- }
- }
- }
- }
- .footer-controls {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0px 20px;
- border-top: 1px solid #D9DEE6;
- background-color: #fff;
- min-height: 50px;
- flex-shrink: 0;
- position: fixed;
- bottom:0;
- left: 0;
- right: 0;
- font-size: 14px;
- z-index: 100;
- img {
- height: 12px;
- margin: 0 5px;
- }
- .go {
- height: 12px;
- opacity: .8;
- }
- ::v-deep {
- .el-button {
- border-radius: 10px;
- height: 40px;
- line-height: 40px;
- }
- }
- .footer-left {
- display: flex;
- align-items: center;
- gap: 10px;
- .select-all-checkbox {
- margin-right: 0;
- ::v-deep {
- .el-checkbox__label {
- font-size: 14px;
- color: #666;
- }
- }
- }
- .image-count-text {
- font-size: 14px;
- color: #333;
- margin-left: 0;
- }
- }
- .footer-right {
- display: flex;
- align-items: center;
- gap: 10px;
- }
- }
- }
- </style>
|