123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109 |
- <style lang="scss">
- .downLoad .ant-form-item-control-wrapper {
- width: 70%;
- }
- #material-card .ant-tabs-tab {
- border: 1px solid gainsboro !important;
- }
- #material-card .ant-tabs-top-bar {
- position: relative;
- z-index: 100;
- }
- #material-card .ant-badge-count {
- top: -10px;
- }
- .detail .ant-form-item {
- margin-bottom: 10px !important;
- }
- .ant-carousel >>> .slick-slide {
- text-align: center;
- // height: 160px;
- // line-height: 160px;
- background: #364d79;
- overflow: hidden;
- }
- .ad_cover_container .ant-card-body {
- padding: 0;
- }
- .ant-carousel >>> .slick-slide h3 {
- color: #fff;
- }
- .ant-carousel >>> .custom-slick-arrow {
- width: 25px;
- height: 25px;
- font-size: 25px;
- color: #fff;
- background-color: rgba(31, 45, 61, 0.11);
- opacity: 0.3;
- }
- .ant-carousel >>> .custom-slick-arrow:before {
- display: none;
- }
- .ant-carousel >>> .custom-slick-arrow:hover {
- opacity: 0.5;
- }
- .content {
- display: flex !important;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- .slick-dots {
- bottom: 55px;
- }
- }
- .video-content {
- width: 50%;
- padding: 10px;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- justify-content: center;
- border-right: 1px solid #f2f2f2;
- }
- .cover_carousel_con .slick-dots {
- bottom: 55px;
- }
- .add-image-material .draggable-list {
- display: block !important;
- }
- </style>
- <style lang="scss" scoped>
- .tag-video {
- position: absolute;
- right: 0px;
- top: 8px;
- padding: 4px;
- border-radius: 2px;
- line-height: 16px;
- font-size: 12px;
- color: #fff;
- background-color: rgba(0, 0, 0, 0.3);
- }
- // .home-item {
- // overflow: hidden;
- // }
- @media (min-width: 1024px) {
- .home-item {
- border-style: solid;
- border-width: 1px;
- border-color: #e4e4e4;
- width: calc(50% - 10px);
- padding: 10px;
- margin-right: 10px;
- margin-bottom: 10px;
- display: flex;
- align-items: center;
- background: #fff;
- position: relative;
- z-index: 99;
- }
- }
- /*>=1024的设备*/
- // @media (min-width: 1100px) {
- // .checkbox_item_container {
- // width:70%
- // }
- // } /*>=1100的设备*/
- @media (min-width: 1600px) {
- .home-item {
- border-style: solid;
- border-width: 1px;
- border-color: #e4e4e4;
- width: calc(25% - 10px);
- padding: 10px;
- margin-right: 10px;
- margin-bottom: 10px;
- display: flex;
- align-items: center;
- background: #fff;
- position: relative;
- z-index: 99;
- }
- }
- /*>=1280的设备*/
- // @media (min-width: 1366px) {
- // }
- // @media (min-width: 1440px) {
- // }
- // @media (min-width: 1680px) {
- // }
- @media (min-width: 1920px) {
- .home-item {
- border-style: solid;
- border-width: 1px;
- border-color: #e4e4e4;
- width: calc(25% - 10px);
- padding: 10px;
- margin-right: 10px;
- margin-bottom: 10px;
- display: flex;
- align-items: center;
- background: #fff;
- position: relative;
- z-index: 99;
- cursor: pointer;
- }
- }
- .actor-photo-list {
- display: flex;
- padding-left: 0;
- li {
- width: 25%;
- margin: 10px;
- position: relative;
- height: 250px;
- border: 1px solid #f2f2f2;
- img,
- video {
- width: 100%;
- margin-top: auto;
- margin-bottom: auto;
- top: 0;
- bottom: 0;
- position: absolute;
- max-height: 250px;
- }
- }
- }
- .home-card {
- width: 100%;
- overflow: hidden;
- padding: 10px 0px;
- display: flex;
- flex-wrap: wrap;
- margin-right: -10px;
- .home-right {
- width: 100%;
- }
- .bg:after {
- content: '';
- width: 110%;
- height: 110%;
- position: absolute;
- left: -5%;
- top: -5%;
- background: inherit;
- filter: blur(10px);
- z-index: 2;
- }
- }
- .bh {
- height: 60px;
- line-height: 30px;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 2;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- }
- .bhShow {
- height: 100px;
- line-height: 25px;
- text-align: center;
- }
- .bhShow span {
- font-size: 14px;
- }
- .show-data {
- width: 50%;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- }
- a {
- font-size: 14px;
- }
- .actor-photo-list {
- display: flex;
- padding-left: 0;
- li {
- width: 25%;
- margin: 10px;
- position: relative;
- height: 250px;
- border: 1px solid #f2f2f2;
- list-style: none;
- img,
- video {
- width: 100%;
- margin-top: auto;
- margin-bottom: auto;
- top: 0;
- bottom: 0;
- position: absolute;
- max-height: 250px;
- }
- }
- }
- </style>
- <template>
- <a-card :bordered="false">
- <!-- 查询区域 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline">
- <a-row :gutter="24">
- <a-col :md="8" :sm="8">
- <!-- <a-form-item label="项目名称"> -->
- <selectTable :projectId.sync="queryParam.projectId"></selectTable>
- </a-col>
- <a-col :md="8" :sm="8">
- <a-form-item label="时间选择">
- <!-- <a-date-picker v-model="queryParam.createTime" format="YYYY-MM-DD" style="width:100%" /> -->
- <a-input placeholder="请输入查询时间" v-model="queryParam.createTime"></a-input>
- </a-form-item>
- </a-col>
- <a-col :md="8" :sm="8">
- <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
- <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
- <a-button type="primary" @click="searchRe" icon="reload" style="margin-left: 8px">重置</a-button>
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- table区域-begin -->
- <!-- <div> -->
- <!-- 操作按钮区域 -->
- <div class="table-operator" style="position:relative;z-index:100">
- <a-button
- @click="
- visible = true
- confirmLoading = false
- "
- type="primary"
- icon="plus"
- >新增</a-button
- >
- <a-button
- @click="onCheckAllChange"
- v-if="
- queryParam.projectId &&
- active == '1' &&
- (role.roleCode == 'operator' ||
- role.roleCode == 'kuaishouOperationManager' ||
- role.roleCode == 'admin' ||
- role.roleCode == 'operationAssistant' ||
- role.roleCode == 'touTiaoOperationManager')
- "
- >{{ checkAll ? '取消 ( ' + checkArr.length + ' )' : '全选' }}</a-button
- >
- <a-button
- v-if="
- queryParam.projectId &&
- active == '1' &&
- (role.roleCode == 'operator' ||
- role.roleCode == 'kuaishouOperationManager' ||
- role.roleCode == 'admin' ||
- role.roleCode == 'operationAssistant' ||
- role.roleCode == 'touTiaoOperationManager')
- "
- :disabled="checkArr.length == 0"
- @click="tongbu"
- >一键同步</a-button
- >
- </div>
- <a-tabs @change="callbackTwo" v-model="active" type="card" id="material-card">
- <a-tab-pane :tab="item.tab" v-for="item of examinelList" :key="item.value">
- <div v-if="dataSource.length > 0">
- <a-checkbox-group @change="onChangeCheck" v-model="checkArr" class="home-card">
- <div class="home-item" v-for="(items, index) in dataSource" :key="index" @click="showDetail(items)">
- <span v-if="items.excellent == 0"></span>
- <span
- v-else
- style="position:absolute;top:30px;right:-105px;display:block;width:300px;height:30px;text-align:center;line-height;30px;background:red;transform:rotate(45deg);z-index:1000"
- >优秀素材</span
- >
- <div class="home-right">
- <a-badge
- :count="checkArr.indexOf(items.id) > -1 ? checkArr.indexOf(items.id) + 1 : 0"
- :numberStyle="{ backgroundColor: '#52c41a' }"
- style="width:100%;display:flex"
- @click.stop
- >
- <span
- style="color: #999; fontSize: 16px;padding-bottom:10px;display:block;width:100%;overflow: hidden;text-overflow: ellipsis;"
- >
- {{ items.materialName }}
- </span>
- <a-icon
- type="close-circle"
- @click="deleteData(items.id)"
- v-show="active == '0'"
- v-if="items.userId == userInfo().id"
- />
- </a-badge>
- <div style="display:flex;justify-content:center;width:100%;height:200px;position:relative;">
- <!-- <video
- :src="items.url"
- @canplay="a(items)"
- style="height:200px;max-width:100%;position:absolute;z-index:10;"
- /> -->
- <div style="width: 100px;position: absolute;left: 0;z-index:1000">
- <a-tooltip placement="top">
- <template slot="title">
- <span>{{ items.kuaishouEffiType == 1 ? '快手有效视频' : '已经同步到快手平台' }}</span>
- </template>
- <img
- style="width:30px;height:30px;"
- v-if="items.kuaishouVideoIsUp == 1"
- :style="{ filter: items.kuaishouEffiType == 1 ? 'grayscale(0%)' : 'grayscale(100%)' }"
- src="./kuaishou.jpg"
- />
- </a-tooltip>
- <a-tooltip placement="top">
- <template slot="title">
- <span>{{ items.toutiaoEffiType == 1 ? '抖音有效视频' : '已经同步到抖音平台' }}</span>
- </template>
- <img
- v-if="items.toutiaoVideoIsUp == 1 && items.toutiaoEffiType == 1"
- style="width:30px;height:30px;margin-left:5px;"
- src="./douyin.jpg"
- alt=""
- />
- <img
- v-else-if="items.toutiaoVideoIsUp == 1 && items.toutiaoEffiType == 0"
- style="width:30px;height:30px;margin-left:5px;"
- src="./douyinhui.jpg"
- alt=""
- />
- </a-tooltip>
- </div>
- <a-icon
- type="fire"
- style="font-size:20px;position: absolute;right: 0;bottom:10px;z-index:1000;color:red"
- v-if="items.whetherUnaudited"
- />
- <img
- :src="items.url + '?x-oss-process=video/snapshot,t_00000,m_fast'"
- alt=""
- style="height:200px;max-width:100%;position:absolute;z-index:10;"
- />
- <!-- <img
- src="./timg.gif"
- v-if="!items.showVideo"
- alt=""
- style="height:200px;max-width:100%;position:absolute;z-index:11;"
- @click.stop
- /> -->
- </div>
- <div style="width:100%;height:1px;border-bottom:1px solid #f2f2f2;margin-top:5px"></div>
- <div v-if="active == '2'" class="bh">驳回原因:{{ items.refuseReason }}</div>
- <div
- v-if="active == '1'"
- class="bhShow"
- style="display:flex;justify-content:space-between;"
- @click.stop="showData(items)"
- >
- <div v-if="items.byteDance" class="show-data">
- <span>抖音</span>
- <span>消耗:{{ items.byteDance.cost }}</span>
- <span>封面点击:{{ items.byteDance.click }}</span>
- <span>封面展示:{{ items.byteDance.showNum }}</span>
- </div>
- <div v-else style="line-height:100px;" class="show-data">
- <span>抖音:无</span>
- </div>
- <div v-if="items.kuaiShou" class="show-data">
- <span>快手</span>
- <span>消耗:{{ items.kuaiShou.charge }}</span>
- <span>封面点击:{{ items.kuaiShou.photoClick }}</span>
- <span>封面展示:{{ items.kuaiShou.photoShow }}</span>
- </div>
- <div v-else style="line-height:100px;" class="show-data">
- <span>快手:无</span>
- </div>
- </div>
- <div
- style="width:100%;height:1px;border-bottom:1px solid #f2f2f2;margin-top:5px"
- v-if="active != '0'"
- ></div>
- <span style="color: black; fontSize: 16px;padding-top:10px;display:block;width:100%" @click.stop>
- {{ items.createTime | getDate }}
- <a
- href="javascript:;"
- style="margin-left:20px"
- @click="edit(items, '2')"
- v-show="active == '2'"
- v-if="items.userId == userInfo().id"
- >
- 修改</a
- >
- <!-- <a
- href="javascript:;"
- style="margin-left:20px"
- @click="edit(items, '2')"
- v-show="active == '0' || active == '1'"
- v-if="
- role.roleCode == 'operator' ||
- role.roleCode == 'kuaishouOperationManager' ||
- role.roleCode == 'admin'
- "
- >
- 驳回</a
- > -->
- <a-popconfirm
- @confirm="okEditShow(items, '2')"
- v-show="active != '2'"
- v-if="
- role.roleCode == 'operator' ||
- role.roleCode == 'kuaishouOperationManager' ||
- role.roleCode == 'admin' ||
- role.roleCode == 'operationAssistant' ||
- role.roleCode == 'touTiaoOperationManager'
- "
- >
- <div slot="title">
- <div>
- 驳回原因:
- <a-textarea
- placeholder="请输入原因"
- v-model="refuseReason"
- :autosize="{ minRows: 3, maxRows: 10 }"
- />
- </div>
- <div>
- 截图:
- <upload-to-ali
- v-model="refuseFile"
- :customDomain="customDomain"
- multiple
- preview
- :region="region"
- :bucket="bucket"
- :accept="acceptImage"
- :max="10"
- :size="1024000"
- :accessKeyId="accessKeyId"
- :accessKeySecret="accessKeySecret"
- :dir="dirImg"
- ></upload-to-ali>
- </div>
- </div>
- <a href="javascript:;" style="margin-left:20px">驳回</a>
- </a-popconfirm>
- <a-popconfirm
- @confirm="okEditShow(items, '1')"
- v-show="active != '1'"
- v-if="
- role.roleCode == 'operator' ||
- role.roleCode == 'kuaishouOperationManager' ||
- role.roleCode == 'admin' ||
- role.roleCode == 'operationAssistant' ||
- role.roleCode == 'touTiaoOperationManager'
- "
- >
- <div slot="title">
- <div>
- 广告语:
- <a-textarea
- placeholder="请输入"
- v-model="refuseReason"
- :autosize="{ minRows: 3, maxRows: 10 }"
- />
- </div>
- </div>
- <a
- href="javascript:;"
- style="margin-left:20px"
- v-show="active != '1'"
- v-if="
- role.roleCode == 'operator' ||
- role.roleCode == 'kuaishouOperationManager' ||
- role.roleCode == 'admin' ||
- role.roleCode == 'operationAssistant' ||
- role.roleCode == 'touTiaoOperationManager'
- "
- >
- 通过审核</a
- >
- </a-popconfirm>
- <a
- v-if="role.roleCode == 'plane' || role.roleCode == 'admin'"
- style="margin-left:20px"
- @click="addImage(items)"
- >添加封面</a
- >
- <a-checkbox :value="items.id" style="float:right" v-show="active == '1'"></a-checkbox>
- </span>
- </div>
- </div>
- </a-checkbox-group>
- <a-pagination
- size="small"
- :showTotal="ipagination.showTotal"
- style="float:right"
- v-if="dataSource.length > 0"
- showQuickJumper
- :pageSize.sync="ipagination.pageSize"
- :total="ipagination.total"
- v-model="ipagination.current"
- @change="getDataSource"
- />
- </div>
- <div v-else style="width:100%;height:400px;display:flex;justify-content: center;align-items: center;">
- <a-empty />
- </div>
- </a-tab-pane>
- </a-tabs>
- <a-modal title="封面上传" @cancel="closeImage" @afterClose="closeImage" v-model="addImageVisible">
- <template slot="footer">
- <a-button key="back" @click="closeImage">取消</a-button>
- <a-button key="submit" type="primary" @click="handleOkImage">
- 确定
- </a-button>
- </template>
- <a-form-item label="" class="add-image-material">
- <upload-to-ali
- style="width:100%"
- v-model="urlListImage.url"
- :customDomain="customDomain"
- :multiple="true"
- preview
- :region="region"
- :bucket="bucket"
- :accept="acceptImage"
- :max="10"
- :size="1024000"
- :accessKeyId="accessKeyId"
- :accessKeySecret="accessKeySecret"
- :before-upload="fileWater"
- :dir="dirImg"
- @loaded="overUploadImage"
- ></upload-to-ali>
- <span v-if="material.filter(item => item == false).length > 0 && urlListImage.url.length > 0" style="color:red"
- >上传素材的尺寸不符,请修改(<span v-for="(item, index) of material" :key="index" v-show="!item"
- >第{{ index + 1 }}张</span
- >出错)</span
- >
- <span
- v-else-if="urlListImage.url.length > 0 && material.filter(item => item == false).length == 0"
- style="color:green"
- >上传成功</span
- >
- </a-form-item>
- </a-modal>
- <a-modal title="数据详情" v-model="showDataBool" :footer="null">
- <div class="bhShow" style="display:flex;justify-content:space-between;height:400px">
- <div v-if="douyinData" class="show-data">
- <span style="color:black;font-size:18px;text-align:center;width:100%">抖音</span>
- <span>消耗:{{ douyinData.cost }}</span>
- <span>封面点击:{{ douyinData.click }}</span>
- <span>封面展示:{{ douyinData.showNum }}</span>
- <span>激活:{{ douyinData.active }}</span>
- <span>转化量:{{ douyinData.convertNum }}</span>
- <span>表单提交:{{ douyinData.form }}</span>
- <span>下载注册:{{ douyinData.register }}</span>
- <span>视频总播放:{{ douyinData.totalPlay }}</span>
- <span>视频有效播放:{{ douyinData.validPlay }}</span>
- </div>
- <div v-if="kuaishouData" class="show-data">
- <span style="color:black;font-size:18px;text-align:center;width:100%">快手</span>
- <span>消耗:{{ kuaishouData.charge }}</span>
- <span>封面点击:{{ kuaishouData.photoClick }}</span>
- <span>封面展示:{{ kuaishouData.photoShow }}</span>
- <span>素材曝光数:{{ kuaishouData.aclick }}</span>
- <span>激活数:{{ kuaishouData.activation }}</span>
- <span>行为数:{{ kuaishouData.bclick }}</span>
- <span>表单提交数:{{ kuaishouData.formCount }}</span>
- </div>
- </div>
- </a-modal>
- <a-modal title="添加素材" v-model="visible" @cancel="close" @afterClose="close" :maskClosable="false" :width="800">
- <template slot="footer">
- <a-button key="back" @click="close">取消</a-button>
- <a-button key="submit" type="primary" :disabled="!confirmLoading" @click="handleOk">
- 确定
- </a-button>
- </template>
- <a-form :form="form">
- <a-form-item :label-col="labelCol" :wrapper-col="wrapperCol" label="项目选择">
- <!-- <selectTable :projectId.sync="projectId" /> -->
- <a-select
- v-decorator="[
- 'projectId', // 给表单赋值或拉取表单时,该input对应的key
- { rules: [{ required: true, message: '请选择项目!' }] }
- ]"
- @change="getProjectId"
- showSearch
- optionFilterProp="children"
- :filterOption="filterOption"
- >
- <a-select-option :value="item.projectId" v-for="item of dataElse" :key="item.id">
- {{ item.projectName }} {{
- item.mediaId == '1' ? '头条' : '快手'
- }} {{ item.advertiserName }}
- </a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item :label-col="labelCol" :wrapper-col="wrapperCol" label="视频素材上传" v-if="getData('projectId')">
- <upload-to-ali
- v-model="urlList.url"
- :customDomain="customDomain"
- preview
- :region="region"
- :bucket="bucket"
- :accept="acceptVideo"
- :max="10"
- :size="1024000"
- :accessKeyId="accessKeyId"
- :accessKeySecret="accessKeySecret"
- :before-upload="file"
- :dir="dirVideo"
- @loaded="overUpload"
- >
- </upload-to-ali>
- <span v-if="repeat" style="color:red">
- 此素材重复,请重新选择上传
- </span>
- <span v-if="confirmLoading && urlList.url != ''" style="color:green">
- 上传成功
- </span>
- </a-form-item>
- <a-form-item
- :label-col="labelCol"
- :wrapper-col="wrapperCol"
- label="封面上传"
- class="add-image-material"
- v-if="getData('projectId')"
- >
- <upload-to-ali
- style="width:160%"
- v-model="urlListImage.url"
- :customDomain="customDomain"
- :multiple="true"
- preview
- :region="region"
- :bucket="bucket"
- :accept="acceptImage"
- :max="10"
- :size="1024000"
- :accessKeyId="accessKeyId"
- :accessKeySecret="accessKeySecret"
- :before-upload="fileWater"
- :dir="dirImg"
- @loaded="overUploadImage"
- ></upload-to-ali>
- <span
- v-if="material.filter(item => item == false).length > 0 && urlListImage.url.length > 0"
- style="color:red"
- >上传素材的尺寸不符,请修改(<span v-for="(item, index) of material" :key="index" v-show="!item"
- >第{{ index + 1 }}张</span
- >出错)</span
- >
- <span
- v-else-if="urlListImage.url.length > 0 && material.filter(item => item == false).length == 0"
- style="color:green"
- >上传成功</span
- >
- </a-form-item>
- <div>
- <a-form-item :label-col="labelCol" :wrapper-col="wrapperCol" label="策划" v-if="activeKey == 'video'">
- <a-select
- v-decorator="[
- 'planId', // 给表单赋值或拉取表单时,该input对应的key
- { rules: [{ required: true, message: '请选择策划!' }] }
- ]"
- >
- <a-select-option :value="item.userId" v-for="item of ascription.planId" :key="item.userId">
- {{ item.userName }}
- </a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item :label-col="labelCol" :wrapper-col="wrapperCol" label="拍摄" v-if="activeKey == 'video'">
- <a-select
- v-decorator="[
- 'shotId' // 给表单赋值或拉取表单时,该input对应的key
- ]"
- >
- <a-select-option :value="item.userId" v-for="item of ascription.shotId" :key="item.userId">
- {{ item.userName }}
- </a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item :label-col="labelCol" :wrapper-col="wrapperCol" label="剪辑">
- <a-select
- v-decorator="[
- 'clipId', // 给表单赋值或拉取表单时,该input对应的key
- { rules: [{ required: true, message: '请选择剪辑!' }] }
- ]"
- >
- <a-select-option :value="item.userId" v-for="item of ascription.clipId" :key="item.userId">
- {{ item.userName }}
- </a-select-option>
- </a-select>
- </a-form-item>
- </div>
- <a-form-item
- :label-col="labelCol"
- :wrapper-col="{
- xs: { span: 24 },
- sm: { span: 18 }
- }"
- label="标签"
- >
- <template v-for="(tag, index) in tags">
- <a-tooltip v-if="tag.length > 20" :key="tag" :title="tag">
- <a-tag :key="tag" :closable="index !== 0" :afterClose="() => handleClose(tag)">
- {{ `${tag.slice(0, 20)}...` }}
- </a-tag>
- </a-tooltip>
- <a-tag v-else :key="tag" :closable="true" :afterClose="() => handleClose(tag)">
- {{ tag }}
- </a-tag>
- </template>
- <a-input
- v-if="inputVisible"
- ref="input"
- type="text"
- size="small"
- :style="{ width: '78px' }"
- :value="inputValue"
- @change="handleInputChange"
- @blur="handleInputConfirm"
- @keyup.enter="handleInputConfirm"
- />
- <a-tag v-else @click="showInput" style="background: #fff; borderStyle: dashed;">
- <a-icon type="plus" /> New Tag
- </a-tag>
- </a-form-item>
- <a-form-item
- :label-col="labelCol"
- :wrapper-col="{
- xs: { span: 24 },
- sm: { span: 12 }
- }"
- label="描述"
- >
- <a-textarea
- placeholder="请输入描述"
- v-decorator="[
- 'materialDescribe' // 给表单赋值或拉取表单时,该input对应的key
- ]"
- :autosize="{ minRows: 3, maxRows: 10 }"
- />
- </a-form-item>
- </a-form>
- </a-modal>
- <a-modal title="素材详情" v-model="visibleDetail" width="70%" :footer="null">
- <div style="width:100%;height:35px">
- <a-button type="primary" @click="setSuccess" style="float:right">
- {{ excellent == 0 ? '标记为优秀素材' : '取消标记' }}
- </a-button>
- </div>
- <div style="display:flex;height:700px">
- <div
- class="video-content"
- style="width:50%;padding:10px;box-sizing:border-box;display:flex;justify-content:center;border-right:1px solid #f2f2f2"
- >
- <video class="video" :src="showUrl" controls="controls" style="height:50%" controlsList="nodownload">
- 您的浏览器不支持 video 标签。
- </video>
- <div class="downLoad" style="height:50%;overflow:auto">
- <a-button @click="onCheckAllImageChange" v-if="model.length > 0">{{
- checkAllImage ? '取消 ( ' + checkArrImage.length + ' )' : '全选'
- }}</a-button>
- <ul class="actor-photo-list" :style="{ width: model.length>4?25 * model.length + '%':'100%' }" v-if="model.length > 0">
- <a-checkbox-group
- v-model="checkArrImage"
- style="width:100%; display: flex;padding-left: 0;"
- @change="onChangeCheckImage"
- >
- <li v-for="(item, index) of model" :key="index">
- <a-checkbox :value="item.id" style="position:absolute;z-index: 100"></a-checkbox
- ><img class="video" :src="item.url" @click="coverPreviewShowModal(item, index)" />
- <span
- class="tag-video"
- :style="{
- backgroundColor:
- item.status == 0 ? 'rgba(0, 0, 0)' : item.status == 1 ? 'rgba(0, 180, 100)' : 'red'
- }"
- >{{ item.status == 0 ? '未审核' : item.status == 1 ? '已批准' : '已驳回' }}</span
- >
- </li>
- </a-checkbox-group>
- </ul>
- <div v-else style="height:100%;display:flex;justify-content: center;align-items: center;">
- <a-empty />
- </div>
- </div>
- </div>
- <a-modal title="图片预览" v-model="coverPreviewVisible" :footer="null">
- <a-carousel arrows class="cover_carousel_con">
- <div v-for="(item, index) in modelNew" :key="index" class="content">
- <img :src="item.url" :width="300" />
- <div style="margin-top:10px">
- <a-button type="primary" @click="editImage(item, '1')">
- 通过审核
- </a-button>
- <a-divider type="vertical" />
- <a-popconfirm @confirm="editImage(item, '2')">
- <div slot="title">
- <div>
- 驳回原因:
- <a-textarea
- placeholder="请输入原因"
- v-model="refuseReasonImage"
- :autosize="{ minRows: 3, maxRows: 10 }"
- />
- </div>
- </div>
- <a-button type="primary">驳回</a-button>
- <!-- @click="edit(null, '0', '2')" -->
- </a-popconfirm>
- </div>
- </div>
- <a-icon
- type="left-circle"
- slot="prevArrow"
- slot-scope
- style="left: 10px;zIndex: 9;font-size:30px;color:black"
- />
- <a-icon
- type="right-circle"
- slot="nextArrow"
- slot-scope
- style="right: 10px;zIndex: 9;font-size:30px;color:black"
- />
- </a-carousel>
- </a-modal>
- <div style="flex:3;padding:10px;box-sizing:border-box;">
- <a-form v-if="detail" class="detail ant-advanced-search-form" layout="inline">
- <div v-if="detail.parameter" style="display:flex;">
- <a-form-item label="视频时长" v-if="detail.parameter.second" style="flex:1">
- {{ detail.parameter.second }}秒
- </a-form-item>
- <a-form-item label="尺寸" style="flex:1" v-if="detail.parameter.width">
- {{ detail.parameter.width }}*{{ detail.parameter.height }}
- </a-form-item>
- <a-form-item label="大小" style="flex:1" v-if="detail.parameter.size">
- {{ detail.parameter.size }}
- </a-form-item>
- </div>
- <div v-if="detail.ascription" style="display:flex;">
- <a-form-item label="策划" style="flex:1">
- {{ detail.ascription.planName }}
- </a-form-item>
- <a-form-item label="拍摄" style="flex:1">
- {{ detail.ascription.shotName }}
- </a-form-item>
- <a-form-item label="剪辑" v-if="detail.ascription.clipName" style="flex:1">
- {{ detail.ascription.clipName }}
- </a-form-item>
- </div>
- <div>
- <a-form-item label="标签" v-if="detail.tag">
- <a-tag v-for="(item, index) of detail.tag" :key="index">{{ item }}</a-tag>
- </a-form-item>
- </div>
- <div>
- <a-form-item label="无水印素材下载" v-if="name">
- <a-button type="primary" @click="downloadByBlobShowUrl">下载</a-button>
- </a-form-item>
- </div>
- <div>
- <a-form-item label="水印素材下载" v-if="name">
- <a-button type="primary" @click="downloadByBlob" v-if="showUrlWater">下载</a-button>
- <span v-else>水印素材生成中,请一分钟后刷新</span>
- </a-form-item>
- </div>
- <div>
- <a-form-item label="水印素材链接" v-if="showUrlWater">
- <a-input v-model="showUrlWater" type="text" readonly />
- </a-form-item>
- </div>
- <div style="width:100%" class="downLoad">
- <a-form-item label="生成水印素材" style="width:100%">
- <a-select :defaultValue="4" v-model="size" style="width:80%">
- <a-select-option :value="item.id" :key="item.id" v-for="item of sizeType">{{
- item.name
- }}</a-select-option>
- </a-select>
- <a-button type="primary" @click="getWater">生成</a-button>
- </a-form-item>
- </div>
- <div>
- <a-form-item label="审核人" v-if="active == '2' && detail.auditorName">
- {{ detail.auditorName }}
- </a-form-item>
- </div>
- <div>
- <a-form-item label="广告语" v-if="active == '1'">
- {{ creativeCopywriter ? creativeCopywriter : '无广告语' }}
- </a-form-item>
- </div>
- <div>
- <a-form-item label="驳回原因" v-if="active == '2'">
- {{ refuseReason ? refuseReason : '无原因' }}
- </a-form-item>
- </div>
- <div>
- <a-form-item label="截图" v-if="active == '2'">
- <upload-to-ali
- v-if="refuseFile"
- disabled
- v-model="refuseFile"
- :customDomain="customDomain"
- multiple
- preview
- :region="region"
- :bucket="bucket"
- :accept="acceptImage"
- :max="10"
- :size="1024000"
- :accessKeyId="accessKeyId"
- :accessKeySecret="accessKeySecret"
- :dir="dirImg"
- ></upload-to-ali>
- <div v-else>无截图</div>
- </a-form-item>
- </div>
- <div>
- <a-form-item
- label="视频审核"
- v-if="
- active != '2' &&
- (role.roleCode == 'operator' ||
- role.roleCode == 'kuaishouOperationManager' ||
- role.roleCode == 'admin' ||
- role.roleCode == 'operationAssistant' ||
- role.roleCode == 'touTiaoOperationManager')
- "
- >
- <a-popconfirm
- @confirm="edit(null, '0', '1')"
- v-show="active != '1'"
- v-if="
- role.roleCode == 'operator' ||
- role.roleCode == 'kuaishouOperationManager' ||
- role.roleCode == 'admin' ||
- role.roleCode == 'operationAssistant' ||
- role.roleCode == 'touTiaoOperationManager'
- "
- >
- <div slot="title">
- <div>
- 广告语:
- <a-textarea placeholder="请输入" v-model="refuseReason" :autosize="{ minRows: 3, maxRows: 10 }" />
- </div>
- </div>
- <a-button type="primary" v-if="active == '0'" style="margin-right:10px">通过审核</a-button>
- </a-popconfirm>
- <a-popconfirm @confirm="okEdit" v-show="active != '2'">
- <div slot="title">
- <div>
- 驳回原因:
- <a-textarea
- placeholder="请输入原因"
- v-model="refuseReason"
- :autosize="{ minRows: 3, maxRows: 10 }"
- />
- </div>
- <div>
- 截图:
- <upload-to-ali
- v-model="refuseFile"
- :customDomain="customDomain"
- multiple
- preview
- :region="region"
- :bucket="bucket"
- :accept="acceptImage"
- :max="10"
- :size="1024000"
- :accessKeyId="accessKeyId"
- :accessKeySecret="accessKeySecret"
- :dir="dirImg"
- ></upload-to-ali>
- </div>
- </div>
- <a-button type="primary" v-show="active != '2'">驳回</a-button>
- <!-- @click="edit(null, '0', '2')" -->
- </a-popconfirm>
- </a-form-item>
- </div>
- <div>
- <a-form-item label="封面审核" style="width:120%">
- <a-button type="primary" :disabled="checkArrImage.length == 0" @click="editImageAll('1')"
- >通过审核</a-button
- >
- <a-popconfirm @confirm="editImageAll('2')" v-show="active != '2'">
- <div slot="title">
- <div>
- 驳回原因:
- <a-textarea
- placeholder="请输入原因"
- v-model="refuseReasonImage"
- :autosize="{ minRows: 3, maxRows: 10 }"
- />
- </div>
- </div>
- <a-button type="primary" :disabled="checkArrImage.length != 1" style="margin-left:10px"
- >驳回</a-button
- >
- <!-- @click="edit(null, '0', '2')" -->
- </a-popconfirm>
- </a-form-item>
- </div>
- </a-form>
- </div>
- </div>
- </a-modal>
- <account-check ref="check" @synchro="implement"></account-check>
- </a-card>
- </template>
- <script>
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- import JEllipsis from '@/components/jeecg/JEllipsis'
- import UploadToAli from '@femessage/upload-to-ali'
- import { fileCheck, fileInsertV2, fileEdit, fileCheckImage } from '@/api/actor'
- import { getAction, postAction, postFile, deleteAction, putAction } from '@/api/manage'
- import qs from 'qs'
- import { mapGetters } from 'vuex'
- import moment from 'moment'
- import selectTable from '@/views/modules/Statistics/components/selecTable.vue'
- import BMF from 'browser-md5-file'
- import { stopOtherVideo, closeAllVideoFun } from '@/utils/videoControl'
- import accountCheck from './accountCheck'
- export default {
- name: 'YardList',
- mixins: [JeecgListMixin],
- components: {
- JEllipsis,
- UploadToAli,
- accountCheck,
- selectTable
- },
- data() {
- return {
- coverPreviewVisible: false,
- model: [],
- modelNew: [],
- goodsColumns: [
- {
- title: '封面预览',
- // dataIndex: 'coverUrl',
- // key: 'coverUrl',
- dataIndex: 'url',
- align: 'center',
- scopedSlots: { customRender: 'url' }
- },
- {
- title: '审核',
- align: 'center',
- dataIndex: 'action',
- width: 100,
- scopedSlots: { customRender: 'action' }
- }
- ],
- addImageVisible: false,
- addImageData: null,
- projectId: '',
- inputVisible: false,
- inputValue: '',
- labelCol: {
- xs: {
- span: 24
- },
- sm: {
- span: 5
- }
- },
- wrapperCol: {
- xs: {
- span: 24
- },
- sm: {
- span: 12
- }
- },
- queryParam: {},
- dataElse: [],
- ascription: {
- clipId: [], //剪辑人id
- shotId: [], //拍摄人id
- planId: [], //策划id
- planeId: [] //平面id
- },
- show: true,
- visible: false,
- visibleDetail: false,
- confirmLoading: false,
- activeKey: 'video',
- active: '0',
- examinelList: [
- {
- value: '0',
- tab: '未审核'
- },
- {
- value: '1',
- tab: '已批准'
- },
- {
- value: '2',
- tab: '已驳回'
- }
- ],
- // 表头
- columns: [],
- urlList: {
- url: '',
- md5: '',
- name: ''
- },
- urlListImage: {
- url: [],
- md5: [],
- name: [],
- size: []
- },
- watermarkUrl: {
- url: '',
- md5: '',
- name: ''
- },
- url: {
- list: '/ctop/materialInfo/list'
- },
- detail: false,
- form: this.$form.createForm(this),
- tags: [],
- refuseFile: [],
- refuseReason: '',
- refuseReasonImage: '',
- creativeCopywriter: '',
- customDomain: '',
- region: 'oss-cn-beijing',
- bucket: 'ctop-media',
- acceptVideo: 'video/mpeg,video/mp4',
- acceptImage: 'image/jpeg,image/jpg,image/png',
- accessKeyId: 'LTAIbNbqWzSOklQV',
- accessKeySecret: '1rkPz7JNoXk8sJevPaeYHWqfkQXBGh',
- checkArr: [],
- checkAll: false,
- checkArrImage: [],
- checkAllImage: false,
- showUrl: '',
- showUrlWater: '',
- materialName: '',
- materialDescribe: '',
- name: '',
- detail: null,
- add: true,
- id: '',
- role: {
- roleCode: '',
- roleName: ''
- },
- key: '0',
- mediaId: null,
- sizeType: [],
- size: null,
- repeat: false,
- excellent: 0,
- code: '',
- material: [],
- imageArrList: [],
- showDataBool: false,
- kuaishouData: null,
- douyinData: null
- }
- },
- filters: {
- getDate(value) {
- let date = new Date(value)
- let y = date.getFullYear()
- let MM = date.getMonth() + 1
- MM = MM < 10 ? '0' + MM : MM
- let d = date.getDate()
- d = d < 10 ? '0' + d : d
- return y + '-' + MM + '-' + d
- }
- },
- computed: {
- dirImg() {
- let date = new Date()
- let y = date.getFullYear()
- let MM = date.getMonth() + 1
- MM = MM < 10 ? '0' + MM : MM
- let d = date.getDate()
- d = d < 10 ? '0' + d : d
- return 'image/' + y + '-' + MM + '-' + d + '/'
- },
- dirVideo() {
- let date = new Date()
- let y = date.getFullYear()
- let MM = date.getMonth() + 1
- MM = MM < 10 ? '0' + MM : MM
- let d = date.getDate()
- d = d < 10 ? '0' + d : d
- return 'video/' + y + '-' + MM + '-' + d + '/'
- }
- },
- created() {
- this.queryParam.type = 'VIDEO'
- this.queryParam.userId = this.userInfo().id
- this.queryParam.status = localStorage.getItem('key') ? localStorage.getItem('key') : '0'
- this.active = localStorage.getItem('key') ? localStorage.getItem('key') : '0'
- // this.queryParam.status = key
- this.ipagination.pageSize = 8
- this.getParticipateList()
- // /sys/user/getRoleInfo
- getAction('/sys/user/getRoleInfo', {
- userId: this.userInfo().id
- }).then(res => {
- this.role = res
- })
- getAction('/ctop/videoWatermarkTemplate/list').then(res => {
- if (res.success) {
- this.sizeType = res.result.records
- }
- })
- },
- updated() {
- stopOtherVideo()
- },
- watch: {
- $route: function(n, o) {
- if (n.path == '/modules/material/videoMaterial') {
- this.queryParam.userId = this.userInfo().id
- this.queryParam.status = localStorage.getItem('key') ? localStorage.getItem('key') : '0'
- this.active = localStorage.getItem('key') ? localStorage.getItem('key') : '0'
- this.loadData()
- }
- },
- 'queryParam.projectId': function(n, o) {
- if (n != '') {
- this.getList(n)
- }
- }
- },
- methods: {
- editImage(item, status) {
- var params = {}
- params.id = item.id
- params.status = status
- params.auditorId = this.userInfo().id
- if (status == '1') {
- } else {
- params.refuseReason = this.refuseReasonImage
- }
- var updateArr = [params]
- putAction('/ctop/MaterialImageInfo/batchEdit', updateArr).then(res => {
- console.log(res)
- if (res.success) {
- // this.coverPreviewVisible = false
- getAction('/ctop/MaterialImageInfo/list', {
- videoId: this.id
- }).then(res => {
- if (res.success) {
- this.model = res.result.map((item, index) => {
- return {
- ...item,
- key: index
- }
- })
- this.modelNew = this.model.filter((item, index) => {
- return item.status == '0'
- })
- if (this.modelNew.length == 0) {
- this.coverPreviewVisible = false
- }
- }
- })
- this.loadData()
- } else {
- this.$message.error(res.message)
- }
- })
- },
- editImageAll(status) {
- this.checkArrImage
- // var params = {}
- // params.id = item.id
- // params.status = status
- var updateArr = []
- if (status == '1') {
- updateArr = this.checkArrImage.map(item => {
- return { id: item, status: status }
- })
- } else {
- updateArr = this.checkArrImage.map(item => {
- return { id: item, status: status, refuseReason: this.refuseReasonImage }
- })
- }
- putAction('/ctop/MaterialImageInfo/batchEdit', updateArr).then(res => {
- if (res.success) {
- // this.coverPreviewVisible = false
- getAction('/ctop/MaterialImageInfo/list', {
- videoId: this.id
- }).then(res => {
- if (res.success) {
- this.checkArrImage = []
- this.checkAllImage = false
- this.model = res.result.map((item, index) => {
- return {
- ...item,
- key: index
- }
- })
- }
- })
- this.loadData()
- } else {
- this.$message.error(res.message)
- }
- })
- },
- showData(item) {
- if (item.byteDance || item.kuaiShou) {
- this.showDataBool = true
- this.kuaishouData = item.kuaiShou
- this.douyinData = item.byteDance
- } else {
- this.$message.error('抖音和快手都无数据')
- return
- }
- },
- setSuccess() {
- var params = {}
- params.id = this.code
- params.excellent = this.excellent == 1 ? 0 : 1
- getAction('/ctop/materialInfo/excellent/set', params).then(res => {
- if (res.success) {
- this.excellent = this.excellent == 1 ? 0 : 1
- this.loadData(this.ipagination.current)
- }
- })
- },
- getData(className) {
- return this.form.getFieldValue(className)
- },
- deleteData(id) {
- deleteAction('/ctop/materialInfo/delete', {
- id: id
- }).then(res => {
- if (res.success) {
- this.$message.success('删除成功')
- this.loadData()
- } else {
- this.$message.error(res.message)
- }
- })
- },
- filterOption(input, option) {
- return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
- },
- moment,
- a(item) {
- item.showVideo = true
- },
- tongbu() {
- this.$refs.check.getData('/ctop/userAllocation/getAccountList', {
- userId: this.userInfo().id,
- projectId: this.queryParam.projectId
- })
- },
- implement(data) {
- var params = {}
- params.mediaId = this.mediaId
- params.materialArray = JSON.stringify(this.checkArr)
- params.accountArray = JSON.stringify(data)
- postAction('/ctop/materialUpload/uploadAccount', params).then(res => {
- if (res.code == 0) {
- this.checkArr = []
- this.checkAll = false
- }
- })
- // /ctop/materialUpload/uploadAccount
- },
- downloadByBlobShowUrl() {
- fetch(this.showUrl)
- .then(res => res.blob())
- .then(blob => {
- const a = document.createElement('a')
- document.body.appendChild(a)
- a.style.display = 'none'
- // 使用获取到的blob对象创建的url
- const url = window.URL.createObjectURL(blob)
- a.href = url
- // 指定下载的文件名
- a.download = this.materialName
- a.click()
- document.body.removeChild(a)
- // 移除blob对象的url
- window.URL.revokeObjectURL(url)
- })
- },
- downloadByBlob() {
- fetch(this.showUrlWater)
- .then(res => res.blob())
- .then(blob => {
- const a = document.createElement('a')
- document.body.appendChild(a)
- a.style.display = 'none'
- // 使用获取到的blob对象创建的url
- const url = window.URL.createObjectURL(blob)
- a.href = url
- // 指定下载的文件名
- a.download = this.name
- a.click()
- document.body.removeChild(a)
- // 移除blob对象的url
- window.URL.revokeObjectURL(url)
- })
- },
- download(href, name) {
- let eleLink = document.createElement('a')
- eleLink.download = name
- eleLink.href = href
- eleLink.click()
- eleLink.remove()
- },
- ...mapGetters(['nickname', 'avatar', 'userInfo']),
- onCheckAllChange() {
- if (this.checkAll) {
- this.checkArr = []
- } else {
- this.checkArr = this.dataSource.map(item => {
- return item.id
- })
- }
- this.checkAll = !this.checkAll
- },
- onCheckAllImageChange() {
- if (this.checkAllImage) {
- this.checkArrImage = []
- } else {
- this.checkArrImage = this.model.map(item => {
- return item.id
- })
- }
- this.checkAllImage = !this.checkAllImage
- },
- searchRe() {
- this.queryParam = {
- type: 'VIDEO',
- userId: this.userInfo().id,
- status: this.active
- }
- this.loadData(1)
- },
- getList(value) {
- if (value) {
- this.mediaId = this.dataElse.filter(item => {
- if (value == item.projectId) {
- return item
- }
- })[0].mediaId
- }
- this.loadData()
- },
- onChangeCheckImage(checkedList) {
- if (checkedList.length == 0) {
- this.checkAllImage = false
- }
- },
- onChangeCheck(checkedList) {
- if (checkedList.length == 0) {
- this.checkAll = false
- }
- },
- handleClose(removedTag) {
- const tags = this.tags.filter(tag => tag !== removedTag)
- this.tags = tags
- },
- showInput() {
- this.inputVisible = true
- this.$nextTick(function() {
- this.$refs.input.focus()
- })
- },
- handleInputChange(e) {
- this.inputValue = e.target.value
- },
- handleInputConfirm() {
- const inputValue = this.inputValue
- let tags = this.tags
- if (inputValue && tags.indexOf(inputValue) === -1) {
- tags = [...tags, inputValue]
- }
- Object.assign(this, {
- tags,
- inputVisible: false,
- inputValue: ''
- })
- },
- getWater() {
- var params = qs.stringify({
- id: this.id,
- watermarkTemplateId: this.size
- })
- postAction('/ctop/materialInfo/watermark', params).then(res => {
- if (res.success) {
- // getAction("/ctop/videoWatermarkTask/list").then(res=>{
- // console.log(res)
- // })
- this.$message.success('水印素材生成中')
- this.visibleDetail = false
- closeAllVideoFun()
- this.loadData()
- }
- })
- },
- showDetail(item) {
- this.visibleDetail = true
- this.showUrl = item.url
- this.id = item.id
- this.code = item.code
- this.excellent = item.excellent
- if (this.active == '2') {
- this.refuseReason = item.refuseReason
- this.refuseFile = item.refuseFile ? JSON.parse(item.refuseFile) : null
- } else if (this.active == '1') {
- this.creativeCopywriter = item.creativeCopywriter
- this.refuseReason = ''
- this.refuseFile = []
- } else {
- this.refuseReason = ''
- this.refuseFile = []
- }
- getAction('/ctop/materialInfo/getDetail', {
- materialId: item.id
- }).then(res => {
- this.detail = res
- this.size =
- res.parameter.width == '1080' ? 3 : res.parameter.width == '1920' ? 1 : res.parameter.width == '1280' ? 2 : 4
- })
- getAction('/ctop/materialInfo/queryById', {
- id: item.id
- }).then(res => {
- if (res.success) {
- this.showUrlWater = res.result.watermarkUrl
- this.name = res.result.watermarkCode
- this.materialName = res.result.materialName
- } else {
- this.showUrlWater = null
- this.name = null
- }
- })
- getAction('/ctop/MaterialImageInfo/list', {
- videoId: item.id
- }).then(res => {
- console.log(res)
- if (res.success) {
- this.model = res.result.map((item, index) => {
- return {
- ...item,
- key: index
- }
- })
- }
- })
- },
- coverPreviewShowModal(item, index) {
- console.log(this.model)
- this.modelNew = this.model.filter(items => {
- return items.status == 0
- })
- if (this.modelNew.length > 0) {
- this.coverPreviewVisible = true
- }
- },
- okEditShow(item, editStatus) {
- if (editStatus == '2') {
- var params = {}
- params.id = item.id
- params.auditorId = this.userInfo().id
- params.refuseReason = this.refuseReason
- var data = this.refuseFile.map(item => {
- return 'https:' + item
- })
- params.refuseFile = JSON.stringify(data)
- params.status = editStatus
- fileEdit(params).then(res => {
- this.refuseFile = []
- this.refuseReason = ''
- this.loadData()
- })
- } else if (editStatus == '1') {
- var params = {}
- params.id = item.id
- params.auditorId = this.userInfo().id
- params.creativeCopywriter = this.refuseReason
- params.status = editStatus
- fileEdit(params).then(res => {
- this.refuseReason = ''
- this.loadData()
- })
- }
- },
- okEdit(e) {
- this.edit(null, this.active, '2')
- },
- edit(item, status, editStatus) {
- if (status == '0' || status == '1') {
- if (editStatus == '2') {
- var params = {}
- params.id = this.id
- params.auditorId = this.userInfo().id
- params.refuseReason = this.refuseReason
- var data = this.refuseFile.map(item => {
- return 'https:' + item
- })
- params.refuseFile = JSON.stringify(data)
- params.status = editStatus
- fileEdit(params).then(res => {
- this.refuseFile = []
- this.refuseReason = ''
- this.loadData()
- this.visibleDetail = false
- closeAllVideoFun()
- })
- } else {
- fileEdit({
- id: this.id,
- status: editStatus,
- auditorId: this.userInfo().id,
- creativeCopywriter: this.refuseReason
- }).then(res => {
- this.refuseFile = []
- this.refuseReason = ''
- this.loadData()
- this.visibleDetail = false
- closeAllVideoFun()
- })
- }
- } else {
- this.add = false
- this.visible = true
- this.getProjectId(item.projectId)
- getAction('/ctop/materialInfo/getDetail', {
- materialId: item.id
- }).then(res => {
- if (this.activeKey == 'image') {
- this.form.setFieldsValue({
- projectId: item.projectId,
- clipId: res.ascription.clipId,
- planeId: res.ascription.planeId,
- materialDescribe: item.materialDescribe
- })
- } else {
- this.form.setFieldsValue({
- projectId: item.projectId,
- clipId: res.ascription.clipId,
- planId: res.ascription.planId,
- shotId: res.ascription.shotId,
- materialDescribe: item.materialDescribe
- })
- }
- this.tags = res.tag
- this.urlList.url = item.url
- this.urlList.md5 = item.code
- this.urlList.name = item.materialName
- this.watermarkUrl.url = item.watermarkUrl
- this.watermarkUrl.md5 = item.watermarkCode
- this.watermarkUrl.name = item.watermarkMaterialName
- this.id = item.id
- })
- }
- },
- handleOkImage() {
- var params = {}
- params.projectId = this.addImageData.projectId
- params.videoId = this.addImageData.id
- params.imageArr = this.imageArrList
- postAction('/insertImage', params).then(res => {
- console.log(res)
- if (res.code == 0) {
- this.urlListImage = {
- url: [],
- md5: [],
- name: [],
- size: []
- }
- this.imageArrList = []
- this.addImageVisible = false
- this.loadData()
- }
- })
- },
- handleOk() {
- this.form.validateFieldsAndScroll((err, values) => {
- if (err) {
- // 这里做逻辑处理
- } else {
- var params = {}
- var roleCode = {}
- for (const key in this.role) {
- if (key == 'roleCode') {
- this.role[key] = this.role[key] + 'Id'
- roleCode[this.role[key]] = this.userInfo().id
- }
- }
- params.id = this.add ? null : this.id
- params.code = this.urlList.md5
- params.url = this.urlList.url
- params.materialName = this.urlList.name
- params.watermarkCode = this.watermarkUrl.md5
- params.watermarkUrl = this.watermarkUrl.url
- params.watermarkMaterialName = this.watermarkUrl.name
- params.userId = this.userInfo().id
- params.projectId = values.projectId
- params.materialDescribe = values.materialDescribe
- params.type = 'VIDEO'
- params.ascription =
- this.activeKey == 'image'
- ? roleCode
- : {
- planId: values.planId,
- shotId: values.shotId,
- clipId: values.clipId
- }
- params.tag = this.tags
- params.imageArr = this.imageArrList
- if (this.add) {
- fileInsertV2(params).then(res => {
- if (res.success) {
- this.form.resetFields()
- this.urlList = {
- url: '',
- md5: '',
- name: ''
- }
- this.watermarkUrl = {
- url: '',
- md5: '',
- name: ''
- }
- this.urlListImage = {
- url: [],
- md5: [],
- name: [],
- size: []
- }
- this.imageArrList = []
- this.tags = []
- this.loadData()
- this.visible = false
- this.add = true
- for (const key in this.role) {
- if (key == 'roleCode') {
- this.role[key] = this.role[key].substr(0, this.role[key].length - 2)
- }
- }
- this.$message.success('素材上传成功')
- } else {
- this.$message.error(res.message)
- }
- })
- } else {
- fileEdit({
- ...params,
- status: '0'
- }).then(res => {
- this.form.resetFields()
- this.urlList = {
- url: '',
- md5: '',
- name: ''
- }
- this.watermarkUrl = {
- url: '',
- md5: '',
- name: ''
- }
- this.tags = []
- this.loadData()
- this.visible = false
- this.add = true
- for (const key in this.role) {
- if (key == 'roleCode') {
- this.role[key] = this.role[key].substr(0, this.role[key].length - 2)
- }
- }
- })
- }
- }
- })
- },
- close() {
- this.visible = false
- this.form.resetFields()
- this.urlList = { url: '', md5: '', name: '' }
- this.tags = []
- this.urlListImage = {
- url: [],
- md5: [],
- name: [],
- size: []
- }
- this.imageArrList = []
- },
- addImage(item) {
- this.addImageVisible = true
- this.addImageData = item
- },
- closeImage() {
- this.addImageVisible = false
- this.urlListImage = {
- url: [],
- md5: [],
- name: [],
- size: []
- }
- this.imageArrList = []
- },
- onChange(date, dateString) {},
- callbackTwo(key) {
- this.checkAll = false
- this.checkArr = []
- if (this.form.getFieldValue('projectId')) {
- this.form.setFieldsValue({
- projectId: ''
- })
- }
- this.queryParam.status = key
- this.loadData(1)
- },
- overUpload(urlAll) {
- this.confirmLoading = true
- this.repeat = false
- this.$message.success('上传成功')
- },
- overUploadImage(urlAll) {
- // var index = this.urlList.url.findIndex(item => item === urlAll[0])
- // var data = { url: urlAll[0], code: this.urlList.md5[index], name: this.urlList.name[index] }
- // this.imageArr.push(data)
- var that = this
- that.material = []
- that.imageArrList = []
- var img
- img = new Image()
- for (var i = 0; i < this.urlListImage.url.length; i++) {
- img.src = this.urlListImage.url[i]
- if (img.complete) {
- // 打印
- if (img.width == 720) {
- if (img.height == 1280) {
- that.material.push(true)
- } else {
- that.material.push(false)
- }
- } else if (img.width == 1080) {
- if (img.height == 1920) {
- that.material.push(true)
- } else {
- that.material.push(false)
- }
- } else if (img.width == 1280) {
- if (img.height == 720) {
- that.material.push(true)
- } else {
- that.material.push(false)
- }
- } else if (img.width == 1920) {
- if (img.height == 1080) {
- that.material.push(true)
- } else {
- that.material.push(false)
- }
- } else {
- that.material.push(false)
- }
- that.imageArrList.push({
- width: img.width,
- height: img.height,
- size: this.urlListImage.size[i],
- code: this.urlListImage.md5[i],
- url: this.urlListImage.url[i],
- materialName: this.urlListImage.name[i]
- })
- } else {
- img.onload = () => {
- that.imageArrList.push({
- width: img.width,
- height: img.height,
- size: that.urlListImage.size[that.urlListImage.url.length - 1],
- code: that.urlListImage.md5[that.urlListImage.url.length - 1],
- url: that.urlListImage.url[that.urlListImage.url.length - 1],
- materialName: that.urlListImage.name[that.urlListImage.url.length - 1]
- })
- }
- }
- }
- },
- file(file) {
- var bmf = new BMF()
- var that = this
- return new Promise(function(resolve, reject) {
- bmf.md5(file[0], (err, md5) => {
- that.urlList.name = file[0].name
- that.urlList.md5 = md5
- fileCheck({
- code: md5,
- projectId: that.getData('projectId')
- }).then(res => {
- if (res.code == 0) {
- that.$message.error('此素材已经上传')
- that.repeat = true
- reject()
- } else {
- that.repeat = false
- resolve()
- // reject()
- }
- })
- })
- })
- },
- fileWater(file) {
- var bmf = new BMF()
- var that = this
- return new Promise(function(resolve, reject) {
- for (let i = 0; i < file.length; i++) {
- bmf.md5(file[i], (err, md5) => {
- fileCheckImage({
- code: md5,
- projectId: that.getData('projectId')
- }).then(res => {
- if (res.code == 0) {
- that.$message.error('此素材已经上传')
- reject()
- } else {
- that.urlListImage.name.push(file[i].name)
- that.urlListImage.md5.push(md5)
- that.urlListImage.size.push(file[i].size)
- resolve()
- // reject()
- }
- })
- })
- }
- })
- },
- getParticipateList() {
- getAction('/ctop/projectMember/participateList', {
- userId: this.userInfo().id
- }).then(res => {
- if (res.code == 0) {
- this.dataElse = res.result
- }
- })
- },
- getProjectId(items) {
- this.form.resetFields(['clipId', 'planId', 'shotId'])
- getAction('/ctop/projectMember/getMemberList', {
- projectId: items
- }).then(res => {
- if (res.code == 0) {
- this.ascription.clipId = res.result.filter(item => {
- if (
- item.roleCode == 'clip' ||
- item.roleCode == 'plan' ||
- item.roleCode == 'designTeamLeader' ||
- item.roleCode == 'shot' ||
- item.roleCode == 'plane'
- ) {
- return {
- userId: item.userId,
- userName: item.userName
- }
- }
- })
- this.ascription.shotId = res.result.filter(item => {
- if (
- item.roleCode == 'clip' ||
- item.roleCode == 'shot' ||
- item.roleCode == 'plan' ||
- item.roleCode == 'designTeamLeader' ||
- item.roleCode == 'plane'
- ) {
- return {
- userId: item.userId,
- userName: item.userName
- }
- }
- })
- this.ascription.planId = res.result.filter(item => {
- if (
- item.roleCode == 'shot' ||
- item.roleCode == 'plan' ||
- item.roleCode == 'designTeamLeader' ||
- item.roleCode == 'clip' ||
- item.roleCode == 'plane'
- ) {
- return {
- userId: item.userId,
- userName: item.userName
- }
- }
- })
- this.ascription.planeId = res.result.filter(item => {
- if (item.roleCode == 'plane') {
- return {
- userId: item.userId,
- userName: item.userName
- }
- }
- })
- }
- })
- },
- getDataSource(page, pageSize) {
- this.ipagination.current = page
- this.checkArr = []
- this.checkAll = false
- this.loadData()
- }
- }
- }
- </script>
- <style scoped>
- @import '~@assets/less/common.less';
- </style>
|