| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898 |
- <template>
- <div>
- <layout>
- <layout-header>
- <!-- 搜索区域 -->
- <el-form inline>
- <el-form-item>
- <el-input v-model="searchInfo" placeholder="搜索关键字" clearable style="width: 300px;" />
- <el-button type="primary" icon="search" @click="onSubmit" title="搜索查询">查询</el-button>
- <el-button type="primary" @click="onADD" >新增产品</el-button>
- </el-form-item>
- </el-form>
- </layout-header>
- <layout>
- <layout-sider v-if="treeData.length > 0" :resize-directions="['right']" :width="290" style="margin-right: 10px">
- <div class="JKWTree-tree" style="height: 200px;">
- <h3>商户名称</h3>
- <el-tree
- :data="treeData"
- class="treecolor"
- node-key="value"
- highlight-current
- :current-node-key="nodeid"
- @node-click="handleNodeClick"
- />
- </div>
- </layout-sider>
- <!-- 右侧区域 -->
- <layout-content>
- <el-main style="padding: 0;">
- <div class="gva-table-box">
- <!-- 表格展示 -->
- <el-table
- ref="multipleTable"
- style="width: 100%; height: 62vh;"
- :row-style="{ height: '20px' }"
- :header-cell-style="{ padding: '0px' }"
- :cell-style="{ padding: '0px' }"
- :header-row-style="{ height: '20px' }"
- border tooltip-effect="dark"
- :data="tableData1"
- row-key="ID"
- highlight-current-row
- :cell-class-name="tableDataCellClass"
- @row-dblclick="onRowDblClick"
- :show-overflow-tooltip="true">
- <el-table-column label="序号" prop="id" width="60" />
- <el-table-column label="产品名称" prop="产品名称" width="260" />
- <el-table-column label="产品编码" prop="产品编码" width="150" />
- <el-table-column label="产品图片" width="120">
- <template #default="{ row }">
- <el-image
- :src="formatImageUrl(row.产品图片)"
- :preview-src-list="[formatImageUrl(row.产品图片)]"
- style="width: 90px; height: 70px; cursor: pointer;"
- fit="contain"
- lazy
- preview-teleported
- :hide-on-click-modal="true"
- >
- <template #placeholder>
- <div class="img-placeholder-mini" />
- </template>
- </el-image>
- </template>
- </el-table-column>
- <el-table-column label="效果图" width="120">
- <template #default="{ row }">
- <el-image
- :src="formatImageUrl(row.产品效果图)"
- :preview-src-list="[formatImageUrl(row.产品效果图)]"
- style="width: 90px; height: 70px; cursor: pointer;"
- fit="contain"
- lazy
- preview-teleported
- :hide-on-click-modal="true"
- >
- <template #placeholder>
- <div class="img-placeholder-mini" />
- </template>
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #f5f7fa; color: #909399; font-size: 12px;">
- <el-icon><Picture /></el-icon>
- <span>暂无效果图</span>
- </div>
- </template>
- </el-image>
- </template>
- </el-table-column>
- <el-table-column label="创建人" prop="创建人" width="160" />
- <el-table-column label="创建时间" prop="创建时间" width="160" />
- <el-table-column label="操作" width="140" fixed="right" align="center" :show-overflow-tooltip="false">
- <template #default="{ row }">
- <div class="table-operations">
- <el-button type="primary" link size="small" @click="onRowDesignClick(row)">
- <el-icon><EditPen /></el-icon>
- 产品设计
- </el-button>
- <el-button type="primary" link size="small" @click="handleDeleteProduct(row)">
- <el-icon><Delete /></el-icon>
- 删除
- </el-button>
- </div>
- </template>
- </el-table-column>
- </el-table>
- <div class="gva-pagination">
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="page"
- :page-sizes="[10, 30, 50, 100]"
- :page-size="pageSize"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"/>
- </div>
- </div>
- </el-main>
- </layout-content>
- </layout>
- </layout>
- <el-dialog v-model="editDialogVisible" title="" fullscreen :modal="true" :show-close="false" @close="handleDialogClose">
- <!-- 关闭按钮 -->
- <div style="position: absolute; top: 10px; right: 20px; z-index: 1000;">
- <el-button type="danger" size="large" @click="editDialogVisible = false">
- <el-icon><Close /></el-icon>关闭
- </el-button>
- </div>
- <div class="image-edit-container">
- <!-- 左侧:原图新图 + 输入框 -->
- <div class="left-column">
- <!-- 标题 -->
- <div style="font-size: 18px; font-weight: bold; color: white; margin-bottom: 10px; background-color: #404040; padding: 10px; border-radius: 4px; text-align: center;">②出图</div>
- <!-- 图片对比区域 -->
- <div class="image-comparison-section">
- <!-- 原图区域 -->
- <div class="image-preview" style="flex: 1; min-width: 120px; display: flex; flex-direction: column; align-items: center;">
- <h3 style="margin-top: 0; margin-bottom: 8px; font-size: 14px; font-weight: bold; color: #303133; align-self: flex-start;">上传商品白底图</h3>
- <div v-if="editFormData.original_image_url" class="upload-image-box" style="cursor: pointer;" @click="handleImageZoom(formatImageUrl(editFormData.original_image_url))">
- <el-image
- :src="formatImageUrl(editFormData.original_image_url)"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: #f5f7fa;"><el-icon><Picture /></el-icon></div>
- </template>
- </el-image>
- </div>
- <div v-else class="image-placeholder image-placeholder-small">
- <el-icon :size="30"><Picture /></el-icon>
- <span style="margin-top: 5px; font-size: 10px;">暂无原图</span>
- </div>
- </div>
- <!-- 商品图例、案例:右侧一列,与图片等高上下对齐,不用固定 margin 避免小屏跑偏 -->
- <div class="case-links-column">
- <el-button type="text" size="small" @click="toggleProductExample" class="case-link-btn">
- <template #icon>
- <el-icon :size="16">
- <component :is="productExampleVisible ? 'ArrowDown' : 'ArrowRight'" />
- </el-icon>
- </template>
- 商品图例
- </el-button>
- <el-button type="text" size="small" @click="toggleCaseExample" class="case-link-btn">
- <template #icon>
- <el-icon :size="16">
- <component :is="caseExampleVisible ? 'ArrowDown' : 'ArrowRight'" />
- </el-icon>
- </template>
- 案例
- </el-button>
- </div>
- </div>
-
- <!-- 输入框区域 -->
- <div class="edit-section" style="border: 1px solid #e4e7ed; border-radius: 4px; display: flex; flex-direction: column; position: relative;">
- <el-form :model="editFormData" label-width="80px" style="flex: 1; display: flex; flex-direction: column; min-height: 0;">
- <el-input
- type="textarea"
- v-model="editFormData.chinese_description"
- :rows="14"
- placeholder="点击右侧模板图片可自动填充描述内容"
- show-word-limit
- maxlength="500"
- style="width: 100%; resize: none;"
- :disabled="loadingStatus"
- />
- </el-form>
- <!-- 加载遮罩 -->
- <div v-if="loadingStatus" style="position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255, 255, 255, 0.8); display: flex; align-items: center; justify-content: center; border-radius: 4px; z-index: 10;">
- <el-icon style="font-size: 24px; color: #409eff;"><Loading /></el-icon>
- <span style="margin-left: 10px; color: #409eff;">正在生成中...</span>
- </div>
-
- <!-- 按钮放在表单下方 -->
- <div style="margin-top: 15px; padding-top: 15px; border-top: 1px solid #e4e7ed;">
- <!-- 尺寸选择区域 -->
- <div style="margin-bottom: 15px;">
- <div style="display: flex; gap: 15px; flex-wrap: wrap; align-items: center;">
- <div v-for="ratio in [ '1:1','4:3','3:2','2:3','16:9']" :key="ratio" style="display: flex; align-items: center; gap: 5px;">
- <el-radio v-model="selectedSize" :label="ratio" @change="handleSizeChange" border style="border-radius: 2px;">
- {{ ratio }}
- </el-radio>
- </div>
- <!-- <div style="display: flex; align-items: center; gap: 5px;">
- <el-radio v-model="selectedSize" label="custom" @change="handleSizeChange" border style="border-radius: 2px;">
- 自由尺寸
- </el-radio>
- </div> -->
- </div>
-
- <!-- 自由尺寸的像素输入 -->
- <div v-if="selectedSize === 'custom'" style="display: flex; align-items: center; gap: 12px; margin-top: 15px; padding-top: 10px; border-top: 1px dashed #ebeef5;">
- <span style="font-size: 14px; color: #606266; white-space: nowrap;">自定义尺寸:</span>
- <el-input
- v-model="customWidth"
- size="small"
- style="width: 100px;"
- placeholder="宽度"
- @input="validateCustomSize">
- <template #append>px</template>
- </el-input>
- <span style="color: #909399;">×</span>
- <el-input
- v-model="customHeight"
- size="small"
- style="width: 100px;"
- placeholder="高度"
- @input="validateCustomSize">
- <template #append>px</template>
- </el-input>
- </div>
-
- <!-- 显示当前尺寸信息 -->
- <div v-if="selectedSize !== 'custom'" style="font-size: 13px; color: #909399; margin-top: 10px; padding-top: 10px; border-top: 1px dashed #ebeef5;">
- 当前尺寸: {{ getSizeInfo(selectedSize) }}
- </div>
- </div>
- <!-- 操作按钮 -->
- <div style="display: flex; justify-content: flex-end; gap: 12px;">
- <!-- <el-button size="medium" @click="clearInput">清空</el-button> -->
- <el-button size="medium" type="success" @click="optimizeContent" :loading="loadingStatus || pollStatus === 'optimizing'">
- {{ loadingStatus || pollStatus === 'optimizing' ? '正在生成中' : '扩写提示词' }} <span style="margin-left: 8px;">⚡ 25 <span style="font-size: 12px;"></span></span>
- </el-button>
- <el-button size="medium" type="primary" @click="generateImage" :loading="loadingStatus || pollStatus === 'polling'">
- {{ loadingStatus || pollStatus === 'polling' ? '正在生成中' : '立即生成' }} <span style="margin-left: 8px;">⚡ 150 <span style="font-size: 12px;"></span></span>
- </el-button>
- </div>
- </div>
- </div>
- </div>
-
- <!-- 中间:产品信息和历史记录(保证两侧边框可见,不与其他列重叠) -->
- <div class="middle-column">
- <!-- 历史记录覆盖层 -->
- <div v-if="showHistoryPanel" style="position: absolute; top: 0; left: 0; right: 0; height: 100%; background: #ffffff; border-radius: 0; z-index: 1000; display: flex; justify-content: center; align-items: flex-start; box-shadow: 4px 0 20px rgba(0,0,0,0.15); border-right: 1px solid #e4e7ed;">
- <div style="width: 95%; height: 100%; overflow-y: auto;">
- <div style="padding: 20px;">
- <div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #e4e7ed;">
- <h3 style="margin: 0; font-size: 16px; font-weight: bold; color: #303133;">历史记录</h3>
- <el-button type="danger" size="small" @click="toggleHistoryPanel">
- <el-icon><Close /></el-icon>关闭
- </el-button>
- </div>
-
- <!-- 模板分类树 -->
- <el-tree
- :data="templateTreeData"
- node-key="id"
- default-expand-all
- @node-click="handleTemplateTreeClick"
- style="margin-bottom: 20px;"
- >
- <template #default="{ node, data }">
- <span>{{ data.label }}</span>
- <span style="margin-left: 10px; font-size: 12px; color: #909399;">({{ data.count }}张)</span>
- </template>
- </el-tree>
-
- <!-- 选中模板的历史图片 -->
- <div>
- <h5 style="margin: 0 0 10px 0; font-size: 13px; font-weight: bold;">
- {{ currentTemplateName || '历史图片' }}
- </h5>
- <div class="history-images-list" style="display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px;">
- <div v-for="(image, index) in filteredImages" :key="index" class="history-image-item" style="border: 1px solid #e4e7ed; border-radius: 4px; overflow: hidden; padding: 10px;">
- <div style="height: 120px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden;">
- <el-image
- :src="formatImageUrl(image.url)"
- :preview-src-list="[formatImageUrl(image.url)]"
- style="width: 100%; height: 100%;"
- fit="contain"
- lazy
- preview-teleported
- />
- </div>
- <div style="margin-top: 10px; font-size: 12px; color: #606266; line-height: 1.4; height: 50px; overflow: hidden;">
- {{ image.product_content || '' }}
- </div>
- <div style="margin-top: 5px; font-size: 11px; color: #909399; text-align: right;">
- {{ image.createTime || '' }}
- </div>
- </div>
- <div v-if="filteredImages.length === 0" style="text-align: center; padding: 40px; color: #909399; font-size: 14px; grid-column: 1 / -1;">
- 暂无历史图片
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- 标题 -->
- <div style="font-size: 18px; font-weight: bold; color: white; margin-bottom: 15px; background-color: #404040; padding: 10px; border-radius: 4px; text-align: center; display: flex; justify-content: space-between; align-items: center;">
- <span>③效果图</span>
- <el-button type="primary" size="small" @click="toggleHistoryPanel">
- {{ showHistoryPanel ? '隐藏历史记录' : '显示历史记录' }}
- </el-button>
- </div>
-
- <!-- 主内容区域 -->
- <div style="display: flex; height: calc(100% - 90px);">
- <!-- 左侧:历史记录面板 (已移至覆盖层) -->
-
- <!-- 右侧:原始内容 -->
- <div class="original-content" style="flex: 1; overflow-y: auto; min-width: 0;">
- <!-- 商品图例覆盖层 -->
- <div v-if="productExampleVisible" style="position: absolute; top: 0; left: 0; right: 0; height: 100%; background: #ffffff; border-radius: 0; z-index: 1000; display: flex; justify-content: center; align-items: flex-start; box-shadow: 4px 0 20px rgba(0,0,0,0.15); border-right: 1px solid #e4e7ed;">
- <div style="width: 95%; height: 100%; overflow-y: auto;">
- <div style="padding: 20px;">
- <div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #e4e7ed;">
- <h3 style="margin: 0; font-size: 16px; font-weight: bold; color: #303133;">商品图例</h3>
- <el-button type="text" size="small" @click="toggleProductExample">
- <el-icon><Close /></el-icon>
- </el-button>
- </div>
-
- <p style="margin: 0 0 20px 0; color: #606266; line-height: 1.5; font-size: 14px;">
- 建议上传商品单一、完整清晰、占据画面中心的白底图,否则可能会影响商品识别效果和生成的背景图质量。
- </p>
- <!-- 商品图例对比 -->
- <div style="margin-bottom: 20px;">
- <div style="display: flex; gap: 15px;">
- <!-- 正确示例 -->
- <div style="flex: 1; background: white; padding: 15px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); border: 1px solid #e4e7ed;">
- <div style="display: flex; align-items: center; margin-bottom: 10px;">
- <el-icon :size="14" style="color: #67c23a; margin-right: 8px;"><SuccessFilled /></el-icon>
- <span style="font-weight: 500; color: #303133; font-size: 13px;">商品单一</span>
- </div>
- <div style="height: 120px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/001.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
-
- <!-- 错误示例 -->
- <div style="flex: 1; background: white; padding: 15px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); border: 1px solid #e4e7ed;">
- <div style="display: flex; align-items: center; margin-bottom: 10px;">
- <el-icon :size="14" style="color: #f56c6c; margin-right: 8px;"><Close /></el-icon>
- <span style="font-weight: 500; color: #303133; font-size: 13px;">画面包含多件商品</span>
- </div>
- <div style="height: 120px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/002.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
- </div>
- </div>
- <div style="margin-bottom: 20px;">
- <div style="display: flex; gap: 15px;">
- <!-- 正确示例 -->
- <div style="flex: 1; background: white; padding: 15px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); border: 1px solid #e4e7ed;">
- <div style="display: flex; align-items: center; margin-bottom: 10px;">
- <el-icon :size="14" style="color: #67c23a; margin-right: 8px;"><SuccessFilled /></el-icon>
- <span style="font-weight: 500; color: #303133; font-size: 13px;">画面完整清晰</span>
- </div>
- <div style="height: 120px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/003.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
-
- <!-- 错误示例 -->
- <div style="flex: 1; background: white; padding: 15px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); border: 1px solid #e4e7ed;">
- <div style="display: flex; align-items: center; margin-bottom: 10px;">
- <el-icon :size="14" style="color: #f56c6c; margin-right: 8px;"><Close /></el-icon>
- <span style="font-weight: 500; color: #303133; font-size: 13px;">商品残缺/遮挡</span>
- </div>
- <div style="height: 120px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/004.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
- </div>
- </div>
- <div style="margin-bottom: 20px;">
- <div style="display: flex; gap: 15px;">
- <!-- 正确示例 -->
- <div style="flex: 1; background: white; padding: 15px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); border: 1px solid #e4e7ed;">
- <div style="display: flex; align-items: center; margin-bottom: 10px;">
- <el-icon :size="14" style="color: #67c23a; margin-right: 8px;"><SuccessFilled /></el-icon>
- <span style="font-weight: 500; color: #303133; font-size: 13px;">商品占据画面中心</span>
- </div>
- <div style="height: 120px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/005.jpg`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
-
- <!-- 错误示例 -->
- <div style="flex: 1; background: white; padding: 15px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); border: 1px solid #e4e7ed;">
- <div style="display: flex; align-items: center; margin-bottom: 10px;">
- <el-icon :size="14" style="color: #f56c6c; margin-right: 8px;"><Close /></el-icon>
- <span style="font-weight: 500; color: #303133; font-size: 13px;">商铺主题不突出</span>
- </div>
- <div style="height: 120px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/006.jpg`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
-
- <!-- 案例覆盖层 -->
- <div v-if="caseExampleVisible" style="position: absolute; top: 0; left: 0; right: 0; width: 100%; max-width: 600px; height: 100%; background: #ffffff; border-radius: 0; z-index: 1000; display: flex; justify-content: center; align-items: flex-start; box-shadow: 4px 0 20px rgba(0,0,0,0.15); border-right: 1px solid #e4e7ed;">
- <div style="width: 95%; height: 100%; overflow-y: auto;">
- <div style="padding: 20px;">
- <div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #e4e7ed;">
- <h3 style="margin: 0; font-size: 16px; font-weight: bold; color: #303133;">合成商品图例</h3>
- <el-button type="text" size="small" @click="toggleCaseExample">
- <el-icon><Close /></el-icon>
- </el-button>
- </div>
-
- <div style="display: flex; margin-bottom: 15px; padding: 10px 0; border-bottom: 1px solid #e4e7ed;">
- <div style="flex: 1; font-weight: 600; color: #303133; font-size: 14px; text-align: center;">原图</div>
- <div style="width: 40px;"></div>
- <div style="flex: 1; font-weight: 500; color: #606266; font-size: 14px; text-align: center;">标准模式</div>
- <div style="width: 40px;"></div>
- <div style="flex: 1; font-weight: 500; color: #606266; font-size: 14px; text-align: center;">专业模式</div>
- </div>
-
- <!-- 案例图片网格 -->
- <div style="display: flex; flex-direction: column; gap: 15px;">
- <!-- 案例1 -->
- <div style="display: flex; align-items: center; gap: 10px;">
- <div style="flex: 1; height: 80px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/007.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- <div style="width: 40px; display: flex; justify-content: center;">
- <el-icon style="color: #409eff;"><ArrowRight /></el-icon>
- </div>
- <div style="flex: 1; height: 80px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/008.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- <div style="width: 40px; display: flex; justify-content: center;">
- <el-icon style="color: #409eff;"><ArrowRight /></el-icon>
- </div>
- <div style="flex: 1; height: 80px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/009.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
-
- <!-- 案例2 -->
- <div style="display: flex; align-items: center; gap: 10px;">
- <div style="flex: 1; height: 80px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/010.jpg`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- <div style="width: 40px; display: flex; justify-content: center;">
- <el-icon style="color: #409eff;"><ArrowRight /></el-icon>
- </div>
- <div style="flex: 1; height: 80px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/011.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- <div style="width: 40px; display: flex; justify-content: center;">
- <el-icon style="color: #409eff;"><ArrowRight /></el-icon>
- </div>
- <div style="flex: 1; height: 80px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/012.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
-
- <!-- 案例3 -->
- <div style="display: flex; align-items: center; gap: 10px;">
- <div style="flex: 1; height: 80px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/013.jpg`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- <div style="width: 40px; display: flex; justify-content: center;">
- <el-icon style="color: #409eff;"><ArrowRight /></el-icon>
- </div>
- <div style="flex: 1; height: 80px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/014.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- <div style="width: 40px; display: flex; justify-content: center;">
- <el-icon style="color: #409eff;"><ArrowRight /></el-icon>
- </div>
- <div style="flex: 1; height: 80px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/015.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
-
- <!-- 案例4 -->
- <div style="display: flex; align-items: center; gap: 10px;">
- <div style="flex: 1; height: 80px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/016.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- <div style="width: 40px; display: flex; justify-content: center;">
- <el-icon style="color: #409eff;"><ArrowRight /></el-icon>
- </div>
- <div style="flex: 1; height: 80px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/017.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- <div style="width: 40px; display: flex; justify-content: center;">
- <el-icon style="color: #409eff;"><ArrowRight /></el-icon>
- </div>
- <div style="flex: 1; height: 80px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden; border: 1px solid #e4e7ed;">
- <el-image
- :src="`/src/assets/ai案例图/018.png`"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399; font-size: 12px;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
-
- <div style="height: 100%; display: flex; flex-direction: column; width: 100%; min-width: 0; align-items: center;">
- <!-- 上:留出的空白区域 -->
- <div style="width: 100%; height: 90px; background-image: url('/src/assets/top-bg.png'); background-size: cover; background-position: center; border-top-left-radius: 8px; border-top-right-radius: 8px;"></div>
- <!-- 上中:图片显示区域 -->
- <div style="display: flex; flex-direction: column; align-items: center; width: 100%;">
- <!-- 产品图片显示(默认) -->
- <div style="width: 100%; height: 290px; max-width: 430px; display: flex; justify-content: center; align-items: center; background-color: white; border-radius: 4px;">
- <el-carousel v-if="newImages.length > 0" indicator-position="outside" style="width: 100%; height: 100%;">
- <el-carousel-item v-for="(image, index) in newImages" :key="index">
- <div style="width: 100%; height: 100%; cursor: pointer;" @click="handleImageZoom(formatImageUrl(image.url))">
- <el-image
- :src="formatImageUrl(image.url)"
- style="width: 100%; height: 100%; object-fit: contain;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; background-color: white;" />
- </template>
- </el-image>
- </div>
- </el-carousel-item>
- </el-carousel>
- <div v-else-if="editFormData.new_image_url && showProductImage" style="width: 100%; height: 100%; cursor: pointer;" @click="handleImageZoom(formatImageUrl(editFormData.new_image_url))">
- <el-image
- :src="formatImageUrl(editFormData.new_image_url)"
- style="width: 100%; height: 100%; object-fit: contain;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; background-color: white;" />
- </template>
- </el-image>
- </div>
- <div v-else-if="!showProductImage || !editFormData.new_image_url" class="image-placeholder">
- <el-icon :size="60"><Picture /></el-icon>
- <span style="margin-top: 10px; display: block;">暂无效果图</span>
- </div>
- </div>
- </div>
- <!-- 中:商品信息表单(宽度 100% 含边框,避免右侧边框被裁) -->
- <div class="product-info-container" style="width: 100%; max-width: 430px; height: 320px; border: 12px solid #f6E0dd; border-radius: 4px; padding: 15px; box-sizing: border-box;">
- <div class="product-info-item">
- <span class="product-info-label">商品条码:</span>
- <span class="product-info-value">{{ editFormData.barcode || '-' }}</span>
- </div>
- <div class="product-info-item">
- <span class="product-info-label">宏伟编码:</span>
- <span class="product-info-value">{{ editFormData.code || '-' }}</span>
- </div>
- <div class="product-info-item">
- <span class="product-info-label">产品名称:</span>
- <span class="product-info-value">{{ editFormData.product_name || '-' }}</span>
- </div>
- <div class="product-info-item">
- <span class="product-info-label">品牌名称:</span>
- <span class="product-info-value">{{ editFormData.brand_name || '-' }}</span>
- </div>
- <div class="product-info-item">
- <span class="product-info-label">产品规格:</span>
- <span class="product-info-value">{{ editFormData.specification || '-' }}</span>
- </div>
- <div class="product-info-item">
- <span class="product-info-label">单 位:</span>
- <span class="product-info-value">{{ editFormData.unit || '-' }}</span>
- </div>
- </div>
- <!-- 下:空出来的部分 -->
- <div style="width: 100%; max-width: 430px; height: 61px;"></div>
- </div>
- </div>
- </div>
- </div>
-
- <!-- 右侧:模版列表(与中间列左右留白一致) -->
- <div class="right-column">
- <div class="right-template" style="height: 100%; display: flex; flex-direction: column;">
- <!-- 标题 -->
- <div style="font-size: 18px; font-weight: bold; color: white; margin-bottom: 15px; background-color: #404040; padding: 10px; border-radius: 4px; text-align: center;margin-top:15px">①模版</div>
-
- <!-- 搜索框 -->
- <div class="template-search" style="margin-bottom: 15px;">
- <el-input v-model="searchKeyword" placeholder="请描述你想搜索的模版关键字..." clearable @input="handleSearch" @clear="handleClearSearch">
- <template #prefix>
- <el-icon><Search /></el-icon>
- </template>
- <template #append>
- <el-button @click="handleSearch" >搜索</el-button>
- </template>
- </el-input>
- </div>
- <!-- 关键词搜索次数最多的 -->
-
- <!-- 模板列表 -->
- <div style="flex: 1; min-height: 0;">
- <h4 style="margin-bottom: 10px;margin: 0px 0px 20px 0px;padding: 0px;">模版分类 ({{ templateList.length }})</h4>
- <el-scrollbar style="height: 100%;">
- <div class="template-list">
- <!-- 搜索无结果提示 -->
- <div v-if="!searchLoading && searchKeyword && templateList.length === 0" class="empty-search">
- <el-icon :size="50"><Search /></el-icon>
- <p>未找到相关模板</p>
- </div>
-
- <!-- 模板项 -->
- <div v-for="template in templateList"
- :key="template.id" class="template-item"
- :class="{ 'active': currentTemplateId === template.id }"
- @click="selectTemplate(template)" >
- <div class="template-thumbnail" style="position: relative;">
- <div class="image-container" @click.stop="selectTemplate(template)">
- <el-image
- :src="formatImageUrl(template.thumbnail_image)"
- style="width: 100%; height: 100%;"
- fit="contain"
- lazy
- >
- <template #placeholder>
- <div style="width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #f5f7fa;"><el-icon class="is-loading"><Loading /></el-icon></div>
- </template>
- <template #error>
- <div class="thumbnail-error">
- <el-icon><Picture /></el-icon>
- </div>
- </template>
- </el-image>
- <div class="zoom-icon" @click.stop="handleImageZoom(formatImageUrl(template.thumbnail_image))">
- <el-icon :size="20"><ZoomIn /></el-icon>
- </div>
- </div>
- <div class="template-id">模版 {{ template.id }}</div>
- <el-button
- type="primary"
- circle
- size="small"
- style="position: absolute; top: 10px; right: 10px; opacity: 0; transition: opacity 0.3s; z-index: 10;"
- @click.stop="downloadTemplateImage(formatImageUrl(template.thumbnail_image))"
- class="image-download-btn" >
- <el-icon><Download /></el-icon>
- </el-button>
- </div>
- <div class="template-name" :title="template.template_name || `模板 ${template.id}`">
- {{ truncateText(template.template_name || `模板 ${template.id}`, 20) }}
- </div>
- <div class="template-desc" :title="template.chinese_description">
- {{ truncateText(template.chinese_description, 25) }}
- </div>
- </div>
-
- <!-- 初始无数据提示 -->
- <div v-if="!searchKeyword && !searchLoading && templateList.length === 0" class="empty-templates">
- <el-icon :size="40"><Picture /></el-icon>
- <p>暂无模板数据</p>
- </div>
- </div>
- </el-scrollbar>
- <!-- 图片预览组件 -->
- <el-image-viewer
- v-if="previewVisible"
- :url-list="previewImageUrl ? [previewImageUrl] : []"
- :hide-on-click-modal="true"
- @close="previewVisible = false"
- />
- </div>
- </div>
- </div>
-
- <!-- 商品图例右侧面板 (已移至中间列) -->
- <div v-if="false" class="product-example-panel" style="width: 420px; border-left: 1px solid #e4e7ed; padding: 20px; background: #ffffff; overflow-y: auto; box-shadow: -2px 0 10px rgba(0,0,0,0.05);">
- <div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;">
- <h3 style="margin: 0; font-size: 16px; font-weight: bold; color: #303133;">商品图例</h3>
- <el-button type="text" size="small" @click="toggleProductExample">
- <el-icon><Close /></el-icon>
- </el-button>
- </div>
-
- <p style="margin: 0 0 15px 0; color: #606266; line-height: 1.5;">
- 建议上传商品单一、完整清晰、占据画面中心的白底图,否则可能会影响商品识别效果和生成的背景图质量。
- </p>
-
- <!-- 商品单一 -->
- <div style="margin-bottom: 20px;">
- <div style="font-weight: 600; color: #303133; margin-bottom: 10px;">商品单一</div>
- <div style="background: white; padding: 15px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); margin-bottom: 10px;">
- <div style="display: flex; align-items: center; margin-bottom: 8px;">
- <el-icon :size="16" style="color: #67c23a; margin-right: 8px;"><SuccessFilled /></el-icon>
- <span style="font-weight: 500; color: #303133;">商品完整清晰</span>
- </div>
- <div style="height: 180px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden;">
- <el-image
- :src="'@/assets/ai案例图/001.png'"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
-
- <div style="background: white; padding: 15px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05);">
- <div style="display: flex; align-items: center; margin-bottom: 8px;">
- <el-icon :size="16" style="color: #67c23a; margin-right: 8px;"><SuccessFilled /></el-icon>
- <span style="font-weight: 500; color: #303133;">商品占据画面中心</span>
- </div>
- <div style="height: 180px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden;">
- <el-image
- :src="'@/assets/ai案例图/002.png'"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
- </div>
-
- <!-- 画面包含多件商品 -->
- <div style="margin-bottom: 20px;">
- <div style="font-weight: 600; color: #303133; margin-bottom: 10px;">画面包含多件商品</div>
- <div style="background: white; padding: 15px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05);">
- <div style="display: flex; align-items: center; margin-bottom: 8px;">
- <el-icon :size="16" style="color: #f56c6c; margin-right: 8px;"><Close /></el-icon>
- <span style="font-weight: 500; color: #303133;">不推荐</span>
- </div>
- <div style="height: 180px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden;">
- <el-image
- :src="'@/assets/ai案例图/003.png'"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
- </div>
-
- <!-- 商品残缺/遮挡 -->
- <div style="margin-bottom: 20px;">
- <div style="font-weight: 600; color: #303133; margin-bottom: 10px;">商品残缺/遮挡</div>
- <div style="background: white; padding: 15px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05);">
- <div style="display: flex; align-items: center; margin-bottom: 8px;">
- <el-icon :size="16" style="color: #e6a23c; margin-right: 8px;"><WarningFilled /></el-icon>
- <span style="font-weight: 500; color: #303133;">商品主体不突出</span>
- </div>
- <div style="height: 180px; display: flex; justify-content: center; align-items: center; background: #f9f9f9; border-radius: 4px; overflow: hidden;">
- <el-image
- :src="'@/assets/ai案例图/004.png'"
- style="width: 100%; height: 100%;"
- fit="contain"
- >
- <template #error>
- <div style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #909399;">
- <span>图片占位</span>
- </div>
- </template>
- </el-image>
- </div>
- </div>
- </div>
- </div>
- </div>
- </el-dialog>
- <!-- 图片预览 -->
- <el-dialog v-model="dialogVisible" title="图片预览" width="70%" top="5vh" destroy-on-close>
- <div style="text-align: center;">
- <el-image :src="currentImageUrl" style="max-width: 100%; max-height: 70vh;" fit="contain" />
- </div>
- </el-dialog>
- <el-dialog
- v-model="AdddialogVisible"
- title="新增产品"
- width="600px"
- :close-on-click-modal="false"
- @close="handleClose"
- >
- <el-form
- ref="productFormRef"
- :model="productForm"
- label-width="100px"
- label-position="right"
- size="medium"
- >
- <!--商户名称 -->
- <el-form-item label="商户名称" prop="merchant_id">
- <el-input
- :model-value="addDialogMerchantName"
- placeholder="请先在左侧选择商户"
- style="width: 100%"
- readonly
- disabled
- />
- </el-form-item>
- <!-- 产品名称 -->
- <el-form-item label="产品名称" prop="product_name">
- <el-input
- v-model="productForm.product_name"
- placeholder="请输入产品名称"
- clearable
- show-word-limit
- />
- </el-form-item>
- <!-- 产品编码 -->
- <el-form-item label="产品编码" prop="product_code">
- <el-input
- v-model="productForm.product_code"
- placeholder="请输入产品编码"
- clearable
- show-word-limit
- />
- </el-form-item>
- <!-- 产品图片 -->
- <el-form-item label="产品图片" prop="product_img">
- <div class="add-dialog-upload-wrap">
- <!-- 已上传:预览 + 替换/删除 -->
- <div v-if="productForm.product_img" class="add-dialog-preview-box">
- <div class="add-dialog-preview-img">
- <img
- v-if="addDialogPreviewSrc"
- :src="addDialogPreviewSrc"
- class="add-dialog-preview-img-inner"
- alt="产品图片预览"
- />
- </div>
- <div v-if="addDialogImageSizeText" class="add-dialog-image-size">
- 当前大小:{{ addDialogImageSizeText }}(限制 {{ MAX_IMAGE_SIZE_MB }}MB 以内)
- </div>
- <div class="add-dialog-preview-actions">
- <el-upload
- :show-file-list="false"
- :before-upload="handleAddDialogSelectImage"
- accept="image/jpeg,image/png,image/jpg,image/webp"
- >
- <el-button type="primary" size="small">
- <el-icon><Upload /></el-icon>
- 替换
- </el-button>
- </el-upload>
- <el-button type="danger" size="small" plain @click="handleRemoveImage">
- 删除
- </el-button>
- </div>
- </div>
- <!-- 未上传:点击上传区域 -->
- <el-upload
- v-else
- class="add-dialog-upload-area"
- :show-file-list="false"
- :before-upload="handleAddDialogSelectImage"
- accept="image/jpeg,image/png,image/jpg,image/webp"
- >
- <div class="add-dialog-upload-inner">
- <el-icon class="add-dialog-upload-icon"><Plus /></el-icon>
- <span class="add-dialog-upload-text">点击上传图片</span>
- <span class="add-dialog-upload-tip">支持 jpg/png/webp,大小不超过 1MB</span>
- </div>
- </el-upload>
- </div>
- </el-form-item>
- </el-form>
- <template #footer>
- <span class="dialog-footer">
- <el-button @click="handleClose">取消</el-button>
- <el-button type="primary" :loading="submitLoading" @click="handleSubmit">
- 确定
- </el-button>
- </span>
- </template>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import { ref, reactive, computed, toRaw, onMounted, watch } from 'vue'
- import { ElMessage, ElMessageBox, ElLoading } from 'element-plus'
- import { getTable, imageToText, Template_ids,txttoimg_moxing,txttoimg_update, getSide,merchantGetab,productList,productDetail,
- product_template,GetTxtToTxt,GetProductFind,productAdd,productDelete,getMerchantId,GetImageStatus } from '@/api/mes/job'
- import { useUserStore } from '@/pinia/modules/user'
- import { ZoomIn, Camera, SuccessFilled, WarningFilled, More, ArrowRight, ArrowDown, Loading, Plus, Upload, Picture, EditPen, Delete } from '@element-plus/icons-vue'
- import { Layout, LayoutHeader, LayoutSider, LayoutContent } from '@arco-design/web-vue'
- // 商品图例显示状态
- const productExampleVisible = ref(false)
- const caseExampleVisible = ref(false)
- // 图片历史记录相关状态
- const templateTreeData = ref([])
- const currentTemplateId = ref(null)
- const currentTemplateName = ref('')
- const filteredImages = ref([])
- const showHistoryPanel = ref(false)
- // 切换历史记录面板显示
- const toggleHistoryPanel = () => {
- showHistoryPanel.value = !showHistoryPanel.value
- }
- // 切换商品图例显示
- const toggleProductExample = () => {
- productExampleVisible.value = !productExampleVisible.value
- if (productExampleVisible.value) {
- caseExampleVisible.value = false
- }
- }
- // 切换案例显示
- const toggleCaseExample = () => {
- caseExampleVisible.value = !caseExampleVisible.value
- if (caseExampleVisible.value) {
- productExampleVisible.value = false
- }
- }
- const props = defineProps({
- editFormData: {
- type: Object,
- default: () => ({})
- }
- })
- //获取登录用户信息
- const userStore = useUserStore()
- const _username = ref('')
- _username.value = userStore.userInfo.userName + '/' + userStore.userInfo.nickName
- console.log('获取用户信息',_username.value)
- console.log('获取用户名称',userStore.userInfo.nickName)
- const searchInfo = ref('')
- const tableData1 = ref([])
- const total = ref(0)
- const page = ref(1)
- const pageSize = ref(10)
- const dialogVisible = ref(false)
- const currentImageUrl = ref('')
- const width = ref('')
- const height = ref('')
- const isLoading = ref(false)
- const txttotxt_selectedOption = ref('gemini-2.0-flash')
- const selectedOption = ref('dall-e-3')
- const num = ref(1)
- const _parh = ref([])
- const folderList = ref([])
- const selectedFolder = ref('')
- // 左侧树形数据
- const treeData = ref([])
- const getTreeData = async () => {
- try {
- const data = await merchantGetab();
- console.log(data)
-
- treeData.value = data.data.map(item => {
- return {
- label: item.tab || item.merchant_name,
- value: item.merchant_code,
- // 如果需要原始数据可以保留
- originalData: item
- }
- })
-
- } catch (error) {
- console.error(error)
- treeData.value = [] // 出错时清空数据
- }
- }
- getTreeData();
- const defaultProps = {
- children: 'children',
- label: 'label'
- }
- const editDialogVisible = ref(false)
- const editFormData = reactive({
- id: '',
- chinese_description: '',
- english_description: '',
- new_image_url: '',
- new_video_url: '',
- imgtoimg_url: '',
- img_name: '',
- video_name: ''
- })
- // 定义文生图表单对象
- const form = reactive({
- chinese_description: ''
- })
- // 控制产品信息部分图片是否显示
- const showProductImage = ref(false)
- // 存储生成的多个新图
- const newImages = ref([])
- // 加载状态控制
- const loadingStatus = ref(false)
- // 图片 URL:优先用相对路径走代理(无跨域);路径补全 /uploads/
- const formatImageUrl = (path) => {
- if (!path || typeof path !== 'string') return ''
- const p = path.trim()
- if (!p) return ''
- if (p.startsWith('data:')) return p
- if (p.startsWith('http://') || p.startsWith('https://')) {
- try {
- const u = new URL(p)
- const port = import.meta.env.VITE_UPLOADS_PORT || '9093'
- if (u.port === '9090') return `${u.protocol}//${u.hostname}:${port}${u.pathname}${u.search}`
- } catch { /* ignore */ }
- return p
- }
- let cleanPath = p.replace(/^public\//, '').replace(/^\//, '')
- if (!cleanPath.startsWith('uploads/') && !cleanPath.startsWith('/uploads/')) {
- cleanPath = 'uploads/' + cleanPath
- }
- const pathNorm = cleanPath.startsWith('/') ? cleanPath : '/' + cleanPath
- const port = (import.meta.env.VITE_UPLOADS_PORT || '9093').toString().trim()
- // 开发环境:相对路径走 Vite 代理 /uploads -> VITE_BASE_PATH:VITE_UPLOADS_PORT,避免跨域
- if (import.meta.env.DEV) {
- return pathNorm
- }
- // 生产环境:使用当前页 host + 端口(需确保该端口提供图片服务或 nginx 代理 /uploads)
- if (typeof window !== 'undefined') {
- const host = `${window.location.protocol}//${window.location.hostname}:${port}`
- return `${host.replace(/\/$/, '')}${pathNorm}`
- }
- return pathNorm
- }
- // 点击图片时更新产品信息部分的图片和对应的product_content
- const updateProductImage = (imageUrl) => {
- editFormData.new_image_url = imageUrl
- showProductImage.value = true
- // 查找对应的图片对象,更新product_content到输入框
- const selectedImage = newImages.value.find(img => img.url === imageUrl)
- if (selectedImage && selectedImage.product_content) {
- editFormData.chinese_description = selectedImage.product_content
- }
- // ElMessage.success('图片已更新到产品信息区域')
- }
- const txttoimg_modelList = ref([]); // 存储所有模型数据
- const txtimgselectedModel = ref(''); // 当前选中的模型名称
- const usedId = ref(null); // 当前使用的模型ID(兼容旧代码)
- const selectedId = ref(null); // 用户选择的模型ID(兼容旧代码)
- const isGenerating = ref(false); // 文生图生成中状态
- const usedIds = ref({}); // 当前使用的模型ID集合
- const selectedIds = ref({}); // 用户选择的模型ID集合
- // 获取文生图模型列表
- const fetchTxtImgModels = async () => {
- try {
- const response = await txttoimg_moxing();
- txttoimg_modelList.value = response.data.models.wenshengtu;
- // 获取当前使用的模型ID
- usedIds.value = response.data.used_ids;
- const currentUsedId = usedIds.value.wenshengtu;
-
- // 设置默认选中的模型
- const defaultModel = txttoimg_modelList.value.find(item => item.id === currentUsedId);
- if (defaultModel) {
- txtimgselectedModel.value = defaultModel.txttoimg;
- usedId.value = defaultModel.id;
- selectedId.value = defaultModel.id;
- selectedIds.value.wenshengtu = defaultModel.id;
- selectedOption.value = defaultModel.txttoimg;
- }
-
- console.log('文生图模型列表:', txttoimg_modelList.value);
- console.log('当前使用的模型ID:', currentUsedId);
- console.log('默认选中的模型:', defaultModel);
- } catch (error) {
- console.error('获取文生图模型列表失败:', error);
- ElMessage.error('获取模型列表失败');
- }
- }
- fetchTxtImgModels();
- // const getTableData = async () => {
- // const res = await getTable({
- // search: searchInfo.value,
- // limit: pageSize.value,
- // page: page.value,
- // folder: selectedFolder.value
- // })
- // tableData1.value = res.data.list
- // total.value = res.data.total
-
- // // 更新文件夹列表
- // if (res.data.folder) {
- // folderList.value = res.data.folder
- // }
- // }
- const nodeid = ref('')
- // 刷新产品列表(新增/编辑/删除后调用)
- const refreshProductList = async () => {
- if (!nodeid.value) return
- try {
- const res = await productList({
- search: searchInfo.value,
- limit: pageSize.value,
- page: page.value,
- code: nodeid.value
- })
- if (res.code === 0) {
- const sortedData = (res.data.list || []).sort((b, a) => a.id - b.id)
- tableData1.value = sortedData
- total.value = res.data.total
- }
- } catch (e) {
- console.error('刷新产品列表失败:', e)
- }
- }
- // 处理树节点点击
- const handleNodeClick = async(node) => {
- console.log('点击的节点:', node.value);
- nodeid.value = node.value;
-
- const res = await productList({
- search: searchInfo.value,
- limit: pageSize.value,
- page: page.value,
- code: node.value
- });
-
- if (res.code === 0) {
- // 按照ID进行排序,保持数据顺序
- const sortedData = res.data.list.sort((b, a) => a.id - b.id);
- tableData1.value = sortedData;
- total.value = res.data.total;
- }
- };
- // 当选择模型变化时
- const handleModelChange = (modelName) => {
- const model = txttoimg_modelList.value.find(item => item.txttoimg === modelName);
- if (model) {
- selectedId.value = model.id;
- selectedIds.value.wenshengtu = model.id;
- selectedOption.value = model.txttoimg;
- console.log('选择的模型ID:', model.id);
- }
- }
- // 设置默认模型
- const setActive = async (type) => {
- const id = selectedIds.value[type]
- if (id) {
- try {
- // 调用API设置默认模型
- const res = await txttoimg_update({ id: id,type:"wenshengtu"})
- if (res.code === 0) {
- usedIds.value[type] = id
- ElMessage.success('默认模型设置成功')
- } else {
- ElMessage.error(res.msg || '设置默认模型失败')
- }
- } catch (error) {
- console.error('设置默认模型失败', error)
- ElMessage.error('设置默认模型失败')
- }
- }
- }
- // 处理模板分类树数据
- const processTemplateTreeData = (images) => {
- // 按template_id分组
- const templateMap = {}
- images.forEach(item => {
- if (item.template_id) {
- if (!templateMap[item.template_id]) {
- templateMap[item.template_id] = []
- }
- templateMap[item.template_id].push(item)
- }
- })
-
- // 构建树结构数据
- const treeData = []
- Object.keys(templateMap).forEach(templateId => {
- treeData.push({
- id: templateId,
- label: `模板 ${templateId}`,
- count: templateMap[templateId].length
- })
- })
-
- templateTreeData.value = treeData
-
- // 默认选中第一个模板
- if (treeData.length > 0) {
- currentTemplateId.value = treeData[0].id
- currentTemplateName.value = treeData[0].label
- filterImagesByTemplate(treeData[0].id)
- }
- }
- // 根据模板ID过滤图片
- const filterImagesByTemplate = (templateId) => {
- filteredImages.value = newImages.value.filter(image => image.template_id == templateId)
- }
- // 处理模板树点击事件
- const handleTemplateTreeClick = (data) => {
- currentTemplateId.value = data.id
- currentTemplateName.value = data.label
- filterImagesByTemplate(data.id)
- }
- // 产品设计按钮点击(与双击行一致)
- const onRowDesignClick = (row) => {
- onRowDblClick(row)
- }
- // 删除产品(带确认)
- const handleDeleteProduct = async (row) => {
- try {
- await ElMessageBox.confirm(
- `确定要删除产品「${row.产品名称 || row.id}」吗?`,
- '确认删除',
- {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }
- )
- const res = await productDelete({ id: row.id })
- if (res?.code === 0) {
- ElMessage.success('删除成功')
- await refreshProductList()
- } else {
- ElMessage.error(res?.msg || '删除失败')
- }
- } catch (e) {
- if (e !== 'cancel') {
- console.error('删除产品失败:', e)
- ElMessage.error('删除失败')
- }
- }
- }
- const onRowDblClick = async (row) => {
- // 打开新产品前先清空上一产品的历史与展示,避免残留
- showHistoryPanel.value = false
- newImages.value = []
- templateTreeData.value = []
- filteredImages.value = []
- currentTemplateId.value = null
- currentTemplateName.value = ''
- // 设置编辑表单ID
- editFormData.id = row.id
- editDialogVisible.value = true
- // 1. 获取产品详情并设置原图
- const detailResponse = await productDetail({ id: row.id })
- if (detailResponse.code === 0 && detailResponse.data) {
- editFormData.original_image_url = detailResponse.data['产品图片']
- editFormData.new_image_url = detailResponse.data['产品效果图']
- editFormData.original_name = detailResponse.data['产品名称']
- editFormData.product_name = detailResponse.data['产品名称']
- editFormData.product_code = detailResponse.data['产品编码']
- // 如果有新图片,自动显示到产品信息区域
- if (detailResponse.data['产品效果图']) {
- showProductImage.value = true
- } else {
- showProductImage.value = false
- }
- // 获取image数组数据
- if (detailResponse.image && Array.isArray(detailResponse.image)) {
- detailResponse.image.forEach(item => {
- if (item.product_new_img) {
- newImages.value.push({
- url: item.product_new_img,
- product_content: item.product_content || '',
- template_id: item.template_id,
- createTime: item.createTime
- })
- }
- })
- // 如果有image数据,默认显示第一个的product_content
- if (newImages.value.length > 0 && newImages.value[0].product_content) {
- editFormData.chinese_description = newImages.value[0].product_content
- }
- // 处理模板分类树数据
- processTemplateTreeData(detailResponse.image)
- } else {
- editFormData.chinese_description = ''
- }
- }
- // 2. 获取所有模板数据
- await fetchTemplates()
- }
- // 存储所有模板数据
- const templateList = ref([])
- // 获取所有模板
- const fetchTemplates = async () => {
- const response = await product_template()
- if (response.code === 0 && response.data) {
- templateList.value = response.data.map(item => ({
- id: item.id,
- template_name: item.template_name || '',
- thumbnail_image: item.thumbnail_image,
- chinese_description: item.chinese_description || '',
- english_description: item.english_description || ''
- }))
-
- // 默认选中第一个模板
- // if (templateList.value.length > 0) {
- // selectTemplate(templateList.value[0])
- // }
- if (newImages.value.length > 0) {
- updateProductImage(newImages.value[0].url)
- }
- }
- }
- // 选择模板
- const selectTemplate = (template) => {
- currentTemplateId.value = template.id
- editFormData.thumbnail_image = template.thumbnail_image
- editFormData.template_id = template.id
- editFormData.chinese_description = template.chinese_description
- }
- // 处理图片加载错误
- const handleTemplateImageError = (event) => {
- event.target.src = 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0iI2YwZjBmMCIvPjx0ZXh0IHg9IjUwIiB5PSI1MCIgZm9udC1mYW1pbHk9IkFyaWFsIiBmb250LXNpemU9IjEyIiBmaWxsPSIjY2NjIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBkeT0iLjNlbSI+SW1hZ2UgRXJyb3I8L3RleHQ+PC9zdmc+'
- }
- // 修改后的 selectTemplate 函数(如果需要保留按钮)
- const handleTemplateButton = () => {
- // 可以留空或给提示
- ElMessage.info('请直接点击上方的模板图片')
- }
- // 图片预览相关
- const previewVisible = ref(false)
- const previewImageUrl = ref('')
- // 处理图片放大
- const handleImageZoom = (url) => {
- previewImageUrl.value = url
- previewVisible.value = true
- }
- // 下载模板图片
- const downloadTemplateImage = async (imageUrl) => {
- try {
- // 创建一个临时的a标签用于下载
- const link = document.createElement('a')
- link.href = imageUrl
- // 设置文件名,从URL中提取或使用默认名
- const fileName = imageUrl.split('/').pop() || `template_${Date.now()}.jpg`
- link.download = fileName
- // 触发下载
- document.body.appendChild(link)
- link.click()
- // 清理
- document.body.removeChild(link)
- ElMessage.success('图片下载成功')
- } catch (error) {
- console.error('图片下载失败:', error)
- ElMessage.error('图片下载失败,请稍后重试')
- }
- }
- // 截断文本函数
- const truncateText = (text, length) => {
- if (!text) return ''
- if (text.length <= length) return text
- return text.substring(0, length) + '...'
- }
- // 清空输入框内容
- const clearInput = () => {
- editFormData.chinese_description = ''
- ElMessage.success('已清空输入框内容')
- }
- // 内容优化(使用轮询机制)
- const optimizeContent = async () => {
- try {
- if (!editFormData.chinese_description) {
- ElMessage.warning('请输入要优化的内容')
- return
- }
-
- // 设置加载状态
- loadingStatus.value = true
-
- // 重置状态
- pollStatus.value = 'optimizing'
- pollCount.value = 0
-
- // 第一步:调用生成接口触发生成任务
- const generateResponse = await GetTxtToTxt({
- status_val: '文生文',
- prompt: editFormData.chinese_description,
- model: 'gemini-3-pro-preview',
- id: editFormData.id,
- path: editFormData.original_image_url,
- })
-
- if (generateResponse.code === 0) {
- ElMessage.success('内容优化任务已开始,请稍候...')
-
- // 清除之前的定时器
- if (pollInterval.value) {
- clearInterval(pollInterval.value)
- }
-
- // 开始轮询查询结果
- pollInterval.value = setInterval(async () => {
- pollCount.value++
-
- try {
- // 调用查询接口
- const checkResponse = await GetProductFind({ id: editFormData.id })
-
- if (checkResponse.code === 0 && checkResponse.data) {
- // 检查是否有content字段
- if (checkResponse.data.content) {
- // 停止轮询
- clearInterval(pollInterval.value)
- pollInterval.value = null
- pollStatus.value = 'success'
- loadingStatus.value = false
-
- // 更新内容到输入框
- editFormData.chinese_description = checkResponse.data.content
- ElMessage.success(`内容优化成功!耗时约${pollCount.value * 10}秒`)
- return
- }
- }
-
- // 如果轮询超过30次(5分钟),停止轮询
- if (pollCount.value >= 30) {
- clearInterval(pollInterval.value)
- pollInterval.value = null
- pollStatus.value = 'error'
- loadingStatus.value = false
- ElMessage.warning('优化超时,请稍后手动检查结果')
- }
-
- } catch (pollError) {
- console.error('优化轮询查询失败:', pollError)
- // 轮询失败继续尝试
- }
- }, 5000) // 每5秒轮询一次
-
- } else {
- pollStatus.value = 'error'
- loadingStatus.value = false
- ElMessage.error('优化任务启动失败: ' + (generateResponse.msg || '未知错误'))
- }
-
- } catch (generateError) {
- pollStatus.value = 'error'
- loadingStatus.value = false
- console.error('内容优化失败:', generateError)
- ElMessage.error('内容优化失败: ' + (generateError.message || '未知错误'))
- }
- }
- // 在script中定义
- const pollStatus = ref(null) // 轮询状态:'polling', 'success', 'error'
- const pollCount = ref(0) // 轮询次数
- const pollInterval = ref(null) // 轮询定时器
- const task_id = ref('')
- // 生成图片(简化版,只做轮询)
- const generateImage = async () => {
- try {
- if (!editFormData.template_id) {
- ElMessage.warning('请先选择模版')
- return
- }
- if (!editFormData.chinese_description) {
- ElMessage.warning('请输入描述内容')
- return
- }
- // 设置加载状态
- loadingStatus.value = true
-
- // 重置状态
- pollStatus.value = 'polling'
- pollCount.value = 0
- console.log(editFormData.template_id)
- // 第一步:调用生成接口触发生成任务
- const generateResponse = await GetTxtToTxt({
- status_val: '文生图',
- prompt: editFormData.chinese_description,
- model: 'gemini-3-pro-image-preview',
- id: editFormData.id,
- size: selectedSize.value,
- template_id:editFormData.template_id,
- })
-
- if (generateResponse.code === 0) {
- ElMessage.success('图片生成任务已开始,请稍候...')
- task_id.value = generateResponse.data.task_id
-
- // 稍后在轮询中使用GetImageStatus接口
-
- // 清除之前的定时器
- if (pollInterval.value) {
- clearInterval(pollInterval.value)
- }
-
- // 开始轮询查询结果
- pollInterval.value = setInterval(async () => {
- pollCount.value++
-
- try {
- // 调用GetImageStatus接口查询生成状态
- const statusResponse = await GetImageStatus({ task_id: task_id.value })
-
- if (statusResponse.code === 0 && statusResponse.data) {
- // 如果获取到数据且有图片URL
- if (statusResponse.data.image_url) {
- // 停止轮询
- clearInterval(pollInterval.value)
- pollInterval.value = null
- pollStatus.value = 'success'
- loadingStatus.value = false
-
- // 更新新图URL
- const imageUrl = statusResponse.data.image_url
- editFormData.new_image_url = imageUrl
- editFormData.img_name = `生成图片_${new Date().getTime()}.jpg`
-
- // 更新历史记录
- const newImageItem = {
- url: imageUrl,
- product_content: editFormData.chinese_description || '',
- template_id: editFormData.template_id,
- createTime: statusResponse.data.completed_at || new Date().toISOString()
- }
-
- // 添加到newImages数组(走马灯轮播)
- newImages.value.unshift(newImageItem)
-
- // 处理模板分类树数据
- processTemplateTreeData([newImageItem])
-
- ElMessage.success(`图片生成成功!耗时约${pollCount.value * 5}秒`)
- } else if (statusResponse.data.error) {
- // 如果返回错误
- clearInterval(pollInterval.value)
- pollInterval.value = null
- pollStatus.value = 'error'
- loadingStatus.value = false
- ElMessage.error('图片生成失败: ' + statusResponse.data.error)
- }
- } else {
- // 如果接口返回错误
- clearInterval(pollInterval.value)
- pollInterval.value = null
- pollStatus.value = 'error'
- loadingStatus.value = false
- ElMessage.error('查询生成状态失败: ' + (statusResponse.msg || '未知错误'))
- }
-
- // 如果轮询超过30次(2.5分钟),停止轮询
- if (pollCount.value >= 30) {
- clearInterval(pollInterval.value)
- pollInterval.value = null
- pollStatus.value = 'error'
- loadingStatus.value = false
- ElMessage.warning('生成超时,请稍后手动检查结果')
- }
-
- } catch (pollError) {
- console.error('轮询查询失败:', pollError)
- // 轮询失败继续尝试
- }
- }, 5000) // 每5秒轮询一次
-
- } else {
- pollStatus.value = 'error'
- loadingStatus.value = false
- ElMessage.error('生成任务启动失败: ' + (generateResponse.msg || '未知错误'))
- }
-
- } catch (generateError) {
- pollStatus.value = 'error'
- loadingStatus.value = false
- console.error('生成图片失败:', generateError)
- ElMessage.error('生成图片失败: ' + (generateError.message || '未知错误'))
- }
- }
- // 尺寸相关的数据
- const selectedSize = ref('1:1') // 默认选择1:1
- const customWidth = ref('')
- const customHeight = ref('')
- const sizePresets = {
- '1:1': { width: 1024, height: 1024 },
- '4:3': { width: 1024, height: 768 },
- '3:2': { width: 1024, height: 683 },
- '2:3': { width: 683, height: 1024 },
- '9:16': { width: 675, height: 1200 },
- '16:9': { width: 1200, height: 675 },
- '21:9': { width: 1200, height: 514 },
- '3:4': { width: 768, height: 1024 }
- }
- // 获取尺寸信息
- const getSizeInfo = (size) => {
- if (size === 'custom') return '自定义尺寸'
- const preset = sizePresets[size]
- return `${preset.width}×${preset.height}`
- }
- // 尺寸变化处理
- const handleSizeChange = (value) => {
- const selectedValue = value || selectedSize.value
- if (selectedValue !== 'custom') {
- // 如果是预设尺寸,可以在这里执行相关操作
- console.log('选择了尺寸:', selectedValue, sizePresets[selectedValue])
- // 可以更新生成图片的参数
- }
- }
- // 验证自定义尺寸
- const validateCustomSize = () => {
- // 确保输入的是数字
- if (customWidth.value && !/^\d+$/.test(customWidth.value)) {
- customWidth.value = customWidth.value.replace(/\D/g, '')
- }
- if (customHeight.value && !/^\d+$/.test(customHeight.value)) {
- customHeight.value = customHeight.value.replace(/\D/g, '')
- }
-
- // 限制最大最小值
- const maxSize = 4096
- const minSize = 64
-
- if (customWidth.value) {
- let width = parseInt(customWidth.value)
- if (width > maxSize) customWidth.value = maxSize.toString()
- if (width < minSize) customWidth.value = minSize.toString()
- }
-
- if (customHeight.value) {
- let height = parseInt(customHeight.value)
- if (height > maxSize) customHeight.value = maxSize.toString()
- if (height < minSize) customHeight.value = minSize.toString()
- }
- }
- // 获取当前选择的尺寸
- const getCurrentSize = () => {
- if (selectedSize.value === 'custom') {
- return {
- type: 'custom',
- width: customWidth.value ? parseInt(customWidth.value) : 1024,
- height: customHeight.value ? parseInt(customHeight.value) : 1024
- }
- } else {
- return {
- type: selectedSize.value,
- ...sizePresets[selectedSize.value]
- }
- }
- }
- // 可选:添加常用尺寸按钮
- const quickSizes = [
- { label: '512×512', width: 512, height: 512 },
- { label: '768×768', width: 768, height: 768 },
- { label: '1024×1024', width: 1024, height: 1024 },
- { label: '1920×1080', width: 1920, height: 1080 }
- ]
- const selectQuickSize = (size) => {
- selectedSize.value = 'custom'
- customWidth.value = size.width.toString()
- customHeight.value = size.height.toString()
- }
- const downloadImage = async (type) => {
- console.log('开始下载...')
-
- let imagePath = ''
- let originalFileName = ''
-
- if (type === 'original') {
- imagePath = editFormData.original_image_url
- originalFileName = editFormData.original_name || ''
-
- if (!imagePath) {
- ElMessage.warning('原图不存在')
- return
- }
-
- } else if (type === 'new') {
- imagePath = editFormData.new_image_url
- originalFileName = editFormData.img_name || ''
-
- if (!imagePath) {
- ElMessage.warning('新图不存在')
- return
- }
- } else {
- console.error('未知的下载类型:', type)
- ElMessage.error('未知的下载类型')
- return
- }
-
- console.log(`下载${type}图信息:`, { imagePath, originalFileName })
-
- // 获取完整URL
- const fullUrl = formatImageUrl(imagePath)
- console.log('完整下载URL:', fullUrl)
-
- // 生成安全的文件名
- const safeFileName = generateSafeFilename(originalFileName, imagePath, type)
- console.log('安全文件名:', safeFileName)
-
- try {
- // 调用下载
- await downloadWithBlob(fullUrl, safeFileName)
- console.log('下载函数调用成功')
- } catch (error) {
- console.error('下载函数调用失败:', error)
- ElMessage.error('下载过程中发生错误')
- }
- }
- // 生成安全的文件名(处理中文和特殊字符)
- const generateSafeFilename = (originalName, imagePath, type) => {
- // 如果有原始文件名,使用它(但需要处理中文)
- if (originalName && originalName.trim()) {
- // 如果文件名包含中文,转换为拼音或使用安全字符
- if (/[\u4e00-\u9fa5]/.test(originalName)) {
- // 方法1:直接使用中文(现代浏览器支持)
- // 方法2:转换为拼音(需要拼音库)或使用时间戳
- return encodeURIComponent(originalName) // 对中文进行编码
- }
- return originalName
- }
-
- // 从路径提取文件名
- const pathParts = imagePath.split('/')
- const lastPart = pathParts[pathParts.length - 1]
-
- if (lastPart && lastPart.includes('.')) {
- return lastPart
- }
-
- // 默认使用时间戳
- const timestamp = Date.now()
- const extension = getFileExtension(imagePath)
- return `${type}_${timestamp}.${extension}`
- }
- // 获取文件扩展名
- const getFileExtension = (filepath) => {
- if (!filepath) return 'jpg'
- const match = filepath.match(/\.([a-zA-Z0-9]+)(?:\?.*)?$/)
- return match ? match[1].toLowerCase() : 'jpg'
- }
- // 直接下载函数(备用方案)
- const directDownload = (url, filename) => {
- try {
- const link = document.createElement('a')
- link.href = url
- link.download = filename
- link.style.display = 'none'
- document.body.appendChild(link)
- link.click()
- document.body.removeChild(link)
- ElMessage.success('下载成功!')
- } catch (error) {
- console.error('直接下载失败:', error)
- throw error
- }
- }
- // 添加时间戳避免缓存
- const addTimestamp = (url) => {
- if (!url) return url
- const separator = url.includes('?') ? '&' : '?'
- return `${url}${separator}t=${Date.now()}`
- }
- // 使用Blob下载(推荐,支持中文文件名)
- const downloadWithBlob = async (url, filename) => {
- try {
- console.log('开始Blob下载:', { url, filename })
-
- // 添加时间戳避免缓存
- const urlWithTimestamp = addTimestamp(url)
-
- const response = await fetch(urlWithTimestamp, {
- method: 'GET',
- headers: {
- 'Cache-Control': 'no-cache'
- }
- })
-
- if (!response.ok) {
- throw new Error(`HTTP ${response.status}: ${response.statusText}`)
- }
-
- const blob = await response.blob()
-
- // 检查blob类型
- if (blob.size === 0) {
- throw new Error('文件内容为空')
- }
-
- // 创建blob URL
- const blobUrl = window.URL.createObjectURL(blob)
-
- // 创建下载链接
- const link = document.createElement('a')
- link.href = blobUrl
-
- // 处理文件名:现代浏览器支持中文文件名
- // 如果需要更兼容,可以编码文件名
- link.download = filename
- link.style.display = 'none'
-
- document.body.appendChild(link)
- link.click()
-
- // 清理
- setTimeout(() => {
- window.URL.revokeObjectURL(blobUrl)
- document.body.removeChild(link)
- }, 100)
-
- ElMessage.success('下载成功!')
-
- } catch (error) {
- console.error('Blob下载失败:', error)
-
- // 备用方案1:直接下载
- try {
- console.log('尝试直接下载...')
- directDownload(url, filename)
- } catch (directError) {
- console.error('直接下载失败:', directError)
-
- // 备用方案2:使用更简单的下载方法
- try {
- console.log('尝试使用简单下载方法...')
- const link = document.createElement('a')
- link.href = url
- link.download = filename
- link.style.display = 'none'
- document.body.appendChild(link)
- link.click()
- document.body.removeChild(link)
- ElMessage.success('下载成功!')
- } catch (simpleError) {
- console.error('所有方法都失败:', simpleError)
- ElMessage.error('下载失败,请检查网络或联系管理员')
- }
- }
- }
- }
- const searchKeyword = ref('')
- const handleSearch = async () => {
- try {
- const response = await product_template({ search: searchKeyword.value })
- if (response.code === 0 && response.data) {
- templateList.value = response.data.map(item => ({
- id: item.id,
- template_name: item.template_name || '',
- thumbnail_image: item.thumbnail_image,
- chinese_description: item.chinese_description || '',
- english_description: item.english_description || ''
- }))
-
- // 默认选中第一个模板
- if (templateList.value.length > 0) {
- selectTemplate(templateList.value[0])
- }
- }
- } catch (error) {
- console.error('获取模板失败:', error)
- templateList.value = []
- }
- }
- // 弹窗显示控制
- const AdddialogVisible = ref(false)
- const productFormRef = ref()
- const submitLoading = ref(false)
- // 新增产品:选中的图片文件(点确定时随 productAdd 一起提交,不单独调 ImgUpload)
- const productImageFile = ref(null)
- // 表单数据
- const productForm = reactive({
- product_name: '',
- product_code: '',
- create_name: '',
- merchant_id: '',
- product_img: '' // 预览用:blob URL 或空
- })
- const onADD = async() => {
- if (!nodeid.value) {
- ElMessage.error('请先选择商户')
- return
- }
- if (productForm.product_img && productForm.product_img.startsWith('blob:')) {
- URL.revokeObjectURL(productForm.product_img)
- }
- productForm.product_img = ''
- productImageFile.value = null
- AdddialogVisible.value = true
- const res = await getMerchantId({
- merchant_code: nodeid.value,
- })
- if (res.code === 0) {
- productForm.merchant_id = res.data
- }
- }
- // 将 File 转为 data:image/xxx;base64,... 字符串
- const fileToDataUrl = (file) => {
- return new Promise((resolve, reject) => {
- const reader = new FileReader()
- reader.onload = () => resolve(reader.result)
- reader.onerror = reject
- reader.readAsDataURL(file)
- })
- }
- const handleSubmit = async()=>{
- if (!productImageFile.value) {
- ElMessage.warning('请先选择产品图片')
- return
- }
- productForm.create_name = userStore.userInfo.nickName
- try {
- submitLoading.value = true
- const productImgBase64 = await fileToDataUrl(productImageFile.value)
- const payload = {
- product_name: productForm.product_name,
- product_code: productForm.product_code,
- merchant_id: productForm.merchant_id,
- create_name: productForm.create_name,
- product_img: productImgBase64
- }
- const response = await productAdd(payload)
- if (response.code === 0) {
- ElMessage.success('新增成功')
- await refreshProductList()
- handleClose()
- } else {
- ElMessage.error(response.message || response.msg || '新增失败')
- }
- } catch (error) {
- console.error('新增失败:', error)
- ElMessage.error('新增失败,请联系管理员')
- } finally {
- submitLoading.value = false
- }
- }
- // 新增产品弹窗:商户显示 merchant_name 字段
- const addDialogMerchantName = computed(() => {
- const item = treeData.value.find(t => t.value === nodeid.value)
- return item?.originalData?.merchant_name ?? item?.label ?? ''
- })
- // 新增产品弹窗:预览图地址(blob 或后端返回的 URL)
- const addDialogPreviewSrc = computed(() => {
- const p = productForm.product_img
- if (!p) return ''
- if (p.startsWith('blob:')) return p
- return formatImageUrl(p)
- })
- // 新增产品弹窗:已选图片大小显示(如 "856 KB"、"0.8 MB")
- const addDialogImageSizeText = computed(() => {
- const f = productImageFile.value
- if (!f || !f.size) return ''
- const bytes = f.size
- if (bytes < 1024) return `${bytes} B`
- if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)} KB`
- return `${(bytes / 1024 / 1024).toFixed(2)} MB`
- })
- // 新增产品:图片大小限制 1MB
- const MAX_IMAGE_SIZE_MB = 1
- // 新增产品:选择图片仅做本地预览,不调上传接口;点确定时随 productAdd 一起提交
- const handleAddDialogSelectImage = (file) => {
- const isImage = file.type.startsWith('image/')
- const sizeMB = file.size / 1024 / 1024
- const isLt1M = sizeMB <= MAX_IMAGE_SIZE_MB
- if (!isImage) {
- ElMessage.error('只能上传图片文件')
- return false
- }
- if (!isLt1M) {
- ElMessage.error(`图片大小不能超过 ${MAX_IMAGE_SIZE_MB}MB,当前为 ${sizeMB.toFixed(2)}MB`)
- return false
- }
- if (productForm.product_img && productForm.product_img.startsWith('blob:')) {
- URL.revokeObjectURL(productForm.product_img)
- }
- productImageFile.value = file
- productForm.product_img = URL.createObjectURL(file)
- return false // 阻止 el-upload 默认上传
- }
- // 打开弹窗方法(外部调用)
- const openDialog = () => {
- // 清空表单
- Object.keys(productForm).forEach(key => {
- productForm[key] = ''
- })
-
- dialogVisible.value = true
-
- // 如果有默认值可以在这里设置
- // productForm.create_name = '默认创建人'
- }
- // 关闭新增产品弹窗并重置表单
- const handleClose = () => {
- if (productForm.product_img && productForm.product_img.startsWith('blob:')) {
- URL.revokeObjectURL(productForm.product_img)
- }
- productForm.product_img = ''
- productForm.product_name = ''
- productForm.product_code = ''
- productImageFile.value = null
- submitLoading.value = false
- productFormRef.value?.resetFields()
- AdddialogVisible.value = false
- }
- // 删除图片(仅清空预览与文件,不调接口)
- const handleRemoveImage = () => {
- if (productForm.product_img && productForm.product_img.startsWith('blob:')) {
- URL.revokeObjectURL(productForm.product_img)
- }
- productForm.product_img = ''
- productImageFile.value = null
- }
- // 暴露方法给父组件
- defineExpose({
- openDialog
- })
- // onMounted(() => {
- // getTableData()
- // })
- </script>
- <style scoped>
- /* 保持原有通用样式 */
- :deep(.el-table td .cell) {
- line-height: 22px !important;
- }
- /* :deep(.el-dialog__body) {
- padding: 10px 20px;
- } */
- .gva-pagination {
- margin-top: 10px;
- text-align: right;
- }
- .img-placeholder-mini {
- width: 100%;
- height: 100%;
- min-height: 70px;
- background: #f5f7fa;
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23c0c4cc'%3E%3Cpath d='M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z'/%3E%3C/svg%3E");
- background-repeat: no-repeat;
- background-position: center;
- background-size: 24px;
- }
- /* 新增产品弹窗 - 上传与预览 */
- .add-dialog-upload-wrap {
- width: 100%;
- }
- .add-dialog-preview-box {
- border: 1px solid #e4e7ed;
- border-radius: 8px;
- overflow: hidden;
- background: #fafafa;
- }
- .add-dialog-image-size {
- padding: 6px 12px;
- font-size: 12px;
- color: #606266;
- background: #f5f7fa;
- border-top: 1px solid #e4e7ed;
- }
- .add-dialog-preview-img {
- width: 100%;
- height: 200px;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #f5f7fa;
- }
- .add-dialog-preview-img-inner {
- max-width: 100%;
- max-height: 200px;
- width: auto;
- height: auto;
- object-fit: contain;
- display: block;
- }
- .add-dialog-preview-actions {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 12px;
- padding: 12px;
- border-top: 1px solid #e4e7ed;
- background: #fff;
- }
- .add-dialog-upload-area {
- width: 100%;
- }
- .add-dialog-upload-area :deep(.el-upload) {
- width: 100%;
- display: block;
- }
- .add-dialog-upload-inner {
- width: 100%;
- height: 160px;
- border: 2px dashed #dcdfe6;
- border-radius: 8px;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- gap: 8px;
- background: #fafafa;
- color: #606266;
- transition: border-color 0.2s, background 0.2s;
- }
- .add-dialog-upload-inner:hover {
- border-color: #409eff;
- background: #ecf5ff;
- color: #409eff;
- }
- .add-dialog-upload-icon {
- font-size: 36px;
- color: #c0c4cc;
- }
- .add-dialog-upload-inner:hover .add-dialog-upload-icon {
- color: #409eff;
- }
- .add-dialog-upload-text {
- font-size: 14px;
- font-weight: 500;
- }
- .add-dialog-upload-tip {
- font-size: 12px;
- color: #909399;
- }
- :deep(.el-table__body tr.current-row) > td {
- background: #ff80ff !important;
- }
- /* 表格操作按钮样式 */
- .table-operations {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 4px;
- }
- .table-operations .op-btn {
- display: inline-flex;
- align-items: center;
- gap: 4px;
- padding: 4px 8px;
- font-size: 12px;
- border-radius: 4px;
- transition: all 0.2s;
- }
- .table-operations .op-btn-design:hover {
- color: #409eff;
- background: #ecf5ff;
- }
- .table-operations .op-btn-delete:hover {
- color: #f56c6c;
- background: #fef0f0;
- }
- .table-operations .op-divider {
- color: #dcdfe6;
- font-size: 12px;
- padding: 0 2px;
- user-select: none;
- }
- .JKWTree-tree {
- background-color: #fff;
- padding: 10px;
- border-right: 1px solid #e4e7ed;
- }
- .JKWTree-tree h3 {
- font-size: 15px;
- font-weight: 700;
- margin: 10px 0;
- padding-bottom: 10px;
- border-bottom: 1px solid #e4e7ed;
- }
- /* 商户树:选中节点文字变红 */
- .JKWTree-tree :deep(.el-tree-node.is-current > .el-tree-node__content) {
- color: #f56c6c !important;
- font-weight: 600;
- }
-
- /* 编辑弹窗三列布局:自适应,小屏横向滚动防跑偏 */
- .image-edit-container {
- display: flex;
- height: 94vh;
- padding-top: 20px;
- gap: 0;
- width: 100%;
- overflow-x: auto;
- overflow-y: hidden;
- box-sizing: border-box;
- }
- .left-column {
- flex: 0.7;
- min-width: 280px;
- max-width: 560px;
- display: flex;
- flex-direction: column;
- gap: 15px;
- padding: 15px;
- overflow-y: auto;
- overflow-x: hidden;
- flex-shrink: 1;
- }
- .middle-column {
- width: 430px;
- min-width: 380px;
- flex-shrink: 0;
- border-left: 1px solid #e4e7ed;
- border-right: 1px solid #e4e7ed;
- padding: 15px 12px;
- position: relative;
- box-sizing: border-box;
- background: #fff;
- overflow-y: auto;
- overflow-x: hidden;
- }
- .right-column {
- flex: 1;
- min-width: 280px;
- min-height: 0;
- flex-shrink: 1;
- padding: 0 12px 0 15px;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- }
-
- .image-comparison-section {
- flex: none;
- display: flex;
- flex-direction: row;
- align-items: flex-start;
- gap: 16px;
- min-height: 200px;
- }
- .upload-image-box {
- width: 200px;
- height: 200px;
- max-width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #f9f9f9;
- border-radius: 4px;
- overflow: hidden;
- border: 1px solid #e4e7ed;
- }
- .image-placeholder-small {
- width: 100px;
- height: 100px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background-color: #f9f9f9;
- border-radius: 4px;
- border: 1px solid #e4e7ed;
- }
- .case-links-column {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: space-between;
- flex-shrink: 0;
- height: 200px;
- }
- .case-link-btn {
- padding: 0 !important;
- font-size: 14px !important;
- font-weight: normal !important;
- color: #409eff !important;
- }
-
- .image-item {
- flex: 1;
- display: flex;
- flex-direction: column;
- min-height: 0; /* 防止溢出 */
- }
-
- .image-title {
- font-weight: bold;
- margin-bottom: 10px;
- color: #409eff;
- }
-
- .image-preview {
- flex: 1;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- min-height: 0; /* 防止溢出 */
- }
-
- .image-preview img {
- width: 100%;
- height: 160px; /* 固定高度,确保不占满屏幕 */
- object-fit: contain;
- background: #f5f7fa;
- }
-
- .image-placeholder {
- height: 160px;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- background: #f5f7fa;
- color: #909399;
- }
-
- .image-info {
- padding: 8px;
- background: #f5f7fa;
- font-size: 12px;
- color: #606266;
- border-top: 1px solid #dcdfe6;
- }
-
- .image-actions {
- display: flex;
- justify-content: center;
- padding: 10px 0;
- }
-
- .edit-section {
- overflow: hidden; /* 防止溢出 */
- }
-
- .edit-form {
- height: 100%;
- }
-
- .edit-form :deep(.el-form) {
- height: 100%;
- }
-
- .edit-form :deep(.el-form-item) {
- height: 100%;
- margin-bottom: 0;
- }
-
- .edit-form :deep(.el-textarea__inner) {
- height: 100% !important;
- resize: none;
- }
-
- :deep(.el-textarea__inner) {
- resize: none !important;
- }
-
- .right-column {
- display: flex;
- flex-direction: column;
- min-height: 0; /* 防止溢出 */
- }
-
- .right-template {
- flex: 1;
- display: flex;
- flex-direction: column;
- min-height: 0; /* 防止溢出 */
- }
-
- .template-header {
- margin-bottom: 15px;
- padding-bottom: 10px;
- border-bottom: 1px solid #e4e7ed;
- }
-
- .template-header h4 {
- margin: 0;
- font-size: 16px;
- }
-
- .template-list-container {
- flex: 1;
- min-height: 0;
- display: flex;
- flex-direction: column;
- }
-
- .template-list {
- flex: 1;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- gap: 10px;
- overflow-y: auto;
- min-height: 0; /* 防止溢出 */
- padding: 5px;
- }
-
- .template-item {
- display: flex;
- flex-direction: column;
- width: calc(33.33% - 7px);
- min-width: 100px; /* 笔记本小屏时不被压得过窄 */
- padding: 10px;
- border: 2px solid #e4e7ed;
- border-radius: 6px;
- cursor: pointer;
- transition: all 0.3s;
- background: white;
- flex-shrink: 0;
- box-sizing: border-box;
- }
-
- .template-item:hover {
- border-color: #409eff;
- background: #f5faff;
- }
-
- .template-item.active {
- border-color: #409eff;
- background: #ecf5ff;
- border-width: 2px;
- }
-
- .template-thumbnail {
- position: relative;
- width: 100%;
- height: 120px;
- margin-bottom: 8px;
- border-radius: 4px;
- overflow: hidden;
- background: #f5f7fa;
- }
-
- .template-thumbnail img {
- width: 100%;
- height: 100%;
- object-fit: contain;
- }
-
- .image-container {
- position: relative;
- width: 100%;
- height: 100%;
- cursor: pointer;
- }
-
- .zoom-icon {
- position: absolute;
- bottom: 8px;
- right: 8px;
- width: 28px;
- height: 28px;
- background: rgba(0, 0, 0, 0.6);
- color: white;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: zoom-in;
- opacity: 0;
- transition: opacity 0.3s ease;
- }
-
- .image-container:hover .zoom-icon {
- opacity: 1;
- }
-
- /* 商品信息项样式 */
- .product-info-item {
- margin-bottom: 10px;
- display: flex;
- align-items: center;
- }
-
- .product-info-label {
- font-size: 14px;
- color: #000000;
- font-weight: bold;
- width: 90px;
- text-align: left;
- }
-
- .product-info-value {
- font-size: 14px;
- color: #000000;
- flex: 1;
- text-align: left;
- word-break: break-all;
- }
-
- .template-id {
- position: absolute;
- top: 4px;
- left: 4px;
- background: rgba(0, 0, 0, 0.7);
- color: white;
- padding: 2px 6px;
- border-radius: 3px;
- font-size: 11px;
- font-weight: bold;
- }
-
- .image-preview .image-download-btn {
- opacity: 0;
- }
-
- .image-preview:hover .image-download-btn,
- .image-preview > div:hover .image-download-btn,
- .image-preview .image-download-btn:hover {
- opacity: 1 !important;
- }
-
- .image-download-btn:hover {
- background: rgba(0, 0, 0, 0.8) !important;
- }
-
- /* 修改单选框为方形 */
- .el-radio__input.is-border {
- border-radius: 2px !important;
- }
-
- .el-radio__input.is-border .el-radio__inner {
- border-radius: 2px !important;
- }
-
- .template-name {
- font-size: 13px;
- font-weight: 600;
- color: #303133;
- margin-bottom: 4px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .template-desc {
- flex: 1;
- font-size: 12px;
- color: #606266;
- line-height: 1.4;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
-
- .empty-templates {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- color: #909399;
- }
-
- .empty-templates .el-icon {
- margin-bottom: 10px;
- }
-
- .empty-search {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding: 50px 20px;
- color: #909399;
- }
-
- .empty-search .el-icon {
- margin-bottom: 15px;
- color: #c0c4cc;
- }
-
- .empty-search p {
- margin: 0;
- font-size: 14px;
- }
- </style>
|