123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454 |
- <template>
- <div>
- <el-card>
- <div style="padding-left: 5px">
- <!-- 广告活动 -->
- <el-form
- :label-position="labelPosition"
- ref="campaignFormRef"
- :model="campaignRuleForm"
- :rules="campaignRules"
- label-width="120px"
- class="demo-ruleForm"
- :size="formSize"
- status-icon>
- <el-card shadow="never" body-style="padding-bottom: 0 !important;" v-loading="campaignLoading">
- <div style="font-size: 24px; font-weight: bold">广告活动</div>
- <hr />
- <br />
- <el-form-item label="广告活动名称" prop="name" style="width: 350px">
- <el-input v-model="campaignRuleForm.name" />
- </el-form-item>
- <el-form-item label="广告组合" prop="adMix">
- <el-select v-model="campaignRuleForm.adMix" placeholder="请选择">
- <el-option label="Zone one" value="shanghai" />
- <el-option label="Zone two" value="beijing" />
- </el-select>
- </el-form-item>
- <el-form-item prop="startDate" label="开始日期" style="width: 350px">
- <el-date-picker
- v-model="campaignRuleForm.startDate"
- type="date"
- format="YYYY-MM-DD"
- value-format="YYYY-MM-DD"
- label="开始日期"
- placeholder="开始日期"
- style="width: 100%" />
- </el-form-item>
- <el-form-item prop="date2" label="结束日期" style="width: 350px">
- <el-date-picker
- v-model="campaignRuleForm.date2"
- type="date"
- format="YYYY-MM-DD"
- value-format="YYYY-MM-DD"
- label="结束日期"
- placeholder="结束日期"
- style="width: 100%" />
- </el-form-item>
- <el-form-item prop="budget" label="每日预算" style="width: 300px">
- <el-input
- v-model="campaignRuleForm.budget"
- maxlength="7"
- oninput="value=value.indexOf('.') > -1?value.slice(0, value.indexOf('.') + 3):value">
- <template #prepend>$</template>
- </el-input>
- </el-form-item>
- <el-form-item label="投放类型" prop="type" class="column-item">
- <el-radio-group v-model="campaignRuleForm.type" @click="changeType">
- <div>
- <el-radio label="AUTO">自动</el-radio>
- <div class="radio-description">定向与您推广商品相似的关键词和商品</div>
- </div>
- <div>
- <el-radio label="MANUAL">手动</el-radio>
- <div class="radio-description">选择关键词或商品以定向购物者搜索并设置自定义出价</div>
- </div>
- </el-radio-group>
- </el-form-item>
- <el-form-item label="竞价策略" prop="bidStrategy" class="column-item column-margin-bottom">
- <el-radio-group v-model="campaignRuleForm.bidStrategy">
- <div>
- <el-radio label="LEGACY_FOR_SALES" border>
- 动态竞价-仅降低
- <div class="radio-description-2">当您的广告不太可能带来销售时,我们将实时降低您的竞价</div>
- </el-radio>
- </div>
- <div>
- <el-radio label="AUTO_FOR_SALES" border>
- 动态竞价-提高和降低
- <div class="radio-description-2">
- 当您的广告很有可能带来销售时,我们将实时提高您的竞价(最高可达 100%),并在您的广告不太可能带来销售时降低您的竞价
- </div>
- </el-radio>
- </div>
- <el-radio label="MANUAL" border>
- 固定竞价
- <div class="radio-description-2">我们将使用您的确切竞价和您设置的任何手动调整,而不会根据售出可能性对您的竞价进行更改</div>
- </el-radio>
- </el-radio-group>
- </el-form-item>
- <el-form-item label="按展示位置调整出价" prop="placeBid">
- <p style="color: #8e9196">除了出价策略外,您还可以将出价提高多达900%</p>
- <div class="gap-items">
- <div class="gap-item">搜索结果顶部(首页)</div>
- <el-input v-model="campaignRuleForm.placeBid" class="gap-item">
- <template #append>%</template>
- </el-input>
- </div>
- <div class="gap-items">
- <div class="gap-item">商品首页</div>
- <el-input v-model="campaignRuleForm.firstPage" class="gap-item">
- <template #append>%</template>
- </el-input>
- </div>
- <div class="gap-items" style="margin-bottom: 0">
- <div class="gap-item">搜索结果的其余位置</div>
- <el-input v-model="campaignRuleForm.other" class="gap-item">
- <template #append>%</template>
- </el-input>
- </div>
- </el-form-item>
- <el-form-item style="margin-left: 48%">
- <el-button type="primary" plain @click="submitCampaignForm(campaignFormRef)">保存</el-button>
- </el-form-item>
- </el-card>
- <br />
- <!-- 广告组 -->
- <el-card shadow="never" body-style="padding-bottom: 0 !important;" v-loading="adGroupLoading">
- <div style="font-size: 20px; font-weight: bold">广告组</div>
- <hr />
- <br />
- <el-form ref="adGroupRuleFormRef" :model="adGroupRuleForm" :rules="adGroupRules">
- <el-form-item required label="广告组名称" prop="adGroupName" style="width: 350px; margin-top: 20px">
- <el-input v-model="adGroupRuleForm.adGroupName" />
- </el-form-item>
- <el-form-item required label="默认竞价" prop="defaultBidInp">
- <el-input v-model="adGroupRuleForm.defaultBidInp" minlength="3" maxlength="4" style="width: 200px">
- <template #prepend>$</template>
- </el-input>
- </el-form-item>
- <el-form-item style="margin-left: 48%">
- <el-button type="primary" plain @click="submitGroupsForm(adGroupRuleFormRef)" :disabled="adGroupSave">保存</el-button>
- </el-form-item>
- </el-form>
- </el-card>
- <!-- 商品表格 -->
- <div style="margin-top: 20px; font-size: 24px; font-weight: bold">商品</div>
- <hr />
- <br />
- <el-form-item prop="commodity" style="width: 100%" v-loading="commodityLoading">
- <div style="width: 100%; height: 620px; display: flex; border: 1px solid #e5e7ec; border-radius: 6px">
- <div style="width: 50%; border-right: 1px solid #e5e7ec">
- <el-tabs v-model="activeName" class="demo-tabs">
- <el-tab-pane label="搜索" name="first">
- <div style="margin-bottom: 10px">
- <el-input v-model="searchInp" placeholder="Please input" class="input-with-select" @change="inpChange" clearable>
- <template #prepend>
- <el-select v-model="select" style="width: 100px" @change="selChange">
- <el-option label="名称" value="name" />
- <el-option label="ASIN" value="asin" />
- <el-option label="SKU" value="sku" />
- </el-select>
- </template>
- <template #append>
- <el-select v-model="select2" style="width: 100px">
- <el-option label="最新优先" value="latest" />
- <el-option label="最早优先" value="earliest" />
- <el-option label="优选广告" value="optimal" />
- </el-select>
- </template>
- </el-input>
- </div>
- <el-table
- height="490"
- style="width: 100%"
- v-loading="loading"
- :data="fullTableData"
- :header-cell-style="headerCellStyle"
- @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="50" />
- <el-table-column prop="asin" label="商品">
- <template #default="scope">
- <div style="display: flex; align-items: center">
- <div style="margin-right: 8px; line-height: normal">
- <el-image class="img-box" :src="scope.row.image_link" />
- </div>
- <div>
- <el-tooltip class="box-item" effect="dark" :content="scope.row.title" placement="top">
- <div class="single-line">{{ scope.row.title ? scope.row.title : '--' }}</div>
- </el-tooltip>
- <div class="data-color">
- <span style="font-weight: 500; color: rgb(30, 33, 41)">${{ scope.row.price ? scope.row.price : '--' }}</span>
- <span style="margin: 0 5px; color: #cacdd4">|</span>
- <span style="color: #6d7784">{{ scope.row.quantity }}</span>
- </div>
- <span>
- ASIN: <span class="data-color" style="margin-right: 8px">{{ scope.row.asin ? scope.row.asin : '--' }}</span>
- </span>
- <span>
- SKU: <span class="data-color">{{ scope.row.sku ? scope.row.sku : '--' }}</span>
- </span>
- </div>
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="Name" width="120" align="right">
- <template #header>
- <el-button type="primary" size="normal" link @click="handleGoodsAdd">添加已选中</el-button>
- </template>
- <template #default="scope">
- <el-button type="primary" size="small" @click="addSingleGoods(scope)" text>添加</el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- @current-change="handleCurrentChange"
- @size-change="handleSizeChange"
- :current-page="currentPage"
- :page-size="pageSize"
- :total="totalItems"
- layout="prev, pager, next" />
- </el-tab-pane>
- <el-tab-pane label="输入" name="second">
- <el-input
- style="padding: 10px"
- v-model="goodsTextarea"
- :rows="20"
- type="textarea"
- placeholder="请输入ASIN,多个ASIN使用逗号、空格或换行符分隔。(未完成)"
- maxlength="11000" />
- <div style="display: flex; flex-direction: row-reverse; margin-top: 10px">
- <el-button v-for="button in buttons" :key="button.text" :type="button.type" link @click="addGods">{{ button.text }}</el-button>
- </div>
- </el-tab-pane>
- </el-tabs>
- </div>
- <div style="width: 50%">
- <el-card class="box-card" shadow="never" style="border: 0">
- <template #header>
- <div class="card-header">
- <span style="font-weight: 550; font-size: 15px; color: #1f2128">已添加: {{ adsTableData.length }}</span>
- <el-button class="button" text bg @click="delAllGoods">全部删除</el-button>
- </div>
- </template>
- <div class="card-body"></div>
- </el-card>
- <div style="padding: 0 10px 0 10px; margin-top: -12px">
- <el-table
- :data="adsTableData"
- height="475"
- style="width: 100%"
- :header-cell-style="headerCellStyle"
- @selection-change="handleAddedGoodsChange">
- <el-table-column type="selection" width="50" />
- <el-table-column prop="asin" label="ASIN">
- <template #default="scope">
- <div style="display: flex; align-items: center">
- <div style="margin-right: 8px; line-height: normal">
- <el-image class="img-box" :src="scope.row.image_link" />
- </div>
- <div>
- <el-tooltip class="box-item" effect="dark" :content="scope.row.title" placement="top">
- <div class="single-line">{{ scope.row.title ? scope.row.title : '--' }}</div>
- </el-tooltip>
- <div class="data-color">
- <span style="font-weight: 500; color: rgb(30, 33, 41)">${{ scope.row.price ? scope.row.price : '--' }}</span>
- <span style="margin: 0 5px; color: #cacdd4">|</span>
- <span style="color: #6d7784">{{ scope.row.quantity }}</span>
- </div>
- <span
- >ASIN:
- <span class="data-color" style="margin-right: 8px">{{ scope.row.asin ? scope.row.asin : '--' }}</span>
- </span>
- <span
- >SKU:
- <span class="data-color">{{ scope.row.sku ? scope.row.sku : '--' }}</span>
- </span>
- </div>
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="Name" width="120" align="right">
- <template #header>
- <el-button type="primary" size="normal" link @click="delSelectedGoods">删除已选中</el-button>
- </template>
- <template #default="scope">
- <el-button type="primary" size="small" @click="delSingleGoods(scope)" text>删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div style="display: flex; justify-content: space-around; padding-top: 10px">
- <el-button type="primary" plain :disabled="adsSave" @click="submitAdsForm">保存</el-button>
- </div>
- </div>
- </div>
- </el-form-item>
- <!-- 按目标组设置出价 -->
- <el-form
- :label-position="labelPosition"
- ref="targetGroupFormRef"
- :model="targetGroupRuleForm"
- :rules="targetGroupRules"
- label-width="120px"
- class="demo-ruleForm"
- :size="formSize"
- status-icon>
- <div class="column-item" v-if="campaignRuleForm.type == 'AUTO'">
- <div style="margin-top: 20px; font-size: 24px; font-weight: bold">按目标组设置出价</div>
- <hr />
- <br />
- <el-card shadow="never" v-if="campaignRuleForm.type == 'AUTO'" class="box-card" v-loading="targetGroupLoading">
- <div>
- <div style="color: #8e9095">
- <span>目标群体</span>
- <span class="suggested-bid-item">建议竞价</span>
- <span>竞价</span>
- </div>
- <div style="display: flex">
- <el-switch v-model="targetGroupRuleForm.closeMatch" size="small" active-text="紧密匹配" @change="closeMatchChange" />
- <span class="suggested-bid-item">--</span>
- <el-form-item prop="closeMatchInp">
- <el-input
- :disabled="!targetGroupRuleForm.closeMatch"
- v-model="targetGroupRuleForm.closeMatchInp"
- minlength="3"
- maxlength="4"
- class="bid-input">
- <template #prepend>$</template>
- </el-input>
- </el-form-item>
- </div>
- <div>
- <div style="display: flex">
- <el-switch v-model="targetGroupRuleForm.broadMatch" size="small" active-text="广泛匹配" @change="broadMatchChange" />
- <span class="suggested-bid-item">--</span>
- <el-form-item prop="broadMatchInp">
- <el-input
- :disabled="!targetGroupRuleForm.broadMatch"
- v-model="targetGroupRuleForm.broadMatchInp"
- minlength="3"
- maxlength="4"
- class="bid-input">
- <template #prepend>$</template>
- </el-input>
- </el-form-item>
- </div>
- </div>
- <div>
- <div style="display: flex">
- <el-switch v-model="targetGroupRuleForm.similarProducts" size="small" active-text="同类商品" @change="similarProductsChange" />
- <span class="suggested-bid-item">--</span>
- <el-form-item prop="similarProductsInp">
- <el-input
- :disabled="!targetGroupRuleForm.similarProducts"
- v-model="targetGroupRuleForm.similarProductsInp"
- minlength="3"
- maxlength="4"
- class="bid-input">
- <template #prepend>$</template>
- </el-input>
- </el-form-item>
- </div>
- </div>
- <div>
- <div style="display: flex">
- <el-switch v-model="targetGroupRuleForm.relatedProducts" size="small" active-text="关联商品" @change="relatedProductsChange" />
- <span class="suggested-bid-item">--</span>
- <el-form-item prop="relatedProductsInp">
- <el-input
- :disabled="!targetGroupRuleForm.relatedProducts"
- v-model="targetGroupRuleForm.relatedProductsInp"
- minlength="3"
- maxlength="4"
- class="bid-input">
- <template #prepend>$</template>
- </el-input>
- </el-form-item>
- </div>
- </div>
- </div>
- <div style="display: flex; justify-content: space-around">
- <el-button type="primary" plain :disabled="targetGroupBidSave" @click="submitTargetGroupForm">保存</el-button>
- </div>
- </el-card>
- </div>
- </el-form>
- <!-- 投放类型 -->
- <div class="column-item" v-if="campaignRuleForm.type == 'MANUAL'">
- <p style="color: #606266; font-weight: 450"><span style="color: #e47470">*</span> 投放类型</p>
- <el-radio-group v-model="ruleForm.targetType" @change="changeTargetType">
- <div style="display: flex">
- <el-radio label="keyWords" style="align-items: flex-start; margin-top: 5px">
- <div style="margin-top: -4px">关键词投放</div>
- <div>选择关键词以帮助您的商品出现在购物者搜索中</div>
- </el-radio>
- </div>
- <div>
- <el-radio label="Goods" style="align-items: flex-start; margin-top: 20px">
- <div style="margin-top: -4px">商品投放</div>
- <div>选择特定的商品, 分类, 品牌或者其他商品功能来定向您的广告</div>
- </el-radio>
- </div>
- </el-radio-group>
- </div>
- <!-- 关键词定向 -->
- <!-- TODO: 未完成 不知道有什么用 -->
- <div
- style="font-size: 20px; font-weight: bold; margin-top: 30px"
- v-if="ruleForm.targetType == 'keyWords' && campaignRuleForm.type == 'MANUAL'">
- 关键词定向
- </div>
- <hr v-if="ruleForm.targetType == 'keyWords' && campaignRuleForm.type == 'MANUAL'" />
- <el-form-item style="width: 100%; margin-top: 20px" v-if="ruleForm.targetType == 'keyWords' && campaignRuleForm.type == 'MANUAL'">
- <div style="width: 100%; height: 600px; display: flex; border: 1px solid #e5e7eb; border-radius: 6px">
- <div style="width: 50%; border-right: 1px solid #e5e7eb">
- <el-tabs v-model="keyWordsTabs" class="demo-tabs" @tab-click="handleGoodsTabs">
- <div style="margin: 8px">
- <p style="margin-left: 8px; margin-bottom: -8px; font-weight: 500; color: #616266">竞价:</p>
- <div style="display: flex; align-items: center">
- <el-select v-model="bidType" class="m-2" placeholder="Select" style="width: 450px">
- <el-option v-for="item in bidTypeOptions" :key="item.value" :label="item.label" :value="item.value" />
- </el-select>
- <el-input v-model="bidInput" placeholder="Please input">
- <template #prepend>$</template>
- </el-input>
- </div>
- <div style="display: flex">
- <span style="margin: 0 10px 0 8px; font-weight: 500; color: #616266">匹配类型: </span>
- <el-checkbox v-model="widelyType" label="广泛" />
- <el-checkbox v-model="phraseType" label="词组" />
- <el-checkbox v-model="exactType" label="精确" />
- </div>
- </div>
- <el-tab-pane label="建议" name="first">
- <el-table
- height="425"
- style="width: 100%; padding-left: 5px"
- v-loading="loading"
- :data="keyWordsTableData"
- :header-cell-style="headerCellStyle"
- :header-row-style="changeKeyWordsTableHeader">
- <el-table-column prop="asin" label="关键词"> </el-table-column>
- <el-table-column prop="name" label="匹配类型"> </el-table-column>
- <el-table-column prop="name" label="建议出价" width="120"> </el-table-column>
- </el-table>
- </el-tab-pane>
- <el-tab-pane label="输入" name="second">
- <el-input v-model="keyWordsTextarea" :rows="10" type="textarea" placeholder="未完成" style="padding-left: 5px" />
- <el-button type="primary" size="small" text bg @click="addKeyWords">添加</el-button>
- </el-tab-pane>
- </el-tabs>
- </div>
- <div style="width: 50%">
- <el-card class="box-card" shadow="never" style="border: none">
- <template #header>
- <div class="card-header">
- <span style="font-weight: 550; font-size: 15px; color: #1f2128">已添加: {{ addedData.length }}</span>
- <el-button class="button" text bg @click="delAllKeyWords">全部删除</el-button>
- </div>
- </template>
- <div class="card-body" body-style="padding-bottom: -20px;">
- <el-table
- :data="addedKeyWordsTableData"
- style="width: 100%; height: 450px"
- :header-row-style="changeKeyWordsTableHeader"
- :header-cell-style="headerCellStyle">
- <el-table-column prop="keyword" label="关键词" width="auto" />
- <el-table-column prop="bid" label="出价" />
- <el-table-column prop="suggestBid" label="建议出价" />
- <el-table-column prop="operate" label="操作" width="60" align="right" />
- </el-table>
- </div>
- </el-card>
- <div style="display: flex; justify-content: space-around; padding-top: 0px">
- <el-button type="primary" plain>保存</el-button>
- </div>
- </div>
- </div>
- </el-form-item>
- <div
- style="font-size: 20px; font-weight: bold; margin-top: 30px"
- v-if="campaignRuleForm.type === 'AUTO' || (ruleForm.targetType === 'keyWords' && campaignRuleForm.type === 'MANUAL')">
- 否定词
- </div>
- <hr v-if="campaignRuleForm.type === 'AUTO' || (ruleForm.targetType === 'keyWords' && campaignRuleForm.type === 'MANUAL')" />
- <!-- 否定词表格 -->
- <el-form-item
- style="width: 100%; margin-top: 20px"
- v-if="campaignRuleForm.type === 'AUTO' || (ruleForm.targetType === 'keyWords' && campaignRuleForm.type === 'MANUAL')">
- <div style="width: 100%; height: 520px; display: flex; border: 1px solid #e5e7ec; border-radius: 6px" v-loading="negativeWordsLoading">
- <div style="width: 50%; border-right: 1px solid #e5e7ec">
- <div style="margin: 10px 0">
- <span style="margin-left: 25px; color: #e47470">*</span>
- <span style="color: #666666; margin-right: 10px">匹配类型: </span>
- <el-checkbox v-model="NEGATIVE_PHRASE" label="词组否定" />
- <el-checkbox v-model="NEGATIVE_EXACT" label="精确否定" />
- </div>
- <el-input
- v-model="negativeWordsTextarea"
- :rows="17"
- type="textarea"
- placeholder="请输入关键词,多个关键词使用逗号或者换行符分隔。(最多添加1000个关键词)"
- maxlength="11000"
- style="padding: 0 20px" />
- <div style="display: flex; flex-direction: row-reverse; margin-top: 10px">
- <el-button style="margin-right: 18px" type="primary" text bg @click="addNegative">添加</el-button>
- </div>
- </div>
- <div style="width: 50%">
- <el-card class="box-card" shadow="never" style="border: none">
- <template #header>
- <div class="card-header">
- <span style="font-weight: 550; font-size: 15px; color: #1f2128">已添加: {{ addedData.length }}</span>
- <el-button class="button" text bg @click="delAllNegative">全部删除</el-button>
- </div>
- </template>
- <div class="card-body">
- <el-table :data="tableData" style="width: 100%; height: 370px; padding-bottom: 0" :header-row-style="changeNegTableHeader">
- <el-table-column prop="negativeWords" label="否定词" width="auto" />
- <el-table-column prop="operate" label="操作" width="60" align="right">
- <template #default="scope">
- <el-button type="primary" size="small" @click="delSingleNegative(scope)" text>删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </el-card>
- <div style="display: flex; justify-content: space-around">
- <el-button type="primary" plain @click="negativeWordsSave" :disabled="!negativeList.length">保存</el-button>
- </div>
- </div>
- </div>
- </el-form-item>
- <!-- 商品定向 -->
- <div style="font-size: 20px; font-weight: bold; margin-top: 30px" v-if="ruleForm.targetType == 'Goods'">商品定向</div>
- <hr v-if="ruleForm.targetType == 'Goods'" />
- <el-form-item style="width: 100%; margin-top: 20px" v-if="ruleForm.targetType == 'Goods'">
- <div
- style="width: 100%; height: 600px; display: flex; border: 1px solid #e5e7eb; border-radius: 6px"
- v-loading="productOrientationLoading">
- <div style="width: 50%; border-right: 1px solid #e5e7eb">
- <el-tabs
- type="border-card"
- stretch
- class="goods-orientation-tabs"
- style="border: 0; border-right: 0; border-bottom-left-radius: 6px; border-top-left-radius: 5px; overflow: hidden">
- <el-tab-pane label="品类" style="border-top-left-radius: 6px">
- <div style="display: flex; align-items: center">
- <span style="width: 40px">竞价:</span>
- <el-select v-model="categoryBiddingType" @change="singleGoodsBidSelectChanged" class="m-2" placeholder="Select">
- <el-option v-for="item in categoryBiddingTypeOptions" :key="item.value" :label="item.label" :value="item.value" />
- </el-select>
- <el-input
- v-model="singleGoodsBidInput"
- :disabled="categoryBiddingType === 'defaultBid'"
- style="width: 200px">
- <template #prepend>$</template>
- </el-input>
- </div>
- <el-tabs v-model="categoryTabs" class="category-tabs">
- <el-tab-pane label="建议" name="first">
- <el-table :data="proposalTableData" style="width: 100%" height="422">
- <el-table-column prop="proposal" label="建议" width="520">
- <template #header> 0建议 </template>
- </el-table-column>
- <el-table-column prop="address" label="Address">
- <template #header>
- <el-button type="primary" size="normal" link @click="handleGoodsAdd">全部添加</el-button>
- </template>
- <template #default="scope">
- <el-button type="primary" size="small" @click="addSingleGoods(scope)" text>添加</el-button>
- </template>
- </el-table-column>
- </el-table>
- </el-tab-pane>
- <el-tab-pane label="搜索" name="second">
- <el-input placeholder="请输入关键词过滤" />
- <el-scrollbar height="390px">
- <el-tree :data="searchClassifyTableData" :props="defaultProps" :expand-on-click-node="false">
- <template #default="{ node, data }">
- <span class="custom-tree-node">
- <span style="width: 75%">{{ node.label }}</span>
- <span style="color: rgb(50, 108, 216)" v-if="data.ta == true">
- <a @click="refine(data)"> 细化 </a>
- <a style="margin-left: 8px" @click="orientate(node, data)"> 定向 </a>
- </span>
- </span>
- </template>
- </el-tree>
- </el-scrollbar>
- <el-dialog v-model="visible" :title="`细化分类: ${dialogTitle}`" @close="dialogClose" destroy-on-close>
- <div style="display: flex; justify-content: space-between">
- <span>根据特定品牌、价格范围、星级和Prime配送资格,细化分类</span>
- <span>
- <el-checkbox v-model="dialogForm.isCount" label="显示商品数量" @change="isCountChanged" />
- </span>
- </div>
- <el-form :model="dialogForm" :rules="dialogRules" ref="dialogFormRef" style="margin-top: 20px">
- <el-form-item style="padding-left: 140px">
- <span style="margin-right: 10px; color: #616266; font-weight: 500">品牌</span>
- <el-select
- v-model="dialogForm.dialogselectValue"
- @change="dialogSelectChange"
- multiple
- placeholder="请选择"
- :loading="dialogSelectLoading"
- >
- <el-option v-for="item in dialogForm.dialogOptions" :key="item.value" :label="item.label" :value="item.value" />
- </el-select>
- </el-form-item>
- <el-form-item prop="prices" style="padding-left: 112px; margin-top: 10px">
- <span style="margin-right: 10px; color: #616266; font-weight: 500">价格范围</span>
- <el-input-number v-model="dialogForm.prices.lowest" :min="1" :controls="false" placeholder="无最低商品价格" />
- --
- <el-input-number v-model="dialogForm.prices.highest" :min="1" :controls="false" placeholder="无最高商品价格" />
- </el-form-item>
- <el-form-item prop="starRating" style="padding-left: 85px; margin-top: 10px">
- <span style="margin-right: 15px; color: #616266; font-weight: 500">查看星级评定</span>
- <el-slider v-model="dialogForm.starRating" range show-stops :max="5" :marks="marks" style="width: 70%" />
- </el-form-item>
- <el-form-item prop="delivery" style="padding-left: 140px; margin-top: 30px">
- <span style="margin-right: 10px; color: #616266; font-weight: 500">配送</span>
- <el-radio-group v-model="dialogForm.delivery">
- <el-radio label="all" style="font-weight: 400">所有</el-radio>
- <el-radio label="eligible" style="font-weight: 400">具备Prime资格</el-radio>
- <el-radio label="diseligible" style="font-weight: 400">不具备Prime资格</el-radio>
- </el-radio-group>
- </el-form-item>
- </el-form>
- <template #footer>
- <div style="display: flex; justify-content: space-between">
- <span v-loading="countLoadig"
- >定位到的商品数量:
- <span v-if="dialogForm.isCount == true">{{ commodityCount[0]?.min }} - {{ commodityCount[0]?.max }}</span></span
- >
- <span class="dialog-footer">
- <el-button @click="visible = false">取消</el-button>
- <el-button type="primary" @click="dialogFormSubmit">确定</el-button>
- </span>
- </div>
- </template>
- </el-dialog>
- </el-tab-pane>
- </el-tabs>
- </el-tab-pane>
- <el-tab-pane label="单个商品">
- <div style="display: flex; align-items: center">
- <span style="width: 40px">竞价:</span>
- <el-select class="m-2" v-model="singleGoodsBidSelect" @change="singleGoodsBidSelectChanged">
- <el-option v-for="item in singleGoodsBidTypeOptions" :key="item.value" :label="item.label" :value="item.value" />
- </el-select>
- <el-input
- v-model="singleGoodsBidInput"
- :disabled="singleGoodsBidSelect == 'defaultBid'"
- style="width: 200px">
- <template #prepend>$</template>
- </el-input>
- <div style="margin-left: 20px">
- <span style="margin-right: 10px">类型:</span>
- <el-checkbox v-model="expand" label="扩展" />
- <el-checkbox v-model="accurate" label="精准" />
- </div>
- </div>
- <el-tabs v-model="singleGoodsTabs" class="category-tabs">
- <el-tab-pane label="建议" name="first">
- <el-table :data="proposalTableData" style="width: 100%" height="342">
- <el-table-column prop="proposal" label="商品" width="520" />
- <el-table-column prop="address" label="类型" />
- <el-table-column prop="operational" label="操作" />
- </el-table>
- </el-tab-pane>
- <el-tab-pane label="搜索" name="second">
- <el-input v-model="singleGoodsSearchInp" @change="singleGoodsSearchChaneged" placeholder="按ASIN搜索"></el-input>
- <el-table :data="searchTableData" style="width: 100%" height="309">
- <el-table-column prop="asin" label="商品" width="520">
- <template #default="{ row }">
- <div style="display: flex; align-items: center">
- <img :src="row.image_link" style="width: 40px; height: 40px; margin-right: 10px" />
- <span>{{ row.title }}</span>
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="productTypes" label="类型">
- <template #default="scope">
- <div v-if="expand">扩展</div>
- <div v-if="accurate">精准</div>
- </template>
- </el-table-column>
- <el-table-column prop="operational" label="操作">
- <template #default="scope">
- <el-button class="button" text @click="addSingleSearch(scope)">添加</el-button>
- </template>
- </el-table-column>
- </el-table>
- </el-tab-pane>
- <!-- TODO: 商品定向TextArea -->
- <el-tab-pane label="输入" name="third">待完成</el-tab-pane>
- </el-tabs>
- </el-tab-pane>
- </el-tabs>
- </div>
- <div style="width: 50%">
- <el-card class="box-card" shadow="never" style="border: none">
- <template #header>
- <div class="card-header">
- <span style="font-weight: 550; font-size: 15px; color: #1f2128">已添加: {{ productOrientationTableData.length }}</span>
- <el-button class="button" text bg @click="delAllCna">全部删除</el-button>
- </div>
- </template>
- <div class="card-body">
- <el-table
- height="460"
- :data="productOrientationTableData"
- style="width: 100%"
- :header-row-style="changeKeyWordsTableHeader"
- :header-cell-style="headerCellStyle">
- <el-table-column prop="cna" label="分类 & 商品" width="300">
- <template #default="scope">
- <div v-if="scope.row.cna || scope.row.classification">
- 分类: <span style="color: #000000">{{ scope.row.cna ? scope.row.cna : scope.row.classification }}</span>
- </div>
- <div v-if="scope.row.asin">
- {{ scope.row.asin ? scope.row.asin : '--' }}
- </div>
- <div v-if="scope.row.brand">
- 品牌: <span style="color: #000000">{{ scope.row.brand }}</span>
- </div>
- <div v-if="scope.row.low_price || scope.row.high_price">
- 品牌价格:
- <span style="color: #000000">
- {{ scope.row.low_price ? '$' + scope.row.low_price : '--' }} -
- {{ scope.row.high_price ? '$' + scope.row.high_price : '--' }}
- </span>
- </div>
- <div v-if="scope.row.low_rating || scope.row.high_rating">
- 评分: <span style="color: #000000">{{ scope.row.low_rating }} - {{ scope.row.high_rating }}</span>
- </div>
- <div v-if="scope.row.deliveryText">
- 配送: <span style="color: #000000">{{ scope.row.deliveryText }}</span>
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="type" label="类型">
- <template #default="scope">
- {{ scope.row.productTypeText ? scope.row.productTypeText : '--' }}
- </template>
- </el-table-column>
- <el-table-column prop="bid" label="竞价">
- <template #default="scope">
- <el-input-number v-model="scope.row.bid" :min="0.02" :max="1000000" :controls="false" size="small" />
- </template>
- </el-table-column>
- <el-table-column prop="operate" label="操作" width="60" align="right">
- <template #default="scope">
- <el-button text size="small" @click="delCna(scope.$index)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </el-card>
- <div style="display: flex; justify-content: space-around; margin-top: -8px">
- <el-button type="primary" plain @click="productTagetSave">保存</el-button>
- </div>
- </div>
- </div>
- </el-form-item>
- <div
- style="font-size: 20px; font-weight: bold; margin-top: 30px"
- v-if="campaignRuleForm.type == 'AUTO' || (ruleForm.targetType == 'Goods' && campaignRuleForm.type === 'MANUAL')">
- 否定商品
- </div>
- <hr v-if="campaignRuleForm.type == 'AUTO' || (ruleForm.targetType == 'Goods' && campaignRuleForm.type === 'MANUAL')" />
- <el-form-item
- prop="matchType"
- style="width: 100%; margin-top: 20px"
- v-if="campaignRuleForm.type == 'AUTO' || (ruleForm.targetType == 'Goods' && campaignRuleForm.type === 'MANUAL')">
- <div style="width: 100%; height: 600px; display: flex; border: 1px solid #e5e7ec; border-radius: 6px" v-loading="negativeGoodsLoading">
- <div style="width: 50%; border-right: 1px solid #e5e7ec">
- <el-tabs v-model="negativeTabs" class="demo-tabs" @tab-click="handleNegGoodsTabs">
- <el-tab-pane label="搜索" name="first">
- <div style="margin-bottom: 10px">
- <el-input placeholder="按ASIN搜索" v-model="negativeInput" @change="searchNegativeGoods" clearable />
- </div>
- <el-table
- height="495"
- style="width: 100%"
- v-loading="loading"
- :data="negativeTableData"
- :header-cell-style="headerCellStyle"
- :show-header="false">
- <el-table-column prop="asin" label="商品">
- <template #default="scope">
- <div style="display: flex; align-items: center">
- <div style="margin-right: 8px; line-height: normal">
- <el-image class="img-box" :src="scope.row.image_link" />
- </div>
- <div>
- <el-tooltip class="box-item" effect="dark" :content="scope.row.title" placement="top">
- <div class="single-line">{{ scope.row.title ? scope.row.title : '--' }}</div>
- </el-tooltip>
- <span>
- ASIN: <span class="data-color" style="margin-right: 8px">{{ scope.row.asin ? scope.row.asin : '--' }}</span>
- </span>
- </div>
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="Name" width="120" align="right">
- <template #header> </template>
- <template #default="scope">
- <el-button type="primary" size="small" @click="addSingleNegativeGoods(scope)" text>添加</el-button>
- </template>
- </el-table-column>
- </el-table>
- </el-tab-pane>
- <el-tab-pane label="输入" name="second">
- <el-input
- v-model="ruleForm.negativeGoodsTextarea"
- :rows="17"
- type="textarea"
- placeholder="未完成"
- maxlength="11000"
- style="padding: 10px 10px" />
- <div style="display: flex; flex-direction: row-reverse; margin-top: 10px">
- <el-button style="margin-right: 10px" type="primary" text bg @click="addNegativeGoods">添加</el-button>
- </div>
- </el-tab-pane>
- </el-tabs>
- </div>
- <div style="width: 50%">
- <el-card class="box-card" shadow="never" style="border: none">
- <template #header>
- <div class="card-header">
- <span style="font-weight: 550; font-size: 15px; color: #1f2128">已添加: {{ addedNegetiveTableData.length }}</span>
- <el-button class="button" text bg @click="delAllNegativeGoods">全部删除</el-button>
- </div>
- </template>
- <div class="card-body"></div>
- </el-card>
- <div style="padding: 0 10px 0 10px; margin-top: -30px">
- <el-table
- :data="addedNegetiveTableData"
- height="473"
- style="width: 100%"
- :header-cell-style="headerCellStyle"
- @selection-change="handleAddedNegGoods">
- <el-table-column prop="asin" label="商品">
- <template #default="scope">
- <div style="display: flex; align-items: center">
- <div style="margin-right: 8px; line-height: normal">
- <el-image class="img-box" :src="scope.row.image_link" />
- </div>
- <div>
- <el-tooltip class="box-item" effect="dark" :content="scope.row.title" placement="top">
- <div class="single-line">{{ scope.row.title ? scope.row.title : '--' }}</div>
- </el-tooltip>
- <span
- >ASIN:
- <span class="data-color" style="margin-right: 8px">{{ scope.row.asin ? scope.row.asin : '--' }}</span>
- </span>
- </div>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="120" align="right">
- <template #default="scope">
- <el-button type="primary" size="small" @click="delSingleNegativeGoods(scope)" text>删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div style="display: flex; justify-content: space-around; padding-top: 10px">
- <el-button plain type="primary" @click="negativeGoodsSave" :disabled="!addedNegetiveTableData.length">保存</el-button>
- </div>
- </div>
- </div>
- </el-form-item>
- <!-- <br />
- <el-form-item>
- <el-button size="large" @click="resetForm(ruleFormRef)">取消</el-button>
- <el-button size="large" type="primary" plain @click="submitForm(ruleFormRef)">保存</el-button>
- </el-form-item> -->
- </el-form>
- </div>
- </el-card>
- </div>
- </template>
- <script lang="ts" setup>
- import { onMounted, reactive, ref, computed, watch } from 'vue'
- import type { CSSProperties } from 'vue'
- import { useRoute } from 'vue-router'
- import type { FormInstance, FormRules, TabsPaneContext } from 'element-plus'
- import { ElMessage } from 'element-plus'
- import { useShopInfo } from '/@/stores/shopInfo'
- import { usePublicData } from '/@/stores/publicData'
- import { storeToRefs } from 'pinia'
- import { useRouter } from 'vue-router'
- import { request } from '/@/utils/service'
- const negativeTableData = ref([])
- const addedNegetiveTableData = ref([])
- const router = useRouter()
- const route = useRoute()
- const shopInfo = useShopInfo()
- const { profile } = storeToRefs(shopInfo)
- const loading = ref(true)
- const fullTableData = ref([]) // 表格数据
- let addedData = ref([]) // 已添加的商品数据
- let adsTableData = ref([])
- let selections = [] // 添加选中的项
- let addedSels = [] // 删除选中的项
- const currentPage = ref() // 当前页
- const pageSize = ref(20) // 每页显示条目数
- const totalItems = ref() // 数据总量
- const showCard = ref(false)
- const activeName = ref('first')
- const negativeTabs = ref('first')
- const keyWordsTabs = ref('first')
- const productOrientationTabs = ref('first')
- const categoryTabs = ref('first')
- const singleGoodsTabs = ref('first')
- const searchInp = ref('')
- const select = ref('name')
- const select2 = ref('latest')
- const buttons = [{ type: 'primary', text: '添加' }] as const
- const negativeInput = ref('')
- let widelyType = ref(true)
- let phraseType = ref(true)
- let exactType = ref(true)
- // 表单相关数据
- const campaignLoading = ref(false)
- const formSize = ref('default')
- const labelPosition = ref('top')
- // ------------------------------------------广告活动------------------------------------------
- let respCampaignId = ref('')
- let adGroupSave = ref(true)
- const campaignFormRef = ref<FormInstance>()
- interface CampaignForm {
- name: string
- adMix: string
- count: string
- startDate: string
- date2: string
- budget: string
- delivery: boolean
- type: string
- bidStrategy: string
- placeBid: string
- firstPage: string
- other: string
- }
- const campaignRuleForm = reactive<CampaignForm>({
- name: 'aitest02campaign_wxc',
- adMix: '',
- count: '',
- startDate: '',
- date2: '',
- budget: '',
- delivery: false,
- type: 'AUTO',
- bidStrategy: 'LEGACY_FOR_SALES',
- placeBid: '',
- firstPage: '',
- other: '',
- })
- const campaignRules = computed(() => ({
- name: [{ required: true, message: 'Please input Activity name', trigger: 'blur' }],
- adMix: [{ required: false, message: 'Please select Activity zone', trigger: 'change' }],
- count: [{ required: true, message: 'Please select Activity count', trigger: 'change' }],
- startDate: [{ required: true, type: 'date', message: 'Please pick a date', trigger: 'change' }],
- date2: [{ required: false, type: 'date', message: 'Please pick a time', trigger: 'change' }],
- budget: [
- { required: true, message: '请输入预算', trigger: 'blur' },
- { pattern: /^(?:[1-9]\d{0,5}|1000000)(?:\.\d{1,2})?$/, message: '预算必须是1到1000000之间的数字,小数点后最多两位', trigger: 'blur' },
- ],
- type: [{ required: false, trigger: 'change' }],
- bidStrategy: [{ required: true, message: 'Please select activity resource', trigger: 'change' }],
- placeBid: [{ required: false, pattern: /^[0-9]{1,3}$/, message: '必须是0~900之间的整数百分比', trigger: 'change' }],
- firstPage: [{ required: false, pattern: /^[0-9]{1,3}$/, message: '必须是0~900之间的整数百分比', trigger: 'change' }],
- other: [{ required: false, pattern: /^[0-9]{1,3}$/, message: '必须是0~900之间的整数百分比', trigger: 'change' }],
- }))
- async function createCampaigns() {
- try {
- // 必需字段列表
- const requiredFields = [
- { key: 'profile_id', value: profile.value.profile_id },
- { key: 'name', value: campaignRuleForm.name },
- { key: 'startDate', value: campaignRuleForm.startDate },
- { key: 'targetingType', value: campaignRuleForm.type },
- { key: 'strategy', value: campaignRuleForm.bidStrategy },
- { key: 'budget', value: campaignRuleForm.budget },
- ]
- // 检查每个必需字段
- requiredFields.forEach((field) => {
- if (!field.value) {
- throw new Error(`缺少必需的字段: ${field.key}`)
- }
- })
- // 构建请求数据
- const requestData = {
- profile_id: profile.value.profile_id,
- name: campaignRuleForm.name,
- startDate: campaignRuleForm.startDate,
- budget: campaignRuleForm.budget,
- targetingType: campaignRuleForm.type,
- strategy: campaignRuleForm.bidStrategy,
- state: 'PAUSED',
- // 可选字段
- endDate: campaignRuleForm.date2,
- t_percentage: campaignRuleForm.placeBid,
- p_percentage: campaignRuleForm.firstPage,
- r_percentage: campaignRuleForm.other,
- }
- // 过滤掉 undefined 或空的可选字段
- const filteredRequestData = Object.fromEntries(Object.entries(requestData).filter(([_, v]) => v != null))
- const resp = await request({
- url: '/api/ad_manage/spcampaigns/create/',
- method: 'POST',
- data: filteredRequestData,
- })
- console.log('🚀 ~ createCampaigns ~ resp-->>', resp)
- respCampaignId.value = resp.data.campaignId
- if (respCampaignId.value) {
- adGroupSave.value = false
- campaignLoading.value = false
- ElMessage({
- message: '广告活动创建成功',
- type: 'success',
- })
- } else {
- campaignLoading.value = false
- ElMessage.error('广告活动创建失败!')
- }
- } catch (error) {
- console.error('请求失败:', error)
- }
- }
- async function submitCampaignForm(formEl: FormInstance | undefined) {
- if (!formEl) return
- await formEl.validate((valid, fields) => {
- if (valid) {
- console.log('submit!')
- campaignLoading.value = true
- createCampaigns()
- } else {
- console.log('error submit!', fields)
- }
- })
- }
- async function submitForm(formEl: FormInstance | undefined) {
- if (!formEl) return
- await formEl.validate((valid, fields) => {
- if (valid) {
- console.log('submit!')
- createCampaigns()
- } else {
- console.log('error submit!', fields)
- }
- })
- }
- function resetForm(formEl: FormInstance | undefined) {
- if (!formEl) return
- formEl.resetFields()
- }
- // ------------------------------------------------------广告组------------------------------------------------------
- const adGroupRuleFormRef = ref<FormInstance>()
- interface AdGroupForm {
- adGroupName: string
- defaultBidInp: string
- }
- const adGroupRuleForm = reactive<AdGroupForm>({
- adGroupName: '',
- defaultBidInp: '',
- })
- const adGroupRules = computed(() => ({
- adGroupName: [{ required: true, message: '请输入广告组名称', trigger: 'blur' }],
- defaultBidInp: [
- { required: true, message: '请输入默认出价', trigger: 'blur' },
- { validator: validateDefaultBidInp, trigger: 'blur' },
- ],
- }))
- function validateDefaultBidInp(rule, value, callback) {
- // 通用校验方法
- if (value === '') {
- callback(new Error('请输入默认出价'))
- } else if (!/^(0\.0[2-9]|0\.[1-9]\d?|[1-9]\d{0,2}(\.\d{1,2})?|1000(\.0{1,2})?)$/.test(value)) {
- callback(new Error('最小不低于0.02,最大不超过1000'))
- } else {
- const numericValue = parseFloat(value)
- const numericBudget = parseFloat(campaignRuleForm.budget)
- if (numericValue > numericBudget) {
- callback(new Error('默认出价不能大于当前预算'))
- } else {
- callback()
- }
- }
- }
- let respAdGroupId = ref('')
- let adsSave = ref(true)
- async function createGroups() {
- try {
- // 构建请求数据
- const requestData = {
- profile_id: profile.value.profile_id,
- campaignId: respCampaignId.value,
- name: adGroupRuleForm.adGroupName,
- defaultBid: adGroupRuleForm.defaultBidInp,
- state: 'PAUSED',
- }
- // 过滤掉 undefined 或空的可选字段
- const filteredRequestData = Object.fromEntries(Object.entries(requestData).filter(([_, v]) => v != null))
- const resp = await request({
- url: '/api/ad_manage/spgroups/create/',
- method: 'POST',
- data: filteredRequestData,
- })
- respAdGroupId.value = resp.data.adGroupId
- console.log('🚀 ~ createGroups ~ resp-->>', resp)
- adGroupLoading.value = false
- if (respAdGroupId.value) {
- ElMessage({
- message: '广告组创建成功',
- type: 'success',
- })
- } else {
- ElMessage.error('广告组创建失败!')
- }
- } catch (error) {
- console.error('请求失败:', error)
- }
- }
- async function submitGroupsForm(formEl: FormInstance | undefined) {
- if (!formEl) return
- await formEl.validate((valid, fields) => {
- if (valid) {
- adGroupLoading.value = true
- console.log('submit!')
- createGroups()
- } else {
- console.log('error submit!', fields)
- }
- })
- }
- // ------------------------------------------商品------------------------------------------
- const goodsTextarea = ref('')
- const adGroupLoading = ref(false)
- const commodityLoading = ref(false)
- let addedAdsTableItems = ref([])
- function setTableData(asin = '', sku = '') {
- return request({
- url: '/api/sellers/listings/our/',
- method: 'GET',
- params: {
- page: currentPage.value,
- limit: pageSize.value,
- profile_id: profile.value.profile_id,
- asin,
- sku,
- },
- })
- .then((resp) => {
- fullTableData.value = resp.data
- totalItems.value = resp.total
- currentPage.value = resp.page
- loading.value = false
- })
- .catch((error) => {
- console.error('Error fetching data:', error)
- loading.value = false
- })
- }
- function addSingleGoods(scope) {
- // console.log('scope', scope.row)
- const isAlreadyAdded = adsTableData.value.some((item) => item.sku === scope.row.sku)
- if (!isAlreadyAdded) {
- adsTableData.value.push(scope.row)
- } else {
- console.log('Item is already added.')
- }
- }
- function addGods() {
- const inputData = goodsTextarea.value
- const asins = inputData.split(/[\n,]+/)
- asins.forEach((asin) => {
- if (asin.trim()) {
- setTableData(asin.trim())
- .then((response) => {
- console.log(`Data for ASIN ${asin}:`, response) // 更新这里来正确地访问数据
- })
- .catch((error) => {
- console.error(`Error fetching data for ASIN ${asin}:`, error)
- })
- }
- })
- }
- function delSingleGoods(scope) {
- const index = adsTableData.value.findIndex((item) => item.sku === scope.row.sku)
- if (index !== -1) {
- adsTableData.value.splice(index, 1)
- console.log('Item removed successfully.')
- } else {
- console.log('Item not found.')
- }
- }
- function delAllGoods() {
- adsTableData.value = []
- // adsTableData.value.splice(0, adsTableData.value.length)
- }
- // 删除第二个table中已经选中的项
- function delSelectedGoods() {
- adsTableData.value = adsTableData.value.filter((item) => !addedSels.includes(item))
- addedSels = []
- }
- function inpChange(e) {
- const value = e
- if (select.value === 'asin') {
- loading.value = true
- setTableData(value)
- } else if (select.value === 'sku') {
- loading.value = true
- setTableData('', value)
- }
- }
- function selChange(e) {
- console.log('e', e)
- const value = e
- if (select.value === 'asin' && searchInp.value) {
- loading.value = true
- setTableData(value)
- } else if (select.value === 'sku' && searchInp.value) {
- loading.value = true
- setTableData('', value)
- }
- }
- // 点击表格选项触发事件
- function handleSelectionChange(selection) {
- selections = selection
- }
- // 获取addedTable中已选中的项
- function handleAddedGoodsChange(selection) {
- addedSels = selection
- }
- // 添加已选中的项
- function handleGoodsAdd() {
- // 过滤掉已经存在于addedData.value中的项
- const newSelections = selections.filter(
- (sel) => !adsTableData.value.some((added) => added.sku === sel.sku) // 使用sku作为唯一标识
- )
- // 如果有新的不重复项,加入到addedData.value中
- if (newSelections.length > 0) {
- adsTableData.value.push(...newSelections)
- }
- }
- // 点击Tab
- const handleGoodsTabs = (tab: TabsPaneContext, event: Event) => {
- console.log(tab, event)
- }
- function isItemInList(item, list) {
- return list.some((listItem) => listItem.sku === item.sku && listItem.asin === item.asin)
- }
- // 监听商品右侧表格已添加的数据并转化数据格式
- watch(
- adsTableData,
- (newValue, oldValue) => {
- newValue.forEach((item) => {
- if (!isItemInList(item, addedAdsTableItems.value)) {
- addedAdsTableItems.value.push({ sku: item.sku, asin: item.asin })
- }
- })
- if (adsTableData.value.length !== 0) {
- adsSave.value = false
- } else {
- adsSave.value = true
- }
- },
- { deep: true }
- )
- async function createAds() {
- try {
- const requestData = {
- profile_id: profile.value.profile_id,
- campaignId: respCampaignId.value,
- adGroupId: respAdGroupId.value,
- asinsku: addedAdsTableItems.value,
- state: 'PAUSED',
- }
- const filteredRequestData = Object.fromEntries(Object.entries(requestData).filter(([_, v]) => v != null))
- const resp = await request({
- url: '/api/ad_manage/spads/create/',
- method: 'POST',
- data: filteredRequestData,
- })
- console.log('🚀 ~ createAds ~ resp-->>', resp)
- commodityLoading.value = false
- if (resp.data.success.length > 0) {
- adsSave.value = false
- targetGroupBidSave.value = false
- adsTableData.value = []
- ElMessage({
- message: '商品创建成功',
- type: 'success',
- })
- } else {
- ElMessage.error('商品创建失败!')
- }
- } catch (error) {
- console.error('请求失败:', error)
- }
- }
- function submitAdsForm() {
- commodityLoading.value = true
- createAds()
- }
- // ------------------------------------------目标组设置出价------------------------------------------
- let targetGroupBidSave = ref(true)
- let targetGroupLoading = ref(false)
- const targetGroupFormRef = ref<FormInstance>()
- interface TargetGroupForm {
- closeMatch: boolean
- broadMatch: boolean
- similarProducts: boolean
- relatedProducts: boolean
- closeMatchInp: string
- broadMatchInp: string
- similarProductsInp: string
- relatedProductsInp: string
- }
- const targetGroupRuleForm = reactive<TargetGroupForm>({
- closeMatch: true,
- broadMatch: true,
- similarProducts: true,
- relatedProducts: true,
- closeMatchInp: '1',
- broadMatchInp: '1',
- similarProductsInp: '1',
- relatedProductsInp: '1',
- })
- const targetGroupRules = computed(() => ({
- closeMatchInp: [
- { required: true, message: '请输入默认出价', trigger: 'blur' },
- { validator: validateDefaultBidInp, trigger: 'blur' },
- ],
- broadMatchInp: [
- { required: true, message: '请输入默认出价', trigger: 'blur' },
- { validator: validateDefaultBidInp, trigger: 'blur' },
- ],
- similarProductsInp: [
- { required: true, message: '请输入默认出价', trigger: 'blur' },
- { validator: validateDefaultBidInp, trigger: 'blur' },
- ],
- relatedProductsInp: [
- { required: true, message: '请输入默认出价', trigger: 'blur' },
- { validator: validateDefaultBidInp, trigger: 'blur' },
- ],
- }))
- function closeMatchChange() {
- if (targetGroupRuleForm.closeMatch == false) {
- targetGroupRuleForm.closeMatchInp = ''
- targetGroupFormRef.value.clearValidate('closeMatchInp')
- } else {
- targetGroupRuleForm.closeMatchInp = '1'
- // targetGroupFormRef.value.validateField('closeMatchInp')
- }
- }
- function broadMatchChange() {
- if (targetGroupRuleForm.broadMatch == false) {
- targetGroupRuleForm.broadMatchInp = ''
- targetGroupFormRef.value.clearValidate('broadMatchInp')
- } else {
- targetGroupRuleForm.broadMatchInp = '1'
- // targetGroupFormRef.value.validateField('broadMatchInp')
- }
- }
- function similarProductsChange() {
- if (targetGroupRuleForm.similarProducts == false) {
- targetGroupRuleForm.similarProductsInp = ''
- targetGroupFormRef.value.clearValidate('similarProductsInp')
- } else {
- targetGroupRuleForm.similarProductsInp = '1'
- // targetGroupFormRef.value.validateField('similarProductsInp')
- }
- }
- function relatedProductsChange() {
- if (targetGroupRuleForm.relatedProducts == false) {
- targetGroupRuleForm.relatedProductsInp = ''
- targetGroupFormRef.value.clearValidate('relatedProductsInp')
- } else {
- targetGroupRuleForm.relatedProductsInp = '1'
- // targetGroupFormRef.value.validateField('relatedProductsInp')
- }
- }
- async function createTargetGroup() {
- try {
- const requestData = {
- profile_id: profile.value.profile_id,
- adGroupId: respAdGroupId.value,
- QUERY_HIGH_REL_MATCHES: targetGroupRuleForm.closeMatchInp,
- QUERY_BROAD_REL_MATCHES: targetGroupRuleForm.broadMatchInp,
- ASIN_SUBSTITUTE_RELATED: targetGroupRuleForm.similarProductsInp,
- ASIN_ACCESSORY_RELATED: targetGroupRuleForm.relatedProductsInp,
- QUERY_HIGH_REL_MATCHES_state: targetGroupRuleForm.closeMatch,
- QUERY_BROAD_REL_MATCHES_state: targetGroupRuleForm.broadMatch,
- ASIN_SUBSTITUTE_RELATED_state: targetGroupRuleForm.similarProducts,
- ASIN_ACCESSORY_RELATED_state: targetGroupRuleForm.relatedProducts,
- }
- const filteredRequestData = Object.fromEntries(Object.entries(requestData).filter(([_, v]) => v != null))
- const resp = await request({
- url: '/api/ad_manage/sptargets/auto/updata/',
- method: 'POST',
- data: filteredRequestData,
- })
- console.log('🚀 ~ createTargetGroup ~ resp-->>', resp)
- targetGroupLoading.value = false
- if (respAdGroupId.value) {
- ElMessage({
- message: '目标组创建成功',
- type: 'success',
- })
- } else {
- ElMessage.error('目标组创建失败!')
- }
- } catch (error) {
- console.error('请求失败:', error)
- }
- }
- function submitTargetGroupForm() {
- targetGroupLoading.value = true
- console.log('submit!')
- createTargetGroup()
- }
- // ------------------------------------------否定词------------------------------------------
- const ruleFormRef = ref<FormInstance>()
- interface RuleForm {
- autoRedirect: string
- // NEGATIVE_PHRASE: boolean
- // NEGATIVE_EXACT: boolean
- negativeTextarea: string
- negativeGoodsTextarea: string
- targetType: string
- }
- const ruleForm = reactive<RuleForm>({
- autoRedirect: 'defaultBid',
- // NEGATIVE_PHRASE: true,
- // NEGATIVE_EXACT: true,
- negativeTextarea: '',
- negativeGoodsTextarea: '',
- targetType: 'keyWords',
- })
- const rules = computed(() => ({
- autoRedirect: [{ required: true, trigger: 'change' }],
- // relatedProductsInp: getValidationRules('relatedProductsInp'),
- // similarProductsInp: getValidationRules('similarProductsInp'),
- // broadMatchInp: getValidationRules('broadMatchInp'),
- // closeMatchInp: getValidationRules('closeMatchInp'),
- }))
- //------------------------------------------------------------------------------方法------------------------------------------------------------------------------
- // 当单选按钮变化时更新showCard状态
- function changeBid() {
- console.log(ruleForm.autoRedirect)
- showCard.value = ruleForm.autoRedirect === 'targetBid'
- }
- // 切换投放类型
- function changeType() {}
- // 处理分页器当前页变化
- function handleCurrentChange(newPage) {
- currentPage.value = newPage
- loading.value = true
- setTableData()
- }
- // 处理分页器每页显示条目数变化
- function handleSizeChange(newSize) {
- pageSize.value = newSize
- currentPage.value = 1 // 重置到第一页
- }
- // ------------------------------------------投放类型模块------------------------------------------
- async function changeTargetType() {
- // console.log(ruleForm.targetType)
- showCard.value = ruleForm.targetType === 'keyWords'
- if (ruleForm.targetType === 'Goods') {
- productOrientationLoading.value = true
- await setProductOrientationData()
- }
- }
- // ------------------------------------------商品定向模块------------------------------------------
- const categoryBiddingType = ref('customBid')
- const categoryBiddingTypeOptions = [
- {
- value: 'defaultBid',
- label: '默认竞价',
- },
- {
- value: 'customBid',
- label: '自定义竞价',
- },
- ]
- const categoryBidInput = ref('0.75')
- const singleGoodsBidSelect = ref('customBid')
- const singleGoodsBidTypeOptions = [
- {
- value: 'defaultBid',
- label: '默认竞价',
- },
- {
- value: 'customBid',
- label: '自定义竞价',
- },
- ]
- const singleGoodsBidInput = ref('0.75')
- const expand = ref(true)
- const accurate = ref(false)
- const proposalTableData = ref([])
- const searchClassifyTableData = ref([])
- const productOrientationLoading = ref(false)
- const dialogSelectLoading = ref(false)
- const defaultProps = {
- children: 'ch',
- label: 'cna',
- }
- const countLoadig = ref(false)
- const visible = ref(false)
- let dialogTitle = ref('')
- let categoryId = ref('')
- const dialogselectValue = ref('')
- let dialogOptions: any = ref([])
- const dialogForm: any = reactive({
- prices: {
- lowest: undefined,
- highest: undefined,
- },
- starRating: [0, 5],
- dialogselectValue: [],
- delivery: 'all',
- isCount: false,
- })
- const dialogFormRef = ref()
- const dialogRules = reactive({
- prices: [{ validator: validatePrices, trigger: 'blur' }],
- })
- interface Mark {
- style: CSSProperties
- label: string
- }
- type Marks = Record<number, Mark | string>
- const marks = reactive<Marks>({
- 0: '0',
- 1: '1',
- 2: '2',
- 3: '3',
- 4: '4',
- 5: '5',
- })
- let commodityCount = ref([])
- let currentDialogIndex = ref(0)
- let productOrientationTableData = ref([])
- async function validatePrices(rule, value) {
- if (value.highest !== '' && value.lowest !== '' && value.highest <= value.lowest) {
- return Promise.reject('最高价格必须大于最低价格')
- }
- return Promise.resolve()
- }
- async function setProductOrientationData() {
- try {
- const resp = await request({
- url: '/api/ad_manage/targetable/categories/',
- method: 'GET',
- params: {
- profile_id: profile.value.profile_id,
- },
- })
- searchClassifyTableData.value = resp.data
- productOrientationLoading.value = false
- } catch (error) {
- console.error('请求失败:', error)
- }
- }
- async function setDialogOption() {
- try {
- const resp = await request({
- url: '/api/ad_manage/categories/brands/',
- method: 'GET',
- params: {
- profile_id: profile.value.profile_id,
- category_id: categoryId.value,
- },
- })
- const options = resp.data
- dialogForm.dialogOptions = options.brands.map((brand) => {
- return {
- label: brand.name,
- value: brand.id,
- }
- })
- dialogSelectLoading.value = false
- } catch (error) {
- console.error('请求失败:', error)
- }
- }
- async function getCount(instanceId) {
- try {
- const resp = await request({
- url: '/api/ad_manage/products/count/',
- method: 'POST',
- data: {
- profile_id: profile.value.profile_id,
- category_id: categoryId.value,
- },
- })
- if (instanceId === currentDialogIndex.value) {
- commodityCount.value = resp.data.AsinCounts
- }
- } catch (error) {
- console.error('请求失败:', error)
- } finally {
- if (instanceId === currentDialogIndex.value) {
- countLoadig.value = false
- }
- }
- }
- function dialogClose() {
- currentDialogIndex.value++
- resetDialogForm()
- dialogForm.isCount = false
- commodityCount.value = []
- countLoadig.value = false
- }
- function resetDialogForm() {
- dialogForm.prices.lowest = undefined
- dialogForm.prices.highest = undefined
- dialogForm.starRating = [0, 5]
- dialogForm.dialogselectValue = []
- dialogForm.delivery = 'all'
- dialogForm.isCount = false
- }
- function isCountChanged() {
- if (dialogForm.isCount) {
- const instanceId = currentDialogIndex.value
- countLoadig.value = true
- getCount(instanceId)
- } else {
- countLoadig.value = false
- commodityCount.value = []
- }
- }
- function delCna(index) {
- productOrientationTableData.value.splice(index, 1)
- }
- function delAllCna() {
- productOrientationTableData.value = []
- }
- function singleGoodsBidSelectChanged() {
- if (singleGoodsBidSelect.value === 'defaultBid' || categoryBiddingType.value === 'defaultBid') {
- singleGoodsBidInput.value = ''
- }
- }
- let singleGoodsSearchInp = ref('')
- let searchTableData = ref([])
- function setSearchTableData(asin = '', sku = '') {
- return request({
- url: '/api/sellers/listings/our/',
- method: 'GET',
- params: {
- profile_id: profile.value.profile_id,
- asin,
- sku,
- },
- })
- .then((resp) => {
- searchTableData.value = resp.data
- productOrientationLoading.value = false
- })
- .catch((error) => {
- console.error('Error fetching data:', error)
- productOrientationLoading.value = false
- })
- }
- function singleGoodsSearchChaneged() {
- productOrientationLoading.value = true
- setSearchTableData()
- }
- function addSingleSearch(scope) {
- console.log('🚀 ~ addSingleSearch ~ scope-->>', scope);
- const typesToAdd = [];
- if (expand.value) {
- typesToAdd.push('ASIN_EXPANDED_FROM');
- }
- if (accurate.value) {
- typesToAdd.push('ASIN_SAME_AS');
- }
- const productTypeMap = {
- ASIN_EXPANDED_FROM: '扩展',
- ASIN_SAME_AS: '精确',
- };
- typesToAdd.forEach((productType) => {
- const isAlreadyAdded = productOrientationTableData.value.some(item => item.sku === scope.row.sku && item.productType === productType);
- let bidValue = null;
- // 根据 categoryBiddingType.value 的值设置 bidValue
- if (categoryBiddingType.value === 'defaultBid') {
- bidValue = adGroupRuleForm.defaultBidInp;
- } else if (categoryBiddingType.value === 'customBid') {
- bidValue = singleGoodsBidInput.value;
- }
- if (!isAlreadyAdded) {
- const newData = {
- type: 'p',
- asin: scope.row.asin,
- sku: scope.row.sku,
- productType: productType,
- productTypeText: productTypeMap[productType],
- bid: bidValue, // 添加 bid 值
- };
- productOrientationTableData.value.push(newData);
- } else {
- console.log(`${productType} item is already added.`);
- }
- });
- }
- let selectedLabels = ref([]) // 选中的label数组
- function dialogSelectChange(event) {
- console.log('🚀 ~ dialogSelectChange ~ event-->>', event)
- // 使用 map 来转换每个选中项的 value 为其对应的 label
- selectedLabels.value = event.map((selectedValue) => {
- const selectedOption = dialogForm.dialogOptions.find((option) => option.value === selectedValue)
- return selectedOption ? selectedOption.label : ''
- })
- console.log('🚀 ~ dialogSelectChange ~ selectedLabels-->>', selectedLabels.value)
- }
- let refineItem = ref([])
- // 细化按钮功能
- function refine(data) {
- console.log('🚀 ~ refine ~ data-->>', data)
- commodityCount.value = []
- dialogTitle.value = data.cna
- categoryId.value = data.cid
- refineItem.value.push(data)
- visible.value = true
- dialogSelectLoading.value = true
- setDialogOption()
- }
- // 弹框提交功能
- function dialogFormSubmit() {
- dialogFormRef.value.validate((valid) => {
- if (valid) {
- console.log('表单提交')
- visible.value = false
- const dialogClassification = dialogTitle.value
- const dialogPrices_low = dialogForm.prices.lowest
- const dialogPrices_high = dialogForm.prices.highest
- const dialogStartRating = dialogForm.starRating
- const ratingLow = dialogStartRating[0]
- const ratingHigh = dialogStartRating[1]
- const dialogDelivery = dialogForm.delivery
- console.log('🚀 ~ dialogFormRef.value.validate ~ dialogDelivery-->>', dialogDelivery)
- const deliveryMap = {
- all: '所有',
- eligible: '具备Prime资格',
- diseligible: '不具备Prime资格',
- }
- let bidValue = null;
- // 根据 categoryBiddingType.value 的值设置 bidValue
- if (categoryBiddingType.value === 'defaultBid') {
- bidValue = adGroupRuleForm.defaultBidInp;
- } else if (categoryBiddingType.value === 'customBid') {
- bidValue = singleGoodsBidInput.value;
- }
- selectedLabels.value.forEach((brandLabel) => {
- // 查找与当前 brandLabel 相对应的选项
- const selectedOption = dialogForm.dialogOptions.find((option) => option.label === brandLabel)
- // 获取对应的 brandId,如果没有找到则默认为空
- const brandId = selectedOption ? selectedOption.value : ''
- const refineObj = {
- type: 'c',
- classification: dialogClassification,
- classificationId: categoryId.value,
- brand: brandLabel,
- brandId: brandId, // 使用找到的 brandId
- bid: bidValue, // 添加 bid 值
- low_price: dialogPrices_low,
- high_price: dialogPrices_high,
- low_rating: ratingLow,
- high_rating: ratingHigh,
- delivery: dialogDelivery,
- deliveryText: deliveryMap[dialogDelivery],
- }
- console.log('🚀 ~ dialogFormRef.value.validate ~ refineObj-->>', refineObj)
- productOrientationTableData.value.push(refineObj)
- })
- } else {
- console.log('验证失败')
- }
- })
- }
- // 定向按钮功能
- function orientate(node, data) {
- console.log('🚀 ~ orientate ~ data-->>', data);
- const exists = productOrientationTableData.value.some(item => item.cid === data.cid);
- let bidValue = null;
- // 根据 categoryBiddingType.value 的值设置 bidValue
- if (categoryBiddingType.value === 'defaultBid') {
- bidValue = adGroupRuleForm.defaultBidInp;
- } else if (categoryBiddingType.value === 'customBid') {
- bidValue = singleGoodsBidInput.value;
- }
- if (!exists) {
- const newData = {
- type: 'c',
- classification: data.cna,
- classificationId: data.cid,
- bid: bidValue, // 将 bid 值添加到新数据中
- };
- productOrientationTableData.value.push(newData);
- }
- }
- let productTargetBidList = ref([])
- async function productTagetSave() {
- console.log('tableData', productOrientationTableData.value)
- // 检查是否存在 bid 为空的行
- const hasEmptyBid = productOrientationTableData.value.some(row => row.bid == null || row.bid === '')
- // 直接返回,不继续执行
- if (hasEmptyBid) {
- console.log('存在空的 bid,不发送请求')
- ElMessage.error('存在空的 bid,无法创建商品!')
- return
- }
- productOrientationTableData.value.forEach((row) => {
- productTargetBidList.value.push(row.bid)
- })
- console.log('productTargetBidList', productTargetBidList.value)
- productOrientationLoading.value = true
- try {
- const requestData = {
- profile_id: profile.value.profile_id,
- adGroupId: respAdGroupId.value,
- campaignId: respCampaignId.value,
- expressionList: productOrientationTableData.value,
- state: "PAUSED"
- }
- const filteredRequestData = Object.fromEntries(Object.entries(requestData).filter(([_, v]) => v != null))
- const resp = await request({
- url: '/api/ad_manage/sptargets/manual/create/',
- method: 'POST',
- data: filteredRequestData,
- })
- console.log('🚀 ~ createTargetGroup ~ resp-->>', resp)
- productOrientationLoading.value = false
- if (respAdGroupId.value) {
- ElMessage({
- message: '商品创建成功',
- type: 'success',
- })
- } else {
- ElMessage.error('商品创建失败!')
- }
- } catch (error) {
- console.error('请求失败:', error)
- }
- // 清空表格和 bid 列表
- productOrientationTableData.value = []
- productTargetBidList.value = []
- }
- // ------------------------------------------关键词定向模块------------------------------------------
- const bidType = ref('customBid')
- const bidTypeOptions = [
- // 竞价select下拉选项
- {
- value: 'suggestBid',
- label: '建议出价',
- },
- {
- value: 'customBid',
- label: '自定义出价',
- },
- {
- value: 'defaultBid',
- label: '默认出价',
- },
- ]
- const bidInput = ref('0.75')
- const keyWordsTableData = ref([]) // 关键词定向左侧表格数据
- const addedKeyWordsTableData = ref([]) // 关键词定向右侧表格数据
- const keyWordsTextarea = ref('')
- function delAllKeyWords() {
- // 删除已经添加的关键词
- addedKeyWordsTableData.value = []
- }
- function addKeyWords() {
- // 添加关键词
- if (keyWordsTextarea.value) {
- addedKeyWordsTableData.value.push({
- keyWords: keyWordsTextarea.value,
- })
- keyWordsTextarea.value = ''
- }
- }
- // ------------------------------------------否定词模块------------------------------------------
- let negativeWordsLoading = ref(false)
- let negativeList = reactive([])
- let negativeWordsTextarea = ref('')
- let NEGATIVE_PHRASE = ref(true)
- let NEGATIVE_EXACT = ref(true)
- let exactNegativeList = reactive([]) // 用于存储精确否定的数组
- let phraseNegativeList = reactive([]) // 用于存储词组否定的数组
- function addNegative() {
- const trimmedText = negativeWordsTextarea.value.trim()
- const items = trimmedText.split(/,|\n/)
- items.forEach((item) => {
- const trimmedItem = item.trim()
- if (trimmedItem) {
- let phraseEntry = '词组: ' + trimmedItem
- let exactEntry = '精确: ' + trimmedItem
- if (NEGATIVE_PHRASE.value && !negativeList.some((n) => n.negativeWords === phraseEntry)) {
- negativeList.push({ negativeWords: phraseEntry })
- phraseNegativeList.push(trimmedItem) // 添加到词组否定数组
- }
- if (NEGATIVE_EXACT.value && !negativeList.some((n) => n.negativeWords === exactEntry)) {
- negativeList.push({ negativeWords: exactEntry })
- exactNegativeList.push(trimmedItem) // 添加到精确否定数组
- }
- } else {
- console.log('有空项目,未被添加到列表中')
- }
- })
- negativeWordsTextarea.value = ''
- console.log('🚀 ~ exactNegativeList-->>', exactNegativeList)
- console.log('🚀 ~ phraseNegativeList-->>', phraseNegativeList)
- }
- function delAllNegative() {
- // negativeList.splice(0, negativeList.length)
- negativeList.length = 0
- exactNegativeList.length = 0
- phraseNegativeList.length = 0
- }
- function delSingleNegative(scope) {
- const index = negativeList.findIndex((item) => item.negativeWords === scope.row.negativeWords)
- if (index !== -1) {
- // 确定被删除的项是词组还是精确
- const isPhrase = scope.row.negativeWords.startsWith('词组: ')
- const isExact = scope.row.negativeWords.startsWith('精确: ')
- // 从 negativeList 删除
- if (negativeList.length) {
- negativeList.splice(index, 1)
- console.log(`已删除索引为 ${index} 的条目`)
- } else {
- console.log('无效的索引,无法删除条目')
- }
- // 从 exactNegativeList 或 phraseNegativeList 删除
- const trimmedItem = scope.row.negativeWords.substring(4).trim() // 从 '词组: ' 或 '精确: ' 后开始截取
- if (isPhrase) {
- const phraseIndex = phraseNegativeList.findIndex((item) => item === trimmedItem)
- if (phraseIndex !== -1) {
- phraseNegativeList.splice(phraseIndex, 1)
- }
- } else if (isExact) {
- const exactIndex = exactNegativeList.findIndex((item) => item === trimmedItem)
- if (exactIndex !== -1) {
- exactNegativeList.splice(exactIndex, 1)
- }
- }
- } else {
- console.log('无效的索引,无法删除条目')
- }
- }
- async function negativeWordsSave() {
- negativeWordsLoading.value = true
- console.log('negativeList', negativeList)
- try {
- const requestData = {
- profile_id: profile.value.profile_id,
- campaignId: respCampaignId.value,
- adGroupId: respAdGroupId.value,
- state: 'PAUSED',
- EkeywordList: exactNegativeList,
- PkeywordList: phraseNegativeList,
- }
- const filteredRequestData = Object.fromEntries(Object.entries(requestData).filter(([_, v]) => v != null))
- const resp = await request({
- url: '/api/ad_manage/sptargets/add/negative/keywords/',
- method: 'POST',
- data: filteredRequestData,
- })
- console.log('🚀 ~ negativeWordsSave ~ resp-->>', resp)
- negativeWordsLoading.value = false
- if (resp.data.negativeKeyworderror.length !== 0) {
- ElMessage({
- message: '否定词创建成功',
- type: 'success',
- })
- delAllNegative()
- } else {
- ElMessage.error('否定词创建失败!')
- }
- } catch (error) {
- console.error('请求失败:', error)
- }
- }
- // ------------------------------------------否定商品模块------------------------------------------
- let negativeGoodsLoading = ref(false)
- const tableData = negativeList
- let inputAddedNegGoods = ref([])
- function setNegativeTableData(asin = '') {
- negativeGoodsLoading.value = true
- return request({
- url: '/api/sellers/listings/all/',
- method: 'GET',
- params: {
- page: currentPage.value,
- limit: pageSize.value,
- profile_id: profile.value.profile_id,
- asin,
- },
- })
- .then((resp) => {
- negativeTableData.value = resp.data
- inputAddedNegGoods.value = resp.data
- negativeGoodsLoading.value = false
- })
- .catch((error) => {
- console.error('Error fetching data:', error)
- negativeGoodsLoading.value = false
- })
- }
- // 输入tab的textarea
- function addNegativeGoods() {
- console.log('ruleForm.negativeGoodsTextarea', ruleForm.negativeGoodsTextarea)
- loading.value = true
- setNegativeTableData(ruleForm.negativeGoodsTextarea)
- .then(() => {
- addedNegetiveTableData.value = [...addedNegetiveTableData.value, ...inputAddedNegGoods.value]
- })
- .catch((error) => {
- console.error('Error fetching data:', error)
- })
- .finally(() => {
- loading.value = false
- })
- }
- function addSingleNegativeGoods(scope) {
- const isAlreadyAdded = addedNegetiveTableData.value.some((item) => item.asin === scope.row.asin)
- if (!isAlreadyAdded) {
- addedNegetiveTableData.value.push(scope.row)
- } else {
- console.log('Item is already added.')
- }
- }
- function delAllNegativeGoods() {
- addedNegetiveTableData.value = []
- }
- function delSingleNegativeGoods(scope) {
- const index = addedNegetiveTableData.value.findIndex((item) => item.asin === scope.row.asin)
- if (index !== -1) {
- addedNegetiveTableData.value.splice(index, 1)
- console.log('Item removed successfully.')
- } else {
- console.log('Item not found.')
- }
- }
- function searchNegativeGoods(e) {
- console.log(e)
- if (e === '') {
- negativeTableData.value = []
- } else {
- setNegativeTableData(e)
- }
- }
- function handleAddedNegGoods(selection) {
- addedSels = selection
- }
- function handleNegGoodsTabs(tab: TabsPaneContext, event: Event) {
- // console.log(tab, event)
- }
- async function negativeGoodsSave() {
- console.log(addedNegetiveTableData.value)
- const asinList = addedNegetiveTableData.value.map((item) => item.asin)
- console.log('🚀 ~ negativeGoodsSave ~ asinList-->>', asinList)
- negativeGoodsLoading.value = true
- console.log('addedNegetiveTableData', addedNegetiveTableData.value)
- try {
- const requestData = {
- profile_id: profile.value.profile_id,
- campaignId: respCampaignId.value,
- adGroupId: respAdGroupId.value,
- asinList: asinList,
- matchType: 'ASIN_SAME_AS',
- state: 'PAUSED',
- }
- const filteredRequestData = Object.fromEntries(Object.entries(requestData).filter(([_, v]) => v != null))
- const resp = await request({
- url: '/api/ad_manage/sptargets/add/negative/targets/',
- method: 'POST',
- data: filteredRequestData,
- })
- console.log('🚀 ~ negativeWordsSave ~ resp-->>', resp)
- negativeGoodsLoading.value = false
- if (resp.data.success.length !== 0) {
- ElMessage({
- message: '否定商品创建成功',
- type: 'success',
- })
- delAllNegative()
- } else {
- ElMessage.error('否定商品创建失败!')
- }
- } catch (error) {
- console.error('请求失败:', error)
- }
- }
- // ------------------------------------------自定义校验模块------------------------------------------
- function checkBid(value, callback, bidField) {
- const bid = parseFloat(value)
- const budget = parseFloat(campaignRuleForm.budget)
- // 检查值是否为最多两位小数的普通数字格式
- const isNormalNumberWithTwoDecimals = /^-?\d+(\.\d{1,2})?$/.test(value)
- if (!isNormalNumberWithTwoDecimals) {
- callback(new Error('请输入数字值(最多两位小数)'))
- } else if (isNaN(bid)) {
- callback(new Error('请输入有效的数字'))
- } else if (bid < 0.02 || bid > 1000) {
- callback(new Error('值必须在0.02到1000之间'))
- } else if (bid >= budget) {
- callback(new Error('出价必须小于预算'))
- } else {
- callback()
- }
- }
- // 自定义校验规则---自动定价和按目标设置出价模块
- // function getValidationRules(fieldName) {
- // // 默认校验规则
- // const commonRules = [
- // { required: true, message: '此项为必填项', trigger: 'blur' },
- // { validator: (rule, value, callback) => checkBid(value, callback, fieldName), trigger: 'blur' },
- // ]
- // // 根据不同字段和状态返回特定的校验规则
- // switch (fieldName) {
- // case 'defaultBidInp':
- // if (ruleForm.autoRedirect === 'defaultBid') {
- // return commonRules
- // }
- // break
- // case 'similarProductsInp':
- // if (ruleForm.autoRedirect === 'targetBid' && ruleForm.similarProducts) {
- // return commonRules
- // } else if (ruleForm.similarProducts == false) {
- // ruleFormRef.value?.clearValidate(fieldName)
- // }
- // break
- // case 'relatedProductsInp':
- // if (ruleForm.autoRedirect === 'targetBid' && ruleForm.relatedProducts) {
- // return commonRules
- // } else if (ruleForm.relatedProducts == false) {
- // ruleFormRef.value?.clearValidate(fieldName)
- // }
- // break
- // case 'broadMatchInp':
- // if (ruleForm.autoRedirect === 'targetBid' && ruleForm.broadMatch) {
- // return commonRules
- // } else if (ruleForm.broadMatch == false) {
- // ruleFormRef.value?.clearValidate(fieldName)
- // }
- // break
- // case 'closeMatchInp':
- // // 仅当autoRedirect为'targetBid'且closeMatch开启时校验closeMatchInp
- // if (ruleForm.autoRedirect === 'targetBid' && ruleForm.closeMatch) {
- // return commonRules
- // } else if (ruleForm.closeMatch == false) {
- // ruleFormRef.value?.clearValidate(fieldName)
- // }
- // break
- // default:
- // return []
- // }
- // // 如果不满足上述条件,则无需校验
- // return []
- // }
- // 监听表单字段变化,根据不同字段和状态返回特定的校验规则
- // watch(
- // [() => ruleForm.autoRedirect, () => ruleForm.closeMatch, () => ruleForm.broadMatch, () => ruleForm.similarProducts, () => ruleForm.relatedProducts],
- // () => {
- // // 定义需要更新校验规则的字段
- // const fields = ['defaultBidInp', 'closeMatchInp', 'broadMatchInp', 'similarProductsInp', 'relatedProductsInp']
- // fields.forEach((field) => {
- // rules.value[field] = getValidationRules(field)
- // })
- // }
- // )
- // 修改表头样式
- const headerCellStyle = (args) => {
- if (args.rowIndex === 0) {
- return {
- backgroundColor: 'rgba(245, 245, 245, 0.9)',
- }
- }
- }
- function changeNegTableHeader(args) {
- if (args.rowIndex === 0) {
- return {
- color: '#505968',
- }
- }
- }
- function changeKeyWordsTableHeader(args) {
- if (args.rowIndex === 0) {
- return {
- color: '#505968',
- backgroundColor: 'rgba(245, 245, 245, 0.9)',
- }
- }
- }
- onMounted(() => {
- setTableData()
- // const myTest = route.query
- // console.log('myTest', myTest)
- })
- defineOptions({
- name: 'SpCreateCampaigns',
- })
- </script>
- <style lang="scss" scoped>
- ::v-deep(.el-form--default.el-form--label-top .el-form-item .el-form-item__label) {
- font-weight: 500;
- }
- .column-item .el-radio-group {
- display: inline-flex;
- font-size: 0;
- flex-direction: column;
- align-items: flex-start;
- }
- .radio-description {
- font-size: 12px;
- color: #666;
- margin-top: -18px;
- margin-left: 22px;
- }
- .radio-description-2 {
- font-size: 12px;
- color: #666;
- margin-top: -10px;
- }
- .column-margin-bottom label.el-radio.is-bordered {
- margin-bottom: 10px;
- padding: 35px;
- }
- ::v-deep(.column-margin-bottom label.el-radio.is-bordered span.el-radio__inner) {
- margin-top: -18px;
- margin-left: -15px;
- }
- .gap-items {
- display: flex;
- justify-content: flex-start;
- width: 100%;
- margin-bottom: 20px;
- }
- .gap-item {
- width: 200px;
- margin-left: 30px;
- color: #0b0d0d;
- }
- .demo-tabs > .el-tabs__content {
- padding: 52px;
- color: #6b778c;
- font-size: 32px;
- font-weight: 600;
- }
- /* 广告组商品Tab栏 */
- ::v-deep(.el-tabs__nav-scroll) {
- overflow: hidden;
- margin-left: 20px;
- }
- ::v-deep(.el-tabs__nav-wrap::after) {
- height: 2px !important;
- }
- ::v-deep(.el-table__inner-wrapper::before) {
- background-color: white;
- }
- // 表格内容边距
- div {
- & #pane-first,
- & #pane-second {
- margin: 10px;
- }
- }
- // 输入底部样式
- ::v-deep(.card-box .el-card__body) {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 12px;
- }
- .card-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .box-card {
- width: 100%;
- // margin: 10px 0 10px 10px;
- margin-right: 10px;
- }
- .single-line {
- color: rgb(30, 33, 41);
- overflow: hidden;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- white-space: pre-wrap;
- word-break: break-word;
- }
- .data-color {
- color: rgb(30, 33, 41);
- }
- .img-box {
- width: 60px;
- height: 60px;
- margin-top: 5px;
- border: 1px solid rgb(194, 199, 207);
- border-radius: 4px;
- }
- .target-group-item {
- margin-top: 15px;
- }
- .suggested-bid-item {
- margin-left: 230px;
- margin-right: 60px;
- }
- .bid-input {
- width: 200px;
- margin-left: 15px;
- }
- ::v-deep(.goods-orientation-tabs .el-tabs__nav-scroll) {
- margin-left: -20px !important;
- }
- ::v-deep(.category-tabs .el-tabs__nav) {
- margin-left: 20px;
- }
- ::v-deep(.goods-orientation-tabs #tab-1) {
- /* 商品定向Tab栏 */
- border-right: 0;
- }
- .custom-tree-node {
- /* el-tree自定义样式 */
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 14px;
- padding-right: 8px;
- }
- .dialog-head {
- /* 弹窗样式 */
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- </style>
|