resourcesList.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864
  1. <template>
  2. <div class="resourcesList">
  3. <div class="headCon">
  4. <div class="headLeft">
  5. <img class="tipImg" src="@/views/Editor/CanvasTool/imgs/zyk.png" alt="" />
  6. <div class="title">资源库</div>
  7. </div>
  8. <div class="headright">
  9. <img @click="emits('close')" class="closeBtn" src="../../cloudCoachElement/cloudCoachList/imgs/close.png" alt="" />
  10. </div>
  11. </div>
  12. <div class="content">
  13. <div class="tabTools">
  14. <div class="tabCon">
  15. <div
  16. class="tab"
  17. @click="handleTabChange(item.value)"
  18. :class="{ active: item.value === queryData.sourceType }"
  19. v-for="item in tabData"
  20. :key="item.value"
  21. >
  22. {{ item.label }}
  23. </div>
  24. </div>
  25. <div></div>
  26. </div>
  27. <div class="typeTools">
  28. <div class="typeTabCon">
  29. <div
  30. v-for="item in resourcesTypeOption"
  31. :key="item.value"
  32. @click="handleTypeChange(item.value)"
  33. :class="['queryTip', queryData.type === item.value && 'active']"
  34. >
  35. {{ item.text }}
  36. </div>
  37. </div>
  38. <div class="query">
  39. <Input :placeholder="'请输入搜索关键词'" clearable v-model:value="queryData.name" @enter="handleQuery" @clear="handleQuery">
  40. <template #prefix>
  41. <img class="img" src="../../cloudCoachElement/cloudCoachList/imgs/query.png" alt="" />
  42. </template>
  43. <template #suffix>
  44. <div class="queryBtn" @click="handleQuery">搜索</div>
  45. </template>
  46. </Input>
  47. </div>
  48. </div>
  49. <div class="musicListCon">
  50. <div class="queryFrom" :class="{ isExpandAct: !isExpand }">
  51. <div class="queryFromList">
  52. <div class="tit">乐器:</div>
  53. <div class="queryFromCon">
  54. <template v-for="item in subjectList">
  55. <div
  56. :class="['queryTip', queryData.subject.id === item.instruments[0].id && 'active']"
  57. @click="handleSubjectChange(item.instruments[0])"
  58. v-if="item.instruments.length === 1"
  59. :key="item.id"
  60. >
  61. {{ item.instruments[0].name }}
  62. </div>
  63. <Popover v-model:value="item.isExpand" trigger="mouseenter" v-else :offset="-4" :key="item.id + '_'">
  64. <template #content>
  65. <PopoverMenuItem
  66. @click="
  67. () => {
  68. item.isExpand = false
  69. handleSubjectChange(row)
  70. }
  71. "
  72. v-for="row in item.instruments"
  73. :key="row.id"
  74. :active="row.id === queryData.subject.id"
  75. >{{ row.name }}</PopoverMenuItem
  76. >
  77. </template>
  78. <div class="queryTip" :class="{ hoverActive: isActiveSubjectPop(item) }">
  79. <div>{{ isActiveSubjectPop(item) ? queryData.subject.name : item.name }}</div>
  80. <img src="../../cloudCoachElement/cloudCoachList/imgs/jt.png" alt="" />
  81. </div>
  82. </Popover>
  83. </template>
  84. </div>
  85. </div>
  86. <div class="queryFromList">
  87. <div class="tit">标签:</div>
  88. <div class="queryFromCon">
  89. <div
  90. v-for="item in materialTagList"
  91. :key="item.id"
  92. @click="handleMaterialTagChange(item.id)"
  93. :class="['queryTip', queryData.materialTagId === item.id && 'active']"
  94. >
  95. {{ item.name }}
  96. </div>
  97. </div>
  98. </div>
  99. </div>
  100. <!-- <div v-show="queryData.sourceType === 2" @click="isExpand = !isExpand" class="isExpand" :class="{ active: isExpand }">
  101. <div>{{ isExpand ? "收起" : "展开" }}</div>
  102. <img src="../../cloudCoachElement/cloudCoachList/imgs/jiao.png" alt="" />
  103. </div> -->
  104. <div class="musicListConBox" v-loading="loading">
  105. <div class="musicList" :class="{ empty: !musicList.length && !loading }">
  106. <div class="musicListBox" v-if="musicList.length && !loading">
  107. <div class="musicCon" v-for="item in musicList" :key="item.id" @click="handlePreview(item)">
  108. <div class="coverImgCon">
  109. <img v-if="item.sourceFrom === 'PLATFORM'" class="jxImg" src="./imgs/jxImg.png" alt="" />
  110. <div class="addBtn" @click.stop="handleAddResources(item)">添加</div>
  111. <img class="coverImg" :src="item.coverImg" />
  112. </div>
  113. <div class="musicDetails">
  114. <div class="musLeft">
  115. <img class="labelImg" :src="item.type === 'IMG' ? imgImg : item.type === 'SONG' ? audioImg : videoImg" />
  116. <div class="musicTitCon">
  117. <EllipsisScroll class="musicTit" :title="item.highName || ''" />
  118. </div>
  119. </div>
  120. <div class="musRight">
  121. <img
  122. v-if="queryParams.fromType !== 'PLATFORM'"
  123. class="sc"
  124. @click.stop="handleFavorite(item)"
  125. :src="item.favoriteFlag ? scActImg : scImg"
  126. alt=""
  127. />
  128. </div>
  129. </div>
  130. </div>
  131. </div>
  132. <Empty v-if="!musicList.length && !loading" />
  133. </div>
  134. <div class="pagination" v-show="musicList.length">
  135. <el-pagination
  136. layout="prev, pager, next"
  137. :default-page-size="queryData.rows"
  138. :current-page="queryData.page"
  139. @current-change="handleCurrentChange"
  140. :total="queryData.total"
  141. />
  142. </div>
  143. </div>
  144. </div>
  145. </div>
  146. <Modal
  147. :contentStyle="{
  148. width: previewData.type === 'IMG' ? '900px' : '800px',
  149. height: previewData.type === 'IMG' ? '700px' : '500px',
  150. boxShadow: '0px 2px 10px 0px rgba(0,0,0,0.08)',
  151. borderRadius: '12px',
  152. padding: '0'
  153. }"
  154. v-model:visible="previewData.previewVisible"
  155. >
  156. <div class="previewContent">
  157. <div class="preHeadCon">
  158. <div class="headTitle">{{ previewData.name }}</div>
  159. <div class="headright">
  160. <img @click="previewData.previewVisible = false" class="closeBtn" src="../../cloudCoachElement/cloudCoachList/imgs/close.png" alt="" />
  161. </div>
  162. </div>
  163. <div class="preCon">
  164. <img v-if="previewData.type === 'IMG'" class="coverImg" :src="previewData.content" />
  165. <template v-else-if="previewData.type === 'SONG'">
  166. <img class="coverImg" :src="previewData.coverImg" />
  167. <div class="controller-mask"></div>
  168. <AudioPlayer class="audioPlayer" :src="previewData.content" :loop="false" />
  169. </template>
  170. <VideoPlayer v-else-if="previewData.type === 'VIDEO'" class="videoPlayer" :src="previewData.content" :width="100" :height="100" />
  171. </div>
  172. </div>
  173. </Modal>
  174. </div>
  175. </template>
  176. <script setup lang="ts">
  177. import { ElLoading, ElPagination } from "element-plus"
  178. import Input from "@/components/Input.vue"
  179. import Popover from "@/components/Popover.vue"
  180. import PopoverMenuItem from "@/components/PopoverMenuItem.vue"
  181. import Empty from "@/components/Empty"
  182. import EllipsisScroll from "@/components/ellipsisScroll"
  183. import { reactive, ref } from "vue"
  184. import { getMaterialQueryPage, getSubjectListApi, favoriteApi, getMaterialTagApi } from "@/api/pptOperate"
  185. import { httpAjax } from "@/plugins/httpAjax"
  186. import queryParams from "@/queryParams"
  187. import scActImg from "../../cloudCoachElement/cloudCoachList/imgs/scAct.png"
  188. import scImg from "../../cloudCoachElement/cloudCoachList/imgs/sc.png"
  189. import audioImg from "./imgs/audio.png"
  190. import imgImg from "./imgs/img.png"
  191. import videoImg from "./imgs/video.png"
  192. import { CODE_ERR_CANCELED } from "@/libs/auth"
  193. import Modal from "@/components/Modal.vue"
  194. import AudioPlayer from "../../AudioElement/AudioPlayer.vue"
  195. import VideoPlayer from "../../VideoElement/VideoPlayer/index.vue"
  196. const emits = defineEmits<{
  197. (event: "update", item: Record<string, any>): void
  198. (event: "close"): void
  199. }>()
  200. function handleAddResources(item: Record<string, any>) {
  201. emits("update", item)
  202. }
  203. const previewData = reactive({
  204. previewVisible: false,
  205. type: "",
  206. name: "",
  207. content: "",
  208. coverImg: ""
  209. })
  210. function handlePreview(item: Record<string, any>) {
  211. previewData.previewVisible = true
  212. previewData.type = item.type
  213. previewData.name = item.name
  214. previewData.content = item.content
  215. previewData.coverImg = item.coverImg
  216. }
  217. const tabData =
  218. queryParams.fromType === "PLATFORM"
  219. ? [
  220. {
  221. label: "共享资源",
  222. value: 1
  223. }
  224. ]
  225. : [
  226. {
  227. label: "相关资源",
  228. value: 5
  229. },
  230. {
  231. label: "共享资源",
  232. value: 2
  233. },
  234. {
  235. label: "我的资源",
  236. value: 3
  237. },
  238. {
  239. label: "我的收藏",
  240. value: 4
  241. }
  242. ]
  243. // 资源类型
  244. const resourcesTypeOption = [
  245. { text: "图片", value: "IMG" },
  246. { text: "音频", value: "SONG" },
  247. { text: "视频", value: "VIDEO" }
  248. ]
  249. // 标签
  250. const materialTagList = ref<any[]>([])
  251. // 乐器
  252. const subjectList = ref<any[]>([])
  253. const queryData = reactive({
  254. page: 1,
  255. rows: 20,
  256. total: 0,
  257. type: "IMG",
  258. materialTagId: "",
  259. sourceType: tabData[0].value,
  260. name: "",
  261. subject: {
  262. id: "",
  263. name: ""
  264. }
  265. })
  266. const musicList = ref<any[]>([])
  267. const loading = ref(true)
  268. const vLoading = ElLoading.directive
  269. const isExpand = ref(true)
  270. getQueryList()
  271. function getQueryList() {
  272. Promise.all([httpAjax(getSubjectListApi), httpAjax(getMaterialTagApi)]).then(res => {
  273. const [subjectListRes, materialTagRes] = res
  274. if (subjectListRes.code === 200) {
  275. subjectList.value = subjectListRes.data.map((item: any) => {
  276. return item.instruments.length > 1 ? Object.assign(item, { isExpand: ref(false) }) : item
  277. })
  278. // 赋默认值
  279. handleSubjectDefault()
  280. }
  281. if (materialTagRes.code === 200) {
  282. materialTagList.value = [{ id: "", name: "全部" }, ...(materialTagRes.data?.rows || [])]
  283. }
  284. handleQuery()
  285. })
  286. }
  287. function handleSubjectDefault() {
  288. if (subjectList.value.length > 0) {
  289. const instruments = subjectList.value.reduce((arr, item) => {
  290. arr.push(...item.instruments)
  291. return arr
  292. }, [])
  293. const instrumentId = queryParams.instrumentId
  294. // 有id 就用id,没有就默认第一个
  295. const instrumentObj = instrumentId
  296. ? instruments.find((i: any) => {
  297. return i.id === instrumentId
  298. })
  299. : instruments[0]
  300. if (instrumentObj) {
  301. queryData.subject.id = instrumentObj.id
  302. queryData.subject.name = instrumentObj.name
  303. }
  304. }
  305. }
  306. function clearQueryData() {
  307. queryData.page = 1
  308. queryData.rows = 20
  309. queryData.total = 0
  310. queryData.name = ""
  311. queryData.materialTagId = ""
  312. queryData.subject = {
  313. id: "",
  314. name: ""
  315. }
  316. handleSubjectDefault()
  317. }
  318. function handleTabChange(sourceType: number) {
  319. clearQueryData()
  320. isExpand.value = true
  321. queryData.sourceType = sourceType
  322. handleQuery()
  323. }
  324. function handleSubjectChange(item: any) {
  325. queryData.subject.id = item.id
  326. queryData.subject.name = item.name
  327. handleQuery()
  328. }
  329. function handleMaterialTagChange(id: string) {
  330. queryData.materialTagId = id
  331. handleQuery()
  332. }
  333. function handleTypeChange(type: string) {
  334. queryData.type = type
  335. handleQuery()
  336. }
  337. function isActiveSubjectPop(item: any) {
  338. return item.instruments.some((i: any) => {
  339. return i.id === queryData.subject.id
  340. })
  341. }
  342. function handleCurrentChange(e: number) {
  343. queryData.page = e
  344. handleGetQuery()
  345. }
  346. function handleQuery() {
  347. queryData.page = 1
  348. queryData.rows = 20
  349. handleGetQuery()
  350. }
  351. let controller: AbortController
  352. function handleGetQuery() {
  353. loading.value = true
  354. let { sourceType, subject, type, materialTagId, name, page, rows } = queryData
  355. let musicalInstrumentId = subject.id
  356. const params = {
  357. name,
  358. type,
  359. sourceType,
  360. musicalInstrumentId,
  361. enableFlag: true,
  362. page,
  363. rows,
  364. materialTagId,
  365. lessonCoursewareKnowledgeId: [2, 5].includes(sourceType) ? queryParams.lessonCoursewareKnowledgeId : "" // 相关资源和共享资源需要这个
  366. }
  367. if (controller) {
  368. controller.abort()
  369. }
  370. controller = new AbortController()
  371. httpAjax(getMaterialQueryPage, params, controller).then(res => {
  372. // 自己关闭的时候不取消加载
  373. if (res.code === CODE_ERR_CANCELED) {
  374. return
  375. }
  376. if (res.code === 200) {
  377. musicList.value = res.data.rows.map((item: any) => {
  378. item.highName = highlightedText(item.name, queryData.name)
  379. return item
  380. })
  381. queryData.total = res.data.total
  382. }
  383. loading.value = false
  384. })
  385. }
  386. function handleFavorite(item: any) {
  387. httpAjax(favoriteApi, {
  388. favoriteFlag: item.favoriteFlag ? 0 : 1,
  389. materialId: item.id,
  390. type: item.type
  391. }).then(res => {
  392. if (res.code === 200) {
  393. item.favoriteFlag = !item.favoriteFlag
  394. }
  395. })
  396. }
  397. const highlightedText = (text: string, query: string) => {
  398. if (!text) {
  399. return ""
  400. }
  401. if (!query) {
  402. return text
  403. }
  404. const regex = new RegExp(`(${query})`, "gi")
  405. return text.replace(regex, '<span class="highlighted">$1</span>')
  406. }
  407. </script>
  408. <style lang="scss" scoped>
  409. .resourcesList {
  410. width: 100%;
  411. height: 100%;
  412. .headCon {
  413. width: 100%;
  414. height: 64px;
  415. border-bottom: 1px solid #eaeaea;
  416. display: flex;
  417. justify-content: space-between;
  418. align-items: center;
  419. .headLeft {
  420. margin-left: 30px;
  421. display: flex;
  422. align-items: center;
  423. .tipImg {
  424. width: 24px;
  425. height: 24px;
  426. }
  427. .title {
  428. font-weight: 600;
  429. font-size: 18px;
  430. color: #131415;
  431. margin-left: 8px;
  432. }
  433. }
  434. .headright {
  435. margin-right: 30px;
  436. display: flex;
  437. align-items: center;
  438. .closeBtn {
  439. width: 24px;
  440. height: 24px;
  441. cursor: pointer;
  442. &:hover {
  443. opacity: 0.8;
  444. }
  445. }
  446. }
  447. }
  448. .content {
  449. width: 100%;
  450. height: calc(100% - 64px);
  451. display: flex;
  452. flex-direction: column;
  453. .tabTools {
  454. flex-shrink: 0;
  455. width: 100%;
  456. padding: 24px 30px;
  457. display: flex;
  458. justify-content: space-between;
  459. align-items: center;
  460. .tabCon {
  461. display: flex;
  462. .tab {
  463. margin-right: 32px;
  464. font-weight: 400;
  465. font-size: 16px;
  466. color: #8b8d98;
  467. line-height: 22px;
  468. cursor: pointer;
  469. &:hover {
  470. opacity: 0.8;
  471. }
  472. &:last-child {
  473. margin-right: 0;
  474. }
  475. &.active {
  476. font-weight: 600;
  477. color: #131415;
  478. position: relative;
  479. &::after {
  480. content: "";
  481. position: absolute;
  482. width: 100%;
  483. height: 10px;
  484. background: linear-gradient(90deg, #77bbff 0%, rgba(163, 231, 255, 0.22) 100%);
  485. bottom: 0;
  486. left: 0;
  487. z-index: -1;
  488. }
  489. }
  490. }
  491. }
  492. }
  493. .typeTools {
  494. flex-shrink: 0;
  495. display: flex;
  496. justify-content: space-between;
  497. align-items: center;
  498. margin: 0 30px;
  499. padding-bottom: 16px;
  500. border-bottom: 1px solid #eaeaea;
  501. .typeTabCon {
  502. display: flex;
  503. align-items: center;
  504. .queryTip {
  505. margin-right: 16px;
  506. font-weight: 400;
  507. font-size: 14px;
  508. color: rgba(0, 0, 0, 0.6);
  509. line-height: 20px;
  510. padding: 6px 20px;
  511. background: #f5f6fa;
  512. border-radius: 16px;
  513. cursor: pointer;
  514. &:hover {
  515. background: #e8e9ed;
  516. color: #5d5d5e;
  517. }
  518. &.active {
  519. background: #198cfe;
  520. color: #ffffff;
  521. }
  522. }
  523. }
  524. .query {
  525. width: 400px;
  526. height: 36px;
  527. &::v-deep(.input) {
  528. align-items: center;
  529. padding: 0 3px 0 12px;
  530. border-radius: 18px;
  531. height: 100%;
  532. &:not(.disabled):hover,
  533. &.focused {
  534. .img {
  535. opacity: 1;
  536. }
  537. .queryBtn {
  538. opacity: 1;
  539. }
  540. }
  541. input {
  542. font-size: 14px;
  543. }
  544. .img {
  545. width: 16px;
  546. height: 16px;
  547. opacity: 0.4;
  548. }
  549. .queryBtn {
  550. width: 60px;
  551. height: 30px;
  552. background: #198cfe;
  553. border-radius: 16px;
  554. font-weight: 500;
  555. font-size: 14px;
  556. color: #ffffff;
  557. line-height: 30px;
  558. text-align: center;
  559. opacity: 0.4;
  560. cursor: pointer;
  561. &:hover {
  562. opacity: 0.8 !important;
  563. }
  564. }
  565. }
  566. }
  567. }
  568. .musicListCon {
  569. padding-top: 16px;
  570. width: 100%;
  571. flex-grow: 1;
  572. overflow: hidden;
  573. display: flex;
  574. flex-direction: column;
  575. .queryFrom {
  576. &.isExpandAct {
  577. height: 42px;
  578. overflow: hidden;
  579. }
  580. flex-shrink: 0;
  581. padding: 0 30px;
  582. .queryFromList {
  583. display: flex;
  584. margin-bottom: 4px;
  585. .tit {
  586. flex-shrink: 0;
  587. font-weight: 500;
  588. font-size: 14px;
  589. color: #131415;
  590. line-height: 32px;
  591. margin-right: 16px;
  592. }
  593. .queryFromCon {
  594. display: flex;
  595. flex-wrap: wrap;
  596. .queryTip {
  597. margin: 0 16px 12px 0;
  598. font-weight: 400;
  599. font-size: 14px;
  600. color: rgba(0, 0, 0, 0.6);
  601. line-height: 20px;
  602. padding: 6px 16px;
  603. background: #f5f6fa;
  604. border-radius: 6px;
  605. cursor: pointer;
  606. display: flex;
  607. align-items: center;
  608. & > img {
  609. width: 7px;
  610. height: 4px;
  611. margin-left: 6px;
  612. }
  613. &:hover {
  614. background: #e8e9ed;
  615. color: #5d5d5e;
  616. > img {
  617. transform: rotate(180deg);
  618. }
  619. }
  620. &.active {
  621. background: #d2ecff;
  622. color: rgba(0, 0, 0, 1);
  623. }
  624. &.hoverActive {
  625. background: #d2ecff;
  626. color: rgba(0, 0, 0, 1);
  627. }
  628. }
  629. }
  630. }
  631. }
  632. .isExpand {
  633. flex-shrink: 0;
  634. margin-bottom: 12px;
  635. cursor: pointer;
  636. display: flex;
  637. justify-content: center;
  638. font-weight: 400;
  639. font-size: 14px;
  640. color: #198cfe;
  641. line-height: 20px;
  642. align-items: center;
  643. &:hover {
  644. opacity: 0.8;
  645. }
  646. &.active > img {
  647. transform: rotate(0deg);
  648. }
  649. & > img {
  650. transform: rotate(180deg);
  651. margin-left: 4px;
  652. width: 10px;
  653. height: 10px;
  654. }
  655. }
  656. .musicListConBox {
  657. flex-grow: 1;
  658. overflow: hidden;
  659. .musicList {
  660. padding: 4px 0;
  661. height: calc(100% - 60px);
  662. overflow: auto;
  663. &.empty {
  664. display: flex;
  665. justify-content: center;
  666. align-items: center;
  667. }
  668. .musicListBox {
  669. width: calc(100% + 24px);
  670. margin-left: -24px;
  671. display: flex;
  672. flex-wrap: wrap;
  673. padding: 0 30px;
  674. .musicCon {
  675. margin-bottom: 24px;
  676. width: calc(25% - 24px);
  677. margin-left: 24px;
  678. border-radius: 12px;
  679. background: linear-gradient(0, #dbf1ff 0%, #e7f9ff 100%);
  680. outline: 1.5px solid #d3eef1;
  681. height: 213px;
  682. display: flex;
  683. flex-direction: column;
  684. overflow: hidden;
  685. cursor: pointer;
  686. &:nth-last-child(-n + 3) {
  687. margin-bottom: 0;
  688. }
  689. &:hover {
  690. outline: 2px solid #198cfe;
  691. }
  692. .coverImgCon {
  693. flex-shrink: 0;
  694. width: 100%;
  695. height: 170px;
  696. position: relative;
  697. .coverImg {
  698. width: 100%;
  699. height: 100%;
  700. object-fit: cover;
  701. object-position: top;
  702. }
  703. .jxImg {
  704. position: absolute;
  705. left: 0px;
  706. top: 0px;
  707. width: 50px;
  708. height: 27px;
  709. }
  710. .addBtn {
  711. position: absolute;
  712. top: 8px;
  713. right: 12px;
  714. width: 54px;
  715. height: 26px;
  716. background: #198cfe;
  717. border-radius: 4px;
  718. font-weight: 600;
  719. font-size: 13px;
  720. color: #ffffff;
  721. line-height: 26px;
  722. text-align: center;
  723. cursor: pointer;
  724. &:hover {
  725. opacity: 0.8;
  726. }
  727. }
  728. }
  729. .musicDetails {
  730. flex-grow: 1;
  731. padding: 0 12px;
  732. display: flex;
  733. align-items: center;
  734. justify-content: space-between;
  735. .musLeft {
  736. display: flex;
  737. align-items: center;
  738. margin-right: 14px;
  739. overflow: hidden;
  740. .labelImg {
  741. flex-shrink: 0;
  742. width: 16px;
  743. height: 16px;
  744. }
  745. .musicTitCon {
  746. margin-left: 6px;
  747. overflow: hidden;
  748. .musicTit {
  749. font-weight: 600;
  750. font-size: 14px;
  751. color: #131415;
  752. line-height: 20px;
  753. &::v-deep(.highlighted) {
  754. color: $themeColor;
  755. }
  756. }
  757. }
  758. }
  759. .musRight {
  760. flex-shrink: 0;
  761. .sc {
  762. width: 26px;
  763. height: 26px;
  764. cursor: pointer;
  765. &:hover {
  766. opacity: 0.8;
  767. }
  768. }
  769. }
  770. }
  771. }
  772. }
  773. }
  774. .pagination {
  775. padding: 0 30px;
  776. display: flex;
  777. justify-content: flex-end;
  778. align-items: center;
  779. height: 60px;
  780. }
  781. }
  782. }
  783. }
  784. }
  785. .previewContent {
  786. width: 100%;
  787. height: 100%;
  788. .preHeadCon {
  789. display: flex;
  790. justify-content: flex-end;
  791. height: 50px;
  792. position: relative;
  793. .headTitle {
  794. position: absolute;
  795. left: 50%;
  796. top: 50%;
  797. transform: translate(-50%, -50%);
  798. font-weight: 600;
  799. font-size: 18px;
  800. color: #131415;
  801. width: 600px;
  802. white-space: nowrap;
  803. overflow: hidden;
  804. text-overflow: ellipsis;
  805. text-align: center;
  806. }
  807. .headright {
  808. display: flex;
  809. align-items: center;
  810. margin-right: 20px;
  811. .closeBtn {
  812. width: 24px;
  813. height: 24px;
  814. cursor: pointer;
  815. &:hover {
  816. opacity: 0.8;
  817. }
  818. }
  819. }
  820. }
  821. .preCon {
  822. width: 100%;
  823. height: calc(100% - 50px);
  824. position: relative;
  825. .coverImg {
  826. width: 100%;
  827. height: 100%;
  828. object-fit: contain;
  829. }
  830. .controller-mask {
  831. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==)
  832. repeat-x bottom;
  833. height: 98px;
  834. width: 100%;
  835. position: absolute;
  836. bottom: 0;
  837. }
  838. .audioPlayer {
  839. width: 100%;
  840. position: absolute;
  841. left: 0;
  842. bottom: 0;
  843. background: transparent;
  844. }
  845. .videoPlayer {
  846. width: 100% !important;
  847. height: 100% !important;
  848. }
  849. }
  850. }
  851. </style>