detail.vue 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665
  1. <template>
  2. <div class="contentDataMain">
  3. <div class="userTop" v-if="!isAdd">
  4. <div class="userMidle">
  5. <div class="albumTitle">
  6. <div>{{detailDataBase.name}}</div>
  7. <div class="categoryBox">
  8. <div v-for="(item0, index) in detailDataBase.categoryArr" :key="index">
  9. <div>
  10. {{item0}}
  11. </div>
  12. <a-divider v-if="index!=(detailDataBase.categoryArr.length-1)" class="lineBox" type="vertical" />
  13. </div>
  14. </div>
  15. <div :class="'approvalBox stateBox'+detailDataBase.versionState" v-if="detailDataBase.versionStateName!=''&&detailDataBase.versionStateName!=null&&detailDataBase.versionState!=2">
  16. {{ detailDataBase.versionStateName }}
  17. </div>
  18. </div>
  19. <div class="albumUserList">
  20. <img class="albumHead" :src="header0"/>
  21. <div>{{detailDataBase.owner}}</div>
  22. <div>{{detailDataBase.ownerCompany}}-{{detailDataBase.ownerDepartment}}</div>
  23. </div>
  24. <div class="albumTimesList">
  25. <div class="timesBox">
  26. <div>{{detailDataBase.views}}</div>
  27. <div>阅读量</div>
  28. </div>
  29. <div class="timesBox">
  30. <div>{{detailDataBase.yelpTotal}}</div>
  31. <div>点评量</div>
  32. </div>
  33. </div>
  34. <div class="button-group" v-if="detailDataBase.actionFlag.indexOf('edit')>-1">
  35. <a-button style="background:#406CC4;color:#fff;margin-right: 1.14583vw;" @click="changeEdite">编辑</a-button>
  36. <a-button @click="$router.back()" style="color: #406CC4;border-color: #406CC4;display: none;">取消</a-button>
  37. </div>
  38. </div>
  39. <div class="userEnd">
  40. <div class="albumPhoto">
  41. <img :src="imgUrl" @click="openPreview(detailDataBase.cover)"/>
  42. <div>{{detailDataBase.createTime}}</div>
  43. </div>
  44. </div>
  45. </div>
  46. <div class="userTopAdd" v-else>
  47. <div class="addTitle">
  48. <div class="addTitleText">{{ titleData }}</div>
  49. <div class="button-groupAdd">
  50. <a-button style="background:#406CC4;color:#fff;margin-right: 1.25vw;" @click="handleSaveClick">提交</a-button>
  51. <a-button @click="goBack" style="color: #406CC4;border-color: #406CC4;">取消</a-button>
  52. </div>
  53. </div>
  54. <a-form-model labelAlign="right" ref="knowledgeRef" :rules="knowledgeRules" :model="knowledgeForm" layout="inline" >
  55. <a-form-model-item class="knowledgeAddUpdateLabel oneline" label="所选分类:" prop="categoryId" style="font-size:0.93vw">
  56. <a-cascader v-model="knowledgeForm.categoryId"
  57. class="addItemBox"
  58. :options="classifyList"
  59. :fieldNames="{ label: 'name', value: 'pkId', children: 'children' }"
  60. placeholder="请选择"
  61. changeOnSelect
  62. popupClassName="knowledgeCascader">
  63. <a-icon slot="suffixIcon" type="caret-down" class="classifyIconBox"/>
  64. </a-cascader>
  65. </a-form-model-item>
  66. <a-form-model-item class="knowledgeAddUpdateLabel oneline" label="专辑标题:" prop="name" style="margin-top: -5px;">
  67. <a-input style='width: 46.0416vw;' @change='titlesChange' class="addItemBox" :maxLength="20" v-model="knowledgeForm.name" placeholder="请输入" >
  68. <div slot="suffix" style="color: #C0C0C0;">
  69. {{titlesNum}}
  70. </div>
  71. </a-input>
  72. </a-form-model-item>
  73. <a-form-model-item class="knowledgeAddUpdateLabel" label=" 缩略图:" prop="cover" style="margin-top: 2.4vw;margin-bottom: 0px;">
  74. <a-upload-dragger
  75. v-if="!knowledgeForm.cover"
  76. name="file"
  77. class="uploadBox"
  78. :headers="headers"
  79. action="/api/api-system/system/core/sysFile/upload"
  80. :showUploadList="false"
  81. @change="handleChange"
  82. :beforeUpload="beforeUpload"
  83. >
  84. <p class="ant-upload-drag-icon">
  85. <img v-if="!loading" :src="add" alt="">
  86. <a-icon v-else type="loading" />
  87. </p>
  88. <p class="ant-upload-text" v-if="!loading">
  89. 点击或将文件拖拽到这里上传
  90. <br/>
  91. (仅可上传一份)
  92. </p>
  93. <p class="ant-upload-text" v-else>
  94. 上传中...
  95. <br/>
  96. (仅可上传一份)
  97. </p>
  98. <p class="ant-upload-hint">
  99. 支持扩展名:.png .jpg(推荐尺寸342*226)
  100. </p>
  101. </a-upload-dragger>
  102. <div v-else class="imgBox">
  103. <img class="uploadImg" :src="'/api/api-system/system/core/sysFile/previewFile?fileId='+knowledgeForm.cover"/>
  104. <a-button style="font-size: 1vw;color: #406CC4;" class="clearBtn" :butn-icon="'none'" @click="handleFileDelClick">删除</a-button>
  105. </div>
  106. </a-form-model-item>
  107. </a-form-model>
  108. </div>
  109. <div class="tabBoxContent">
  110. <div v-for="(item, index) in tapArr" :key="index" @click="changeAction(item.id)">
  111. <span>{{item.name}}</span>
  112. <img v-if="tapAction==item.id" src="../../../../image/tabAction.png"/>
  113. </div>
  114. <a-divider class="lineBorder"/>
  115. </div>
  116. <div class="searchBoxContent" v-show="(tapAction==0)">
  117. <div class="DataBoxContent" style="position: relative;">
  118. <a-input :maxLength="500" :disabled="!(isAdd)" @change='detailChange' class="detailBox" v-model="detailData" type="textarea" :autosize="{minRows: 10, maxRows: 26}" placeholder="请输入" >
  119. </a-input>
  120. </div>
  121. </div>
  122. <div class="searchBoxContent" v-show="(tapAction==1)">
  123. <div class="DataBoxContent">
  124. <div class="albumBox">
  125. <div class="albumBoxLeft">
  126. <a-button class="creatBtn" @click="addOpen" v-if="isAdd">创建目录</a-button>
  127. <div class="albumList" v-if="isAdd">
  128. <div v-dragging="{item: item, list:albumArr}" :key="index" :draggable= "true" @click="changeCatalogue(index)" :class="albumPkId==item.pkId?'albumitem actionAlbum':'albumitem'" v-for="(item, index) in albumArr">
  129. <div class="leftPoint"></div>
  130. <div class="pointText">{{item.name}}</div>
  131. <div class="albumitemBtn">
  132. <img src="../../../../image/add.png" v-if="isAdd" class="btnsty" @click="addDataOpen"/>
  133. <img src="../../../../image/del.png" v-if="isAdd" class="btnstydel" @click.stop="deleteData(index)"/>
  134. </div>
  135. </div>
  136. </div>
  137. <div class="albumList" style="margin-top:0;" v-else>
  138. <div :key="index" @click="changeCatalogue(index)" :class="albumPkId==item.pkId?'albumitem actionAlbum':'albumitem'" v-for="(item, index) in albumArr">
  139. <div class="leftPoint0"></div>
  140. <div class="pointText">{{item.name}}</div>
  141. </div>
  142. </div>
  143. </div>
  144. <div class="albumBoxRight">
  145. <div class="noDataBox" v-if="dataList.length==0">
  146. <img src="../../../../image/noDataNew.png" class="noData"/>
  147. <p class="noDataText">暂无内容</p>
  148. </div>
  149. <div v-else class="listBoxItemContent listItemClass" v-for="(item, index) in dataList" :key="index">
  150. <pageList :item="item" @delRefresh="delList(index)" :showDelete="showDelete&&isAdd"></pageList>
  151. </div>
  152. </div>
  153. </div>
  154. </div>
  155. </div>
  156. <div class="searchBoxContent" v-show="(tapAction==2)">
  157. <div class="noDataBox" v-if="dataList2.length==0">
  158. <img src="../../../../image/noDataNew.png" class="noData"/>
  159. <p class="noDataText">暂无搜索结果</p>
  160. </div>
  161. <div v-else class="DataBoxContent">
  162. <div class="albumBox" style="flex-direction: column;">
  163. <div class="commentTitle">
  164. 我要点评
  165. </div>
  166. <div class="submitBox">
  167. <a-input-search
  168. v-model:value="yelpContent"
  169. class="commentAdd"
  170. placeholder="评论千万条,友善第一条"
  171. enter-button="提交"
  172. :maxLength="100"
  173. size="large"
  174. @search="replyAlbum"
  175. />
  176. </div>
  177. <div class="commentList">
  178. <div class="commentTitle commentPadd">
  179. 点评信息
  180. <a-radio-group v-model:value="commentType" button-style="solid" class="titleRight" @change="changeType">
  181. <a-radio-button value="1">全部点评</a-radio-button>
  182. <a-radio-button value="2">与我相关</a-radio-button>
  183. </a-radio-group>
  184. </div>
  185. <a-divider class="commentLine"/>
  186. <div class="noDataBox" v-if="yelpDataList.length==0">
  187. <img src="../../../../image/noDataNew.png" class="noData"/>
  188. <p class="noDataText">暂无内容</p>
  189. </div>
  190. <div v-else>
  191. <div class="albumListClass" v-for="(item, index) in yelpDataList" :key="index">
  192. <img v-if="item.replies.length!=0" @click="changeOpen(item)" src="../../../../image/dowmPoint.png" :class="item.open==1?'leftImg':'leftImg leftImgRotate'"/>
  193. <img v-else src="../../../../image/dowmPoint.png" class="leftImg" style="opacity: 0;cursor: default;"/>
  194. <albumList @replyYelp="replyYelp" :item="item" style="flex-grow: 1;"></albumList>
  195. </div>
  196. <div class="getMoreList" @click="getMoreList" v-if="yelpPageTotle>yelpDataList.length">
  197. 点击加载更多评论
  198. </div>
  199. </div>
  200. </div>
  201. </div>
  202. </div>
  203. </div>
  204. <div class="searchBoxContent" v-show="(tapAction==3)">
  205. <div class="DataBoxContent" style="padding:0px 2vw">
  206. <div class="titleAlbum" v-if="!isAdd">审批状态:<span style="background: none;" :class="'stateBox'+detailDataBase.versionState" v-if="detailDataBase.versionStateName!=''&&detailDataBase.versionStateName!=null">{{ detailDataBase.versionStateName }}</span></div>
  207. <div style="width:100%;margin-top: 1.5625vw;">
  208. <a-table class="tableBoxAlbum" :columns="approverColumns" :data-source="approverData" :pagination="false">
  209. </a-table>
  210. </div>
  211. </div>
  212. </div>
  213. <a-modal v-model="catalogueShow"
  214. :title="catalogueTitle"
  215. centered
  216. okText="保存"
  217. @ok="catalogueHandleOk"
  218. :confirmLoading="saveLoading">
  219. <a-form :model="catalogueForm" layout="inline" :label-col="{ span: 5 }">
  220. <a-form-item prop="name" style="margin-top:10px;" label="目录名称">
  221. <a-input v-model="catalogueForm.name" placeholder="请输入" :maxLength="20"/>
  222. </a-form-item>
  223. <a-form-item prop="solt" style="margin-top:10px;" label="排序">
  224. <a-input-number :min="1" v-model="catalogueForm.solt" placeholder="请输入" />
  225. </a-form-item>
  226. </a-form>
  227. </a-modal>
  228. <a-modal v-model="addDataShow"
  229. title="添加目录内容"
  230. centered
  231. okText="添加"
  232. @ok="handleOkAdd"
  233. :confirmLoading="saveLoading">
  234. <a-form ref="labelRef" :model="addDataForm" layout="inline" :label-col="{ span: 5 }">
  235. <a-form-item prop="name" style="margin-top:10px;" label="内容类型">
  236. <a-select v-model="addDataForm.type" placeholder="请选择">
  237. <a-select-option class="dropdownClassli" v-for="(item,index) in knowledgeList" :key="index" :value="item.value">
  238. <span class="addSelectOption">{{item.label}}</span>
  239. </a-select-option>
  240. </a-select>
  241. </a-form-item>
  242. <a-form-item prop="name" style="margin-top:10px;" label="知识分类">
  243. <a-cascader v-model="categoryValue"
  244. :popupStyle="{
  245. maxWidth: '40vw',
  246. 'overflow-x': 'auto'
  247. }"
  248. changeOnSelect
  249. :getPopupContainer="triggerNode => { return triggerNode.parentNode }"
  250. :options="classifyListAdd"
  251. :fieldNames="{ label: 'name', value: 'pkId', children: 'children' }"
  252. placeholder="请选择"
  253. @change="onChange"
  254. @popupVisibleChange="popupVisibleChange"
  255. popupClassName="knowledgeCascader"
  256. class="scroll-ckunk">
  257. </a-cascader>
  258. </a-form-item>
  259. <a-form-item prop="name" style="margin-top:10px;" label="选择知识">
  260. <a-select v-model="addDataForm.pkId" placeholder="请选择">
  261. <a-select-option class="dropdownClassli" v-for="(item,index) in addDataSelect" :key="index" :value="item.pkId">
  262. <span class="addSelectOption">{{item.titles}}</span>
  263. </a-select-option>
  264. </a-select>
  265. </a-form-item>
  266. </a-form>
  267. </a-modal>
  268. <a-modal
  269. title=""
  270. :visible="delVisible"
  271. :confirm-loading="false"
  272. class="delModal"
  273. :footer="null"
  274. :closable="false"
  275. dialogClass="delBox"
  276. >
  277. <div class="delBoxMain">
  278. <img src="../../../../image/confirm.png" class="confirmImg"/>
  279. <p class="confirmTitle">确认要删除这个专辑目录吗?</p>
  280. <p class="confirmContent">您删除后的专辑目录将无法恢复,请慎重操作。</p>
  281. <div>
  282. <div class="btnConfirmOk" @click="confirmOkCatalogue">确认</div>
  283. <div class="btnConfirmCancel" @click="closeDel">取消</div>
  284. </div>
  285. </div>
  286. </a-modal>
  287. <previewVisible ref="previewVisible"></previewVisible>
  288. </div>
  289. </template>
  290. <script>
  291. import add from '@/assets/img/warehouse/add.png'
  292. import header0 from '../../../../image/header0.png'
  293. import contentData from '@/api/knowledge/contentData'
  294. import album from '@/api/knowledge/album'
  295. import api from '@/api/knowledge/warehouseIndex'
  296. import pageList from '../components/pageListAlbum'
  297. import albumList from '../components/albumList'
  298. import previewVisible from '../components/previewVisible'
  299. import { ACCESS_TOKEN } from '@/store/mutation-types';
  300. import {mapState,mapGetters} from "vuex";
  301. import SessionCache from '../aJs/cache'
  302. export default {
  303. name: 'contentData',
  304. components: {
  305. pageList,
  306. albumList,
  307. previewVisible
  308. },
  309. computed: {
  310. ...mapState({
  311. user: (state) => state.appSetting.user,
  312. }),
  313. ...mapGetters('include',['getInclude'])
  314. },
  315. data() {
  316. return {
  317. pkId:'',
  318. titleData:'新增专辑',
  319. loading:false,
  320. yelpContent:'',
  321. showDelete:true,//专辑内容是否加移除
  322. detailDataBase:{
  323. actionFlag:[]
  324. },
  325. headers: {},
  326. detailNum:500,
  327. add,
  328. titlesNum:20,
  329. catalogueNum:0,
  330. knowledgeForm: {
  331. categoryId:[],
  332. cover:'',
  333. name:''
  334. },
  335. knowledgeRules: {
  336. categoryId: [
  337. { required: true, message: '请选择分类', trigger: 'blur' }
  338. ],
  339. cover: [
  340. { required: true, message: '请选择缩略图', trigger: 'blur' }
  341. ],
  342. name: [
  343. { required: true, message: '请输入专辑标题', trigger: 'blur' }
  344. ]
  345. },
  346. isAdd:true,
  347. commentType:'1',
  348. addDataSelect:[],
  349. classifyList:[],
  350. classifyListAdd:[],
  351. knowledgeList: [
  352. {value: '1', label: '文档知识'},
  353. // {value: '2', label: '维基知识'}
  354. ],
  355. addDataShow:false,
  356. categoryValue:'',
  357. categoryDataArr:[],
  358. addDataForm:{
  359. type:'1',
  360. categoryId:[],
  361. pkId:undefined,
  362. },
  363. delVisible:false,
  364. catalogueForm:{
  365. name:'',
  366. solt:''
  367. },
  368. catalogueShow:false,
  369. catalogueTitle:'新增目录',
  370. saveLoading:false,
  371. detailData:'',
  372. approverColumns: [
  373. {
  374. title: '流程节点',
  375. dataIndex: 'name',
  376. align: 'center'
  377. },
  378. {
  379. title: '审批人',
  380. dataIndex: 'approverName',
  381. align: 'center'
  382. },
  383. {
  384. title: '审批状态',
  385. dataIndex: 'approvalStatus',
  386. align: 'center'
  387. },
  388. {
  389. title: '审批备注',
  390. dataIndex: 'comment',
  391. align: 'center'
  392. },
  393. {
  394. title: '时间',
  395. dataIndex: 'createTime',
  396. align: 'center'
  397. },
  398. ],
  399. approverData:[],
  400. header0,
  401. imgUrl: require('@img/avatar2.jpg'),
  402. userData:this.user,
  403. tapArr:[{id:0,name:'专辑简介'},{id:1,name:'专辑目录'},{id:2,name:'专辑点评'},{id:3,name:'审批流程'}],
  404. tapAction:0,
  405. dataList2:[
  406. {}
  407. ],
  408. albumArr:[
  409. ],
  410. albumPkId:'',
  411. albumIndex:0,
  412. dataList:[],
  413. yelpPageNum:1,
  414. yelpPageSize:10,
  415. yelpDataList:[],
  416. yelpPageTotle:0,
  417. scope: 2,
  418. widthVar: 400
  419. }
  420. },
  421. beforeRouteLeave(to, from, next) {
  422. if(to.name == 'albumIndex') {
  423. to.query.scope = this.scope
  424. }
  425. next();
  426. },
  427. mounted() {
  428. if(this.$route.query.scope) {
  429. this.scope = this.$route.query.scope
  430. }
  431. if(this.$route.query.isAdd) {
  432. this.isAdd = this.$route.query.isAdd==1?true:false
  433. }
  434. if(this.isAdd){
  435. album.approvalTemplate().then((res) => {
  436. this.approverData = res.data
  437. })
  438. this.tapArr=[{id:0,name:'专辑简介'},{id:1,name:'专辑目录'},{id:3,name:'审批流程'}]
  439. }else{
  440. this.tapArr=[{id:0,name:'专辑简介'},{id:1,name:'专辑目录'}]
  441. }
  442. if(this.$route.query.pkId) {
  443. this.pkId = this.$route.query.pkId
  444. this.titleData = '编辑专辑'
  445. let info = SessionCache.getCache('albumDetail')
  446. if(info.isContentList == 1) {
  447. this.knowledgeForm = info.knowledgeForm
  448. this.detailData = info.detailData
  449. this.detailDataBase = info.detailDataBase
  450. this.imgUrl = info.imgUrl
  451. this.tapArr = info.tapArr
  452. this.albumArr = info.albumArr
  453. this.tapAction = info.tapAction
  454. this.albumIndex = info.albumIndex,
  455. this.albumPkId = info.albumPkId
  456. this.dataList = this.albumArr[this.albumIndex].dataList
  457. // if(this.detailDataBase.versionState==2){
  458. // this.tapArr.push({id:2,name:'专辑点评'})
  459. // }
  460. SessionCache.deleteCache('albumDetail')
  461. } else {
  462. this.getInfo()
  463. }
  464. this.getYelp()
  465. } else {
  466. this.titleData = '新增编辑'
  467. let info = SessionCache.getCache('albumDetail')
  468. if(info.isContentList == 1) {
  469. this.knowledgeForm = info.knowledgeForm
  470. this.detailData = info.detailData
  471. this.detailDataBase = info.detailDataBase
  472. this.imgUrl = info.imgUrl
  473. this.tapArr = info.tapArr
  474. this.albumArr = info.albumArr
  475. this.tapAction = info.tapAction
  476. this.albumIndex = info.albumIndex,
  477. this.albumPkId = info.albumPkId
  478. this.dataList = this.albumArr[this.albumIndex].dataList
  479. // if(this.detailDataBase.versionState==2){
  480. // this.tapArr.push({id:2,name:'专辑点评'})
  481. // }
  482. SessionCache.deleteCache('albumDetail')
  483. }
  484. }
  485. // 拖拽事件
  486. this.$dragging.$on("dragged", (result) => {
  487. let soltArr=this.albumArr.map(item => {
  488. return item.solt
  489. })
  490. soltArr.sort((a, b) => a - b);
  491. this.albumArr.forEach((item,index) => {
  492. item.solt=soltArr[index]
  493. })
  494. //this.dataList = this.albumArr[this.albumIndex].dataList
  495. // 将排序后的结果重新赋值
  496. //this.albumArr = result.value.list;
  497. });
  498. },
  499. created() {
  500. //this.dataList = this.albumArr[this.albumIndex].dataList
  501. var token = Vue.ls.get(ACCESS_TOKEN);
  502. if (token) {
  503. this.headers['Authorization'] = 'Bearer ' + token // 让每个请求携带token--['Authorization']为自定义key 请根据实际情况自行修改
  504. }
  505. this.init()
  506. },
  507. methods: {
  508. openPreview(src){
  509. this.$refs.previewVisible.openBig(src)
  510. },
  511. //点击加载更多评论
  512. getMoreList(){
  513. this.yelpPageNum = this.yelpPageNum+1
  514. this.getYelp()
  515. },
  516. //回复点评
  517. replyYelp(data){
  518. this.reportYelp(data.content,2,data.yelpId)
  519. },
  520. //回复专辑
  521. replyAlbum(){
  522. if(this.yelpContent==''){
  523. this.$message.error('未填写点评或回复的内容')
  524. return false
  525. }
  526. this.reportYelp(this.yelpContent,1,null)
  527. },
  528. //修改评论类型
  529. changeType(){
  530. this.yelpDataList=[]
  531. this.yelpPageNum=1
  532. this.getYelp()
  533. },
  534. //评论列表
  535. getYelp(){
  536. let getData = {
  537. pageNo:this.yelpPageNum,
  538. pageSize:this.yelpPageSize,
  539. params:{
  540. albumId:this.pkId,
  541. type:this.commentType,
  542. }
  543. }
  544. album.yelpQuery(getData).then((res) => {
  545. res.result.data.forEach(item => {
  546. item.open = 0
  547. item.replyComment = ''
  548. if(item.replies==null){
  549. item.replies = []
  550. }else{
  551. item.replies.forEach(item0 => {
  552. item0.replyComment = ''
  553. item0.replyLeft = '@'+item0.createName+' '
  554. })
  555. }
  556. })
  557. this.yelpPageTotle = res.result.totalCount
  558. this.yelpDataList = this.yelpDataList.concat(res.result.data)
  559. })
  560. },
  561. //评论回复
  562. reportYelp(content,type,yelpId){
  563. let postData = {
  564. albumId:this.pkId,
  565. content:content,
  566. type:type
  567. }
  568. if(yelpId!=null){
  569. postData.yelpId = yelpId
  570. }
  571. album.yelp(postData).then((res) => {
  572. this.yelpContent = ''
  573. let tempArr = this.yelpDataList.filter(item=>{return item.pkId==yelpId;})[0]
  574. tempArr.replyComment = ''
  575. tempArr.replies.forEach(item => {
  576. item.replyComment = ''
  577. })
  578. //this.yelpDataList=[]
  579. //this.getYelp()
  580. })
  581. },
  582. //获取详情
  583. getInfo(){
  584. let getData = {pkId:this.pkId}
  585. album.info(getData).then((res) => {
  586. this.knowledgeForm.name = res.data.name
  587. this.knowledgeForm.cover = res.data.cover
  588. this.knowledgeForm.categoryId = []
  589. if(res.data.categoryLevel1Id!=null){
  590. this.knowledgeForm.categoryId.push(res.data.categoryLevel1Id)
  591. }
  592. if(res.data.categoryLevel2Id!=null){
  593. this.knowledgeForm.categoryId.push(res.data.categoryLevel2Id)
  594. }
  595. //this.knowledgeForm.cover = res.data.cover
  596. this.detailData = res.data.summary
  597. this.detailDataBase = res.data
  598. this.detailDataBase.categoryArr = this.detailDataBase.categoryName.split('|')
  599. this.imgUrl = '/api/api-system/system/core/sysFile/previewFile?fileId='+this.detailDataBase.cover
  600. this.getApprovals()
  601. if(this.detailDataBase.versionState==2){
  602. this.tapArr.push({id:2,name:'专辑点评'})
  603. }
  604. if(this.user.userId==this.detailDataBase.ownerId){
  605. let testArr = this.tapArr.filter(item=>{return item.id==3})
  606. if(testArr.length == 0){
  607. this.tapArr.push({id:3,name:'审批流程'})
  608. }
  609. }
  610. this.tapArr.sort((val0,val1)=>{
  611. return (val0.id-val1.id);
  612. })
  613. })
  614. },
  615. //获取详情和编辑审批
  616. getApprovals(){
  617. let getData = {albumId:this.detailDataBase.pkId,versionId:this.detailDataBase.versionId}
  618. album.approvals(getData).then((res) => {
  619. res.data.flows.forEach(item => {
  620. item.approverName=item.actualApproverName
  621. item.createTime=item.approvalTime
  622. })
  623. this.approverData = res.data.flows
  624. })
  625. album.catalogue(getData).then((res) => {
  626. res.data.forEach((item,index) => {
  627. item.contents.forEach(item => {
  628. item.categoryArr = item.category.split("|")
  629. item.titles = item.title
  630. item.pkId = item.knowledgeId
  631. item.uploadTime = item.createTime
  632. item.params = {
  633. photo:item.authorHead
  634. }
  635. })
  636. item.dataList=item.contents
  637. item.solt=index+1
  638. })
  639. this.albumArr = res.data
  640. this.albumPkId = this.albumArr[this.albumIndex].pkId
  641. // console.log(this.getInclude)
  642. this.dataList = this.albumArr[this.albumIndex].dataList
  643. this.showDelete = this.albumArr[this.albumIndex].actionFlag.indexOf('delete')>-1
  644. //this.showDelete = true
  645. })
  646. },
  647. changeEdite(){
  648. this.isAdd = true
  649. },
  650. goBack(){
  651. SessionCache.deleteCache('albumDetail')
  652. if(this.$route.query.isAdd==1){
  653. this.$router.back()
  654. }else{
  655. this.isAdd = false
  656. }
  657. },
  658. // 提交
  659. handleSaveClick(){
  660. //const hide = this.$message.loading('验证码发送中..', 0)
  661. //setTimeout(hide, 5000);
  662. //return false;
  663. if(this.knowledgeForm.categoryId.length==0){
  664. this.$message.error('请选择分类');
  665. return false
  666. }
  667. if(this.knowledgeForm.name==''){
  668. this.$message.error('请输入专题标题');
  669. return false
  670. }
  671. if(this.knowledgeForm.cover==''&&this.isAdd){
  672. this.$message.error('请上传缩略图');
  673. return false
  674. }
  675. if(this.albumArr.length==0){
  676. this.$message.error('请创建目录');
  677. return false
  678. }
  679. let knowledgeForm = JSON.parse(JSON.stringify(this.knowledgeForm))
  680. knowledgeForm.summary = this.detailData
  681. let catalogues = []
  682. this.albumArr.forEach(item => {
  683. let tempData = {
  684. name:item.name,
  685. contents:[]
  686. }
  687. item.dataList.forEach(item0 => {
  688. tempData.contents.push(item0.pkId)
  689. })
  690. catalogues.push(tempData)
  691. });
  692. knowledgeForm.catalogues = catalogues
  693. knowledgeForm.categoryId = knowledgeForm.categoryId[(knowledgeForm.categoryId.length-1)]
  694. if(this.pkId==''){
  695. album.create(knowledgeForm).then((res) => {
  696. if(res.code == 200) {
  697. this.$message.success("保存成功!");
  698. SessionCache.deleteCache('albumDetail')
  699. this.$router.back()
  700. }
  701. })
  702. }else{
  703. knowledgeForm.cover = this.knowledgeForm.cover
  704. //knowledgeForm.categoryId = this.detailDataBase.categoryLevel2Id
  705. //knowledgeForm.categoryId = knowledgeForm.categoryId[(knowledgeForm.categoryId.length-1)]
  706. knowledgeForm.name = this.knowledgeForm.name
  707. knowledgeForm.pkId = this.detailDataBase.pkId
  708. knowledgeForm.versionId = this.detailDataBase.versionId
  709. album.edit(knowledgeForm).then((res) => {
  710. if(res.code == 200) {
  711. this.$message.success("保存成功!");
  712. SessionCache.deleteCache('albumDetail')
  713. this.$router.back()
  714. }
  715. })
  716. }
  717. },
  718. //上传之前校验
  719. beforeUpload(file) {
  720. const isLt2M = file.size / 1024 / 1024 < 6;
  721. if (!isLt2M) {
  722. this.$message.error('附件不能超过6M');
  723. return false
  724. }
  725. const fileName = file.name.split('.')
  726. const fileExt = fileName.slice(-1)[0]
  727. let arr = ['png','jpg']
  728. if(arr.indexOf(fileExt) == -1) {
  729. this.$message.error('仅支持格式.png .jpg的文件');
  730. return false
  731. }
  732. return true
  733. },
  734. //删除图片
  735. handleFileDelClick(){
  736. this.knowledgeForm.cover = ''
  737. },
  738. //图片上传
  739. handleChange(info) {
  740. if(info.file.status === 'uploading') {
  741. this.loading = true
  742. return
  743. }
  744. if(info.file.status === 'done') {
  745. this.loading = false
  746. this.knowledgeForm.cover = info.file.response.data[0].fileId
  747. }
  748. },
  749. //字数变化
  750. detailChange(){
  751. this.detailNum=500-this.detailData.length
  752. },
  753. changeCatalogue(num){
  754. this.albumIndex = num
  755. this.albumPkId = this.albumArr[this.albumIndex].pkId
  756. this.dataList = this.albumArr[this.albumIndex].dataList
  757. },
  758. titlesChange(){
  759. this.titlesNum=20-this.knowledgeForm.name.length
  760. },
  761. changeOpen(data){
  762. data.open = (data.open+1)%2
  763. },
  764. //知识分类变化
  765. onChange(value, selectedOptions) {
  766. this.categoryValue = value
  767. this.categoryDataArr = selectedOptions
  768. this.addDataForm.categoryId = value[value.length-1]
  769. },
  770. popupVisibleChange(value){
  771. if(value==false){
  772. this.getData();
  773. }
  774. },
  775. //获取知识数据
  776. getData(){
  777. let param = {
  778. "pageNo": 1,
  779. "pageSize": 100,
  780. "sortField": "",
  781. "sortOrder": "asc",
  782. params: {
  783. approvalStatus: 5,
  784. "categoryId":this.addDataForm.categoryId.length==0?'':this.addDataForm.categoryId,
  785. "type":this.addDataForm.type,
  786. }
  787. }
  788. contentData.findAllKnowledge(param).then((res) => {
  789. this.addDataSelect = res.result.data
  790. })
  791. },
  792. closeDel(){
  793. this.delVisible = false
  794. },
  795. confirmOkCatalogue(){
  796. this.albumArr.splice(this.catalogueNum,1)
  797. this.delVisible = false
  798. },
  799. //删除
  800. delList(num){
  801. this.dataList.splice(num,1)
  802. },
  803. confirmOk(){
  804. let param = {
  805. knowledgeId:this.item.pkId
  806. }
  807. this.delVisible = false
  808. },
  809. //删除
  810. deleteData(num){
  811. this.catalogueNum = num
  812. this.delVisible = true
  813. },
  814. addOpen(){
  815. if(this.albumArr.length==0){
  816. this.catalogueForm.solt = 1
  817. }else{
  818. this.catalogueForm.solt = Number(this.albumArr[this.albumArr.length-1].solt)+1
  819. }
  820. this.catalogueShow = true
  821. },
  822. addDataOpen(){
  823. let info = {
  824. knowledgeForm: this.knowledgeForm,
  825. detailData: this.detailData,
  826. detailDataBase: this.detailDataBase,
  827. imgUrl: this.imgUrl,
  828. tapArr: this.tapArr,
  829. albumArr: this.albumArr,
  830. tapAction: this.tapAction,
  831. albumIndex: this.albumIndex,
  832. albumPkId: this.albumPkId
  833. }
  834. SessionCache.setCache('albumDetail',info)
  835. this.$router.push({
  836. name: 'contentList',
  837. query: {
  838. pkId: this.pkId,
  839. isAdd: this.isAdd,
  840. scope: this.scope
  841. }
  842. })
  843. return
  844. this.addDataShow = true
  845. this.addDataForm={
  846. type:'1',
  847. categoryId:[],
  848. pkId:undefined,
  849. }
  850. this.categoryValue=''
  851. // let innerWidth = window.innerWidth
  852. // this.widthVar = innerWidth/30
  853. document.onclick=function(element){
  854. if(element.target.className.indexOf('ant-cascader-menu-item')>-1){
  855. document.querySelector('.ant-cascader-menus').scrollLeft = 20480
  856. }
  857. }
  858. /*setInterval(() => {
  859. document.querySelectorAll('.ant-cascader-menu-item').forEach(el => {
  860. el.onclick = function() {
  861. document.querySelector('.ant-cascader-menus').scrollLeft = 2048
  862. }
  863. })
  864. }, 1000)*/
  865. },
  866. //增加知识
  867. handleOkAdd(){
  868. let isHaveArr = this.albumArr[this.albumIndex].dataList.filter(item=>{return item.pkId==this.addDataForm.pkId;})
  869. if(isHaveArr.length>0){
  870. this.$message.error('当前目录里已经存在这条知识。');
  871. return false
  872. }
  873. let selectData = this.addDataSelect.filter(item=>{return item.pkId==this.addDataForm.pkId;})[0]
  874. selectData.documentName = selectData.attachmentName
  875. selectData.documentRemark = selectData.summary
  876. selectData.viewNum = selectData.views
  877. selectData.uploadTime = selectData.createTime
  878. selectData.categoryArr = []
  879. this.getCategory(selectData.categoryArr,selectData.knowledgeCategoryAdminVo)
  880. this.albumArr[this.albumIndex].dataList.push(selectData)
  881. this.addDataShow = false
  882. },
  883. //新增目录
  884. catalogueHandleOk(){
  885. let that = this
  886. let dataFind = that.albumArr.filter(item=>{return item.name==that.catalogueForm.name;})
  887. if(dataFind.length != 0){
  888. this.$message.error('目录名称重复。');
  889. return false
  890. }
  891. let pushEnd = false
  892. that.catalogueForm.dataList = []
  893. let catalogueForm = JSON.parse(JSON.stringify(that.catalogueForm))
  894. catalogueForm.pkId = Date.parse(new Date())
  895. for (let index = 0; index < that.albumArr.length; index++) {
  896. let element = that.albumArr[index]
  897. if(element.solt>catalogueForm.solt){
  898. pushEnd = true
  899. that.albumArr.splice(index,0,catalogueForm)
  900. break;
  901. }
  902. }
  903. catalogueForm.actionFlag=['edit','delete']
  904. if(!pushEnd){
  905. that.albumArr.push(catalogueForm)
  906. }
  907. if(that.albumArr.length==1){
  908. that.albumPkId = that.albumArr[0].pkId
  909. }
  910. that.catalogueShow=false
  911. },
  912. //知识分类转化
  913. getCategory(arr,data){
  914. arr.unshift(data.name)
  915. if(data.parents!=null){
  916. this.getCategory(arr,data.parents)
  917. }
  918. },
  919. filter(inputValue, path) {
  920. return path.some(option => option.label.toLowerCase().indexOf(inputValue.toLowerCase()) > -1);
  921. },
  922. changeAction(num){
  923. this.tapAction = num
  924. if(this.$route.query.pkId) {
  925. if(this.tapAction==1||this.tapAction==3){
  926. this.getApprovals()
  927. }
  928. if(this.tapAction==2){
  929. this.yelpDataList=[]
  930. this.yelpPageNum=1
  931. this.getYelp()
  932. }
  933. }
  934. },
  935. //初始化
  936. async init() {
  937. let getData={pkId:0}
  938. album.categories(getData).then((res) => {
  939. this.classifyList = res.data
  940. })
  941. contentData.getAllKnowledgeCategory().then((res) =>{
  942. this.classifyListAdd=res.data
  943. })
  944. },
  945. //知识分类懒加载
  946. async loadDataAdd(selectedOptions) {
  947. const targetOption = selectedOptions[selectedOptions.length - 1]
  948. targetOption.loading = true
  949. let res = await api.getKnowledgeCategory(targetOption.pkId)
  950. let result = res.data.children.map(item => {
  951. if(!item.hasChild) {
  952. item.isLeaf = true
  953. } else {
  954. item.isLeaf = false
  955. }
  956. return item
  957. })
  958. targetOption.loading = false
  959. targetOption.children = [...result]
  960. this.classifyList = [...this.classifyList]
  961. },
  962. }
  963. }
  964. </script>
  965. <style>
  966. .titleRight .ant-radio-button-wrapper:not(:first-child):before{
  967. display: none;
  968. background: #000;
  969. }
  970. </style>
  971. <style lang="less" scoped>
  972. .categoryBox{
  973. display: inline-block;
  974. color: #C0C0C0;
  975. font-size: 0.8333vw;
  976. font-weight: 400;
  977. background: rgba(64, 108, 196, 0.04);
  978. border-radius: 0.41666vw 0.41666vw 0.41666vw 0.41666vw;
  979. padding: 0 0.3125vw;
  980. height: 1.45833vw;
  981. margin-left: 0.364583vw;
  982. margin-top: 0.5vw;
  983. line-height: 1.45833vw;
  984. }
  985. .categoryBox /deep/.ant-divider-vertical{
  986. height: 0.8vw;
  987. margin: 0 0.390625vw;
  988. margin-top: 0.4vw;
  989. }
  990. .categoryBox div{
  991. float: left;
  992. }
  993. .approvalBox{
  994. border-radius: 0.625vw;
  995. height: 1.145833vw;
  996. line-height: 1.145833vw;
  997. padding: 0px 0.41666vw;
  998. font-size: 0.729166vw;
  999. margin-left: 0.9375vw;
  1000. font-weight: normal;
  1001. margin-top: 0.6vw;
  1002. }
  1003. .stateBox1{
  1004. background: rgba(255,144,13,0.04);
  1005. color: #FF900D;
  1006. }
  1007. .stateBox2{
  1008. background: rgba(64,108,196,0.04);
  1009. color: #406CC4;
  1010. }
  1011. .stateBox3{
  1012. background: rgba(255,144,13,0.04);
  1013. color: #FF900D;
  1014. }
  1015. .stateBox4{
  1016. background: rgba(248,78,76,0.04);
  1017. color: #F84E4C;
  1018. }
  1019. .contentDataMain{
  1020. position: absolute;
  1021. background: #FAFAFA;
  1022. height: 100%;
  1023. overflow: scroll;
  1024. }
  1025. .searchBoxContent{
  1026. margin: 0px 10.94vw;
  1027. border-bottom-left-radius: 10px;
  1028. border-bottom-right-radius: 10px;
  1029. margin-bottom: 2vw;
  1030. }
  1031. .noDataBox{
  1032. width: 100%;
  1033. text-align: center;
  1034. padding: 1.71875vw 0px 3.91vw 0px;
  1035. }
  1036. .noData{
  1037. width:35.2vw;
  1038. }
  1039. .DataBoxContent{
  1040. width:100%;
  1041. background: #fff;
  1042. display: inline-block;
  1043. .ant-input-disabled {
  1044. color: rgba(0, 0, 0, 0.65);
  1045. background-color: #fff;
  1046. cursor: auto;
  1047. }
  1048. }
  1049. .commentTitle{
  1050. color: #202124;
  1051. font-size: 0.9375vw;
  1052. font-weight: 550;
  1053. display: flex;
  1054. width: 100%;
  1055. margin-bottom: 0.8854vw;
  1056. align-items: center;
  1057. }
  1058. .submitBox{
  1059. width: 100%;
  1060. display: inline-block;
  1061. }
  1062. .titleRight{
  1063. margin-left: auto;
  1064. border: 2px solid #EEEEEE;
  1065. border-radius: 6px;
  1066. color: #202124;
  1067. font-size: 0.73vw;
  1068. height: 1.875vw;
  1069. overflow: hidden;
  1070. background: #EEEEEE;
  1071. }
  1072. .titleRight /deep/.ant-radio-button-wrapper{
  1073. border-radius: 0vw;
  1074. background: #eee;
  1075. font-weight: 400;
  1076. border-color: #eeeeee00;
  1077. height: calc(1.875vw - 4px);
  1078. line-height: calc(1.875vw - 4px);
  1079. box-shadow: none!important;
  1080. }
  1081. .titleRight /deep/.ant-radio-button-wrapper:focus{
  1082. box-shadow: none!important;
  1083. }
  1084. .titleRight /deep/.ant-radio-button-wrapper:hover{
  1085. color: #202124;
  1086. }
  1087. .titleRight /deep/.ant-radio-button-wrapper:before{
  1088. background-color: #d9d9d900;
  1089. }
  1090. .titleRight /deep/.ant-radio-button-wrapper-checked{
  1091. border-radius: 6px;
  1092. box-shadow: none!important;
  1093. background: #fff;
  1094. font-weight: 400;
  1095. border-color: #EEEEEE;
  1096. color: #202124;
  1097. box-shadow:none;
  1098. }
  1099. .titleRight /deep/.ant-radio-button{
  1100. display: none;
  1101. }
  1102. .titleRight /deep/.ant-radio-button-wrapper-checked:focus{
  1103. box-shadow: none!important;
  1104. }
  1105. .titleRight /deep/.ant-radio-button-wrapper-checked:hover{
  1106. background: #fff;
  1107. border-color: #EEEEEE;
  1108. }
  1109. .noDataText{
  1110. color:#C0C0C0;
  1111. font-size:1.14vw;
  1112. }
  1113. .tabBoxContent{
  1114. display: flow-root;
  1115. width: 78.12vw;
  1116. margin: 0px 10.94vw;
  1117. background: #fff;
  1118. margin-top: 1.25vw;
  1119. border-top-left-radius: 10px;
  1120. border-top-right-radius: 10px;
  1121. }
  1122. .tabBoxContent div{
  1123. text-align: center;
  1124. float: left;
  1125. padding: 0px 2.0833vw;
  1126. display: flex;
  1127. flex-direction: column;
  1128. }
  1129. .tabBoxContent span{
  1130. padding-top: 1.5625vw;
  1131. width: 4.64vw;
  1132. color: #202124;
  1133. font-size: 0.9375vw;
  1134. cursor: pointer;
  1135. display: inline-block;
  1136. }
  1137. .tabBoxContent img{
  1138. margin-top: 0.9375vw;
  1139. width:4.64vw;
  1140. }
  1141. ::-webkit-scrollbar{
  1142. display:none;
  1143. }
  1144. .listBoxItemContent{
  1145. padding: 0px 1.5625vw;
  1146. border: 1px solid #EFEFEF;
  1147. border-radius: 0.52vw;
  1148. margin-bottom: 1.25vw;
  1149. }
  1150. .listItemClass{
  1151. background: #fff;
  1152. }
  1153. .albumUserList{
  1154. display: flex;
  1155. align-items: center;
  1156. color: #5E5E5E;
  1157. font-size: 0.9375vw;
  1158. margin-top: 0.625vw;
  1159. }
  1160. .albumUserList div{
  1161. margin-left: 0.52vw;
  1162. }
  1163. .albumUserList div:last-child{
  1164. margin-left: 0.9375vw;
  1165. }
  1166. .albumHead{
  1167. width: 1.6666vw;
  1168. height: 1.6666vw;
  1169. }
  1170. .bottomBorder{
  1171. background: #EEEEEE;
  1172. margin-bottom: 0px;
  1173. }
  1174. .userTop{
  1175. margin: 0px 10.94vw;
  1176. background: #fff;
  1177. padding: 2.0833vw;
  1178. margin-top: 1.5104vw;
  1179. display: flex;
  1180. border-radius: 10px;
  1181. }
  1182. .userTopAdd{
  1183. margin: 0px 10.94vw;
  1184. background: #fff;
  1185. padding: 1.3541vw 1.979vw 2.0833vw 1.3541vw;
  1186. margin-top: 1.5104vw;
  1187. border-radius: 10px;
  1188. }
  1189. .albumPhoto{
  1190. float: right;
  1191. }
  1192. .albumPhoto img{
  1193. width: 16.9791vw;
  1194. height: 12.8125vw;
  1195. border-radius: 0.625vw;
  1196. }
  1197. .albumPhoto div{
  1198. color: #fff;
  1199. font-size: 0.8333vw;
  1200. margin-top: -2.4vw;
  1201. text-align: right;
  1202. padding-right: 0.8vw;
  1203. height: 2.4vw;
  1204. line-height: 2.4vw;
  1205. width: 100%;
  1206. position: relative;
  1207. border-radius: 0.625vw;
  1208. background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.66) 100%);
  1209. }
  1210. .albumTimesList{
  1211. display: inline-block;
  1212. margin-top: 1.197vw;
  1213. }
  1214. .timesBox{
  1215. display: flex;
  1216. align-items: center;
  1217. flex-direction: column;
  1218. float: left;
  1219. margin-right: 3.59375vw;
  1220. color: #202124;
  1221. }
  1222. .timesBox div:first-child{
  1223. font-size: 1.25vw;
  1224. font-weight: 550;
  1225. }
  1226. .timesBox div:last-child{
  1227. font-size: 0.8333vw;
  1228. color: #5E5E5E;
  1229. }
  1230. .albumTitle{
  1231. color: #202124;
  1232. font-size: 1.5625vw;
  1233. text-align: left;
  1234. font-weight: normal;
  1235. display: flex;
  1236. justify-items: center;
  1237. }
  1238. .userEnd{
  1239. margin-left: auto;
  1240. }
  1241. .listBox{
  1242. padding-bottom: 1.5625vw;
  1243. background: #fff;
  1244. }
  1245. .button-group {
  1246. width:100%;
  1247. display:flex;
  1248. margin-top: 0.9375vw;
  1249. >button {
  1250. width: 9.89583vw;
  1251. height: 2.91666vw;
  1252. font-size: 0.9375vw;
  1253. border-radius: 0.72916vw;
  1254. }
  1255. }
  1256. .button-groupAdd {
  1257. margin-top: 0px;
  1258. margin-left: auto;
  1259. width: auto;
  1260. display:flex;
  1261. >button {
  1262. width: 7.96875vw;
  1263. height: 2.5vw;
  1264. font-size: 0.9375vw;
  1265. border-radius: 4px;
  1266. }
  1267. }
  1268. .lineBorder{
  1269. margin-top: 0px;
  1270. margin-bottom: 0px;
  1271. width: 74.12vw;
  1272. min-width: 74.12vw;
  1273. margin-left: 2vw;
  1274. }
  1275. .detailBox{
  1276. width: 74.12vw;
  1277. height: 23.3854vw;
  1278. border-radius: 0.416666vw;
  1279. border: 1px solid #EEEEEE;
  1280. margin: 1.5625vw 2vw;
  1281. padding: 1.5625vw 1.35416vw;
  1282. font-size: 1vw;
  1283. }
  1284. .tableBoxAlbum{
  1285. margin-bottom: 2vw;
  1286. }
  1287. .tableBoxAlbum /deep/.ant-table-thead{
  1288. font-size: 0.9375vw;
  1289. color: #202124;
  1290. background: #F9F9FA;
  1291. }
  1292. .tableBoxAlbum /deep/tr{
  1293. height: 3.69791vw;
  1294. }
  1295. .tableBoxAlbum /deep/.ant-table-column-title{
  1296. font-weight: 550;
  1297. font-size: 0.9375vw;
  1298. }
  1299. .tableBoxAlbum /deep/.ant-table-tbody{
  1300. font-size: 0.9375vw;
  1301. color: #202124;
  1302. }
  1303. .tableBoxAlbum /deep/td{
  1304. border: none;
  1305. }
  1306. .tableBoxAlbum /deep/.ant-table-row{
  1307. height: 4vw;
  1308. }
  1309. .titleAlbum{
  1310. font-size: 0.9375vw;
  1311. color: #202124;
  1312. margin-top: 1.875vw;
  1313. }
  1314. .albumBox{
  1315. display: flex;
  1316. padding: 1.25vw 2vw;
  1317. }
  1318. .albumBoxLeft{
  1319. width: 13.125vw;
  1320. }
  1321. .albumBoxRight{
  1322. width: 59.6vw;
  1323. margin-left: auto;
  1324. }
  1325. .creatBtn{
  1326. background:#406CC4;
  1327. color:#fff;
  1328. width: 6.40625vw;
  1329. height: 1.875vw;
  1330. font-size: 0.9375vw;
  1331. }
  1332. .albumList{
  1333. border: 1px solid #EFEFEF;
  1334. border-radius: 0.52vw;
  1335. margin-top: 1.3541vw;
  1336. min-height: 12vw;
  1337. }
  1338. .albumitem{
  1339. width: 100%;
  1340. height: 4.42708vw;
  1341. font-size: 0.9375vw;
  1342. color: #202124;
  1343. display: flex;
  1344. align-items: center;
  1345. cursor: pointer;
  1346. }
  1347. .leftPoint{
  1348. width: 0.8vw;
  1349. height: 0.364583vw;
  1350. background: #406CC4;
  1351. border-radius: 2px 2px 2px 2px;
  1352. margin-left: 1.5625vw;
  1353. margin-right: 0.677vw;
  1354. }
  1355. .leftPoint0{
  1356. width: 0.5vw;
  1357. height: 0.34vw;
  1358. background: #406CC4;
  1359. border-radius: 2px 2px 2px 2px;
  1360. margin-left: 1.5625vw;
  1361. margin-right: 0.677vw;
  1362. }
  1363. .pointText{
  1364. width: 18vw;
  1365. text-overflow:ellipsis;
  1366. overflow: hidden;
  1367. white-space:nowrap;
  1368. }
  1369. .albumitemBtn{
  1370. margin-left:auto;
  1371. color: #406CC4;
  1372. margin-right: 0.9375vw;
  1373. width: 7vw;
  1374. align-items: center;
  1375. display: flex;
  1376. }
  1377. .albumitemBtn i:last-child{
  1378. margin-left: 0.73vw;
  1379. }
  1380. .albumitemBtn i{
  1381. cursor: pointer;
  1382. }
  1383. .actionAlbum{
  1384. background: #ECF3FF;
  1385. }
  1386. .delBoxMain{
  1387. text-align: center;
  1388. }
  1389. .delBox{
  1390. width: 29.16vw!important;
  1391. height: 19.16vw;
  1392. }
  1393. .confirmImg{
  1394. width:3.854vw;
  1395. margin-top: 0.6vw;
  1396. margin-bottom: 2.03125vw;
  1397. }
  1398. .confirmTitle{
  1399. color: #202124;
  1400. font-size: 1.04vw;
  1401. margin-bottom: 0.52vw;
  1402. }
  1403. .confirmContent{
  1404. color: #5E5E5E;
  1405. font-size: 0.9375vw;
  1406. margin-bottom: 2.7vw;
  1407. }
  1408. .btnConfirmOk{
  1409. -moz-user-select: none;
  1410. -khtml-user-select: none;
  1411. user-select: none;
  1412. width: 8.02vw!important;
  1413. height: 2.4vw;
  1414. line-height: 2.4vw;
  1415. text-align: center;
  1416. color: #fff;
  1417. background: #406CC4;
  1418. font-size: 0.9375vw;
  1419. cursor: pointer;
  1420. display: inline-block;
  1421. margin-right: 1.77vw;
  1422. }
  1423. .btnConfirmOk:hover{
  1424. background: #385FAD;
  1425. }
  1426. .btnConfirmCancel{
  1427. -moz-user-select: none;
  1428. -khtml-user-select: none;
  1429. user-select: none;
  1430. width: 8.02vw!important;
  1431. height: 2.4vw;
  1432. line-height: 2.4vw;
  1433. text-align: center;
  1434. color: #5E5E5E;
  1435. border: 1px solid #C0C0C0;
  1436. font-size: 0.9375vw;
  1437. cursor: pointer;
  1438. display: inline-block;
  1439. }
  1440. .btnConfirmCancel:hover{
  1441. background: #f3f3f3;
  1442. }
  1443. .delBox{
  1444. width: 29.16vw!important;
  1445. height: 19.16vw;
  1446. }
  1447. .commentAdd /deep/input{
  1448. height: 2.8125vw;
  1449. font-size: 1.14583vw;
  1450. border-radius: 0.41666vw;
  1451. }
  1452. .commentAdd /deep/.ant-input-search-button{
  1453. font-size: 1.14583vw;
  1454. background-color: #406cc4;
  1455. border-color: #406cc4;
  1456. height: 2.8125vw;
  1457. width: 6.09375vw;
  1458. border-radius: 0.41666vw!important;
  1459. }
  1460. .commentList{
  1461. margin-top: 0.73vw;
  1462. padding: 0.8vw 0px;
  1463. border: 1px solid #EEEEEE;
  1464. border-radius: 0.41666vw;
  1465. }
  1466. .commentLine{
  1467. margin-top:1vw;
  1468. margin-bottom: 0px;
  1469. }
  1470. .commentPadd{
  1471. padding-left:1.354vw;
  1472. padding-right: 2vw;
  1473. }
  1474. .albumListClass{
  1475. padding-left: 1.354vw;
  1476. padding-right: 2.1875vw;
  1477. display: flex;
  1478. }
  1479. .leftImg{
  1480. width: 0.8333vw;
  1481. height: 0.8333vw;
  1482. margin-top: 1.6vw;
  1483. margin-right: 0.4166vw;
  1484. cursor: pointer;
  1485. }
  1486. .leftImgRotate{
  1487. transform: rotate(-90deg);
  1488. }
  1489. .getMoreList{
  1490. color: #C0C0C0;
  1491. font-size: 0.9375vw;
  1492. text-align: center;
  1493. margin-top: 3.4375vw;
  1494. cursor: pointer;
  1495. }
  1496. .addTitle{
  1497. display: flex;
  1498. align-items: center;
  1499. width: 100%;
  1500. }
  1501. .addTitleText{
  1502. font-weight: 550;
  1503. font-size: 1.14583vw;
  1504. color: #202124;
  1505. width: 30%;
  1506. padding-left: 0.7vw;
  1507. }
  1508. .userTopAdd .ant-form {
  1509. .ant-form-item {
  1510. margin-bottom: 2.08vw;
  1511. }
  1512. .ant-form-item:first-child {
  1513. margin-top: 1.51vw;
  1514. }
  1515. }
  1516. .knowledgeAddUpdateLabel /deep/ label::before {
  1517. content: '';
  1518. width: 0.3125vw;
  1519. height: 0.3125vw;
  1520. border-radius: 0.3125vw;
  1521. background: #fff;
  1522. margin-bottom: 0.25vw;
  1523. vertical-align: middle;
  1524. font-size: 0.44vw;
  1525. display: inline-block;
  1526. font-family: SimSun, sans-serif;
  1527. margin-right: 0.41666vw;
  1528. }
  1529. .userTopAdd /deep/ .ant-form-item-required::before {
  1530. width: 0.3125vw;
  1531. height: 0.3125vw;
  1532. border-radius: 0.3125vw;
  1533. background: #F84E4C!important;
  1534. margin-bottom: 0.25vw;
  1535. vertical-align: middle;
  1536. font-size: 0.44vw;
  1537. }
  1538. .knowledgeAddUpdateLabel /deep/ label {
  1539. font-size: 0.9375vw;
  1540. height: 2.7vw;
  1541. }
  1542. .oneline /deep/ label {
  1543. line-height: 2.7vw;
  1544. }
  1545. .knowledgeAddUpdateLabel /deep/ textarea {
  1546. font-size: 0.9375vw;
  1547. }
  1548. .knowledgeAddUpdateLabel /deep/.ant-form-item-children{
  1549. display: block;
  1550. }
  1551. .addItemBox{
  1552. height: 2.7vw;
  1553. width: 21.71875vw;
  1554. font-size: 0.9375vw;
  1555. }
  1556. .addItemBox /deep/input{
  1557. height: 2.7vw;
  1558. font-size: 0.9375vw;
  1559. }
  1560. .addItemBox /deep/.ant-select-selection{
  1561. height: 2.7vw;
  1562. }
  1563. .addItemBox /deep/.ant-select-selection-selected-value{
  1564. height: 2.7vw;
  1565. line-height: 2.7vw;
  1566. }
  1567. .addItemBox /deep/.ant-select-selection__rendered{
  1568. height: 2.7vw;
  1569. }
  1570. .addItemBox /deep/.ant-select-arrow{
  1571. margin-top: -0.55vw;
  1572. }
  1573. .classifyIconBox{
  1574. display: none;
  1575. color: rgba(0,0,0,.25);
  1576. font-size: 1vw!important;
  1577. margin-top: -0.55vw!important;
  1578. -webkit-transform-origin: 90% 80%;
  1579. position: absolute;
  1580. right: 1vw;
  1581. transform-origin: 0.5vw 0.45vw;
  1582. }
  1583. .ant-cascader-picker-focused .classifyIconBox{
  1584. transform:rotate(180deg);
  1585. }
  1586. .uploadBox{
  1587. width: 26.927vw;
  1588. min-height: 11.979vw;
  1589. display: block;
  1590. }
  1591. .rightText{
  1592. position: absolute;
  1593. right: 3vw;
  1594. top: 2vw;
  1595. font-size: 0.9375vw;
  1596. color: #C0C0C0;
  1597. }
  1598. .uploadImg{
  1599. width: 12vw;
  1600. }
  1601. .clearBtn {
  1602. background: none;
  1603. color: #3294F7;
  1604. text-shadow: none;
  1605. padding: 0px 6px;
  1606. border: none;
  1607. box-shadow: none;
  1608. }
  1609. .imgBox{
  1610. display: flex;
  1611. flex-direction: column;
  1612. width: 12vw;
  1613. }
  1614. .btnsty{
  1615. height: 0.78125vw;
  1616. }
  1617. .btnstydel{
  1618. height: 1.2vw;
  1619. margin-left: 0.6vw;
  1620. }
  1621. .ant-upload-drag-icon img{
  1622. width: 2.29166vw;
  1623. height: 2.29166vw;
  1624. }
  1625. .ant-upload-text{
  1626. font-size: 0.833333vw!important;
  1627. margin-bottom: 0.4687vw!important;
  1628. line-height: 1.5vw;
  1629. }
  1630. </style>
  1631. <style scoped>
  1632. .addItemBox /deep/.ant-cascader-picker-clear svg{
  1633. width: 0.8vw;
  1634. height: 0.8vw;
  1635. }
  1636. .addItemBox /deep/.ant-cascader-picker-clear{
  1637. text-align: right;
  1638. width: 1.2vw;
  1639. height: 1.2vw;
  1640. margin-top: -0.4vw;
  1641. background: #fff;
  1642. }
  1643. /deep/ .ant-cascader-menus {
  1644. left: 0!important;
  1645. }
  1646. /deep/ .ant-cascader-menu:last-child {
  1647. margin-right: 0!important;
  1648. }
  1649. /deep/ .ant-modal-wrap {
  1650. overflow: inherit;
  1651. }
  1652. </style>