resourcesList.vue 24 KB

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