library.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  1. <template>
  2. <div class="pb_content">
  3. <div class="pb_head top">
  4. <span>素材库</span>
  5. <div v-if="choose == 0" @click="addImg($event)">
  6. <input
  7. type="file"
  8. accept="image/png,image/gif,image/jpeg"
  9. style="display: none"
  10. @change="beforeUpload1($event, 1)"
  11. />
  12. <div class="uploadThing">上传图片</div>
  13. </div>
  14. <div v-if="choose == 1" @click="addImg($event)">
  15. <input
  16. type="file"
  17. accept="video/mp4,video/quicktime,video/x-msvideo"
  18. style="display: none"
  19. @change="beforeUpload2($event, 2)"
  20. />
  21. <div class="uploadThing">上传视频</div>
  22. </div>
  23. <div v-if="choose == 2" @click="addImg($event)">
  24. <input
  25. type="file"
  26. accept="application/pdf,.ppt,.pptx,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  27. style="display: none"
  28. @change="beforeUpload2($event, 3)"
  29. />
  30. <div class="uploadThing">上传附件</div>
  31. </div>
  32. </div>
  33. <div class="pb_content_body" style="height: 70%">
  34. <div class="student_head">
  35. <div class="three">
  36. <div :class="choose == 0 ? 'choose' : ''" @click="sMtl(0)">图片</div>
  37. <div :class="choose == 1 ? 'choose' : ''" @click="sMtl(1)">视频</div>
  38. <div :class="choose == 2 ? 'choose' : ''" @click="sMtl(2)">附件</div>
  39. </div>
  40. </div>
  41. <div class="student_table">
  42. <div v-if="this.choose == 0" class="boxCss">
  43. <div class="out_box" v-for="(item, index) in chapInfo" :key="index">
  44. <div class="tup">
  45. <img
  46. :src="
  47. item.chapdataInfo ? JSON.parse(item.chapdataInfo).url : mtp
  48. "
  49. alt=""
  50. @click="
  51. handlePictureCardPreview(JSON.parse(item.chapdataInfo).url)
  52. "
  53. />
  54. <div class="deleteWord" @click="deleteM(item.id)">
  55. <img src="../../assets/icon/delete.png" alt="" />
  56. </div>
  57. </div>
  58. <div class="bottom_box">
  59. <div>
  60. {{
  61. item.chapdataInfo
  62. ? JSON.parse(item.chapdataInfo).name
  63. : "图片暂无名称"
  64. }}
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. <div v-if="this.choose == 1" class="boxCss">
  70. <div class="out_box" v-for="(item, index) in chapInfo" :key="index">
  71. <div class="tup">
  72. <img
  73. :src="msp"
  74. alt=""
  75. @click="
  76. handlePictureCardPreview1(JSON.parse(item.chapdataInfo).url)
  77. "
  78. />
  79. <div class="deleteWord" @click="deleteM(item.id)">
  80. <img src="../../assets/icon/delete.png" alt="" />
  81. </div>
  82. </div>
  83. <div class="bottom_box">
  84. <div>
  85. {{
  86. item.chapdataInfo
  87. ? JSON.parse(item.chapdataInfo).name
  88. : "图片暂无名称"
  89. }}
  90. </div>
  91. </div>
  92. </div>
  93. </div>
  94. <div v-if="this.choose == 2" class="boxCss">
  95. <div class="out_box" v-for="(item, index) in chapInfo" :key="index">
  96. <div class="tup">
  97. <img
  98. :src="mfj"
  99. alt=""
  100. @click="downFile(JSON.parse(item.chapdataInfo).url)"
  101. />
  102. <div class="deleteWord" @click="deleteM(item.id)">
  103. <img src="../../assets/icon/delete.png" alt="" />
  104. </div>
  105. </div>
  106. <div class="bottom_box">
  107. <div>
  108. {{
  109. item.chapdataInfo
  110. ? JSON.parse(item.chapdataInfo).name
  111. : "图片暂无名称"
  112. }}
  113. </div>
  114. </div>
  115. </div>
  116. </div>
  117. </div>
  118. <div class="student_page">
  119. <el-pagination
  120. background
  121. layout="prev, pager, next"
  122. :page-size="10"
  123. :total="total"
  124. v-if="page"
  125. @current-change="handleCurrentChange"
  126. >
  127. </el-pagination>
  128. </div>
  129. </div>
  130. <el-dialog :visible.sync="pictureDialog" size="tiny">
  131. <img width="100%" :src="dialogImageUrl" alt="" />
  132. </el-dialog>
  133. <el-dialog :visible.sync="vedioDialog" size="tiny">
  134. <video-player
  135. class="video-player vjs-custom-skin"
  136. ref="videoPlayer"
  137. :playsinline="true"
  138. :options="playerO"
  139. @play="onPlayerPlay($event)"
  140. style="width: 100%; height: 100%"
  141. ></video-player>
  142. </el-dialog>
  143. </div>
  144. </template>
  145. <script>
  146. export default {
  147. data() {
  148. return {
  149. choose: 0,
  150. chapInfo: [],
  151. cImgInfo: [],
  152. isLoading: false,
  153. noneBtnImg: false,
  154. mtp: require("../../assets/tup1.png"),
  155. msp: require("../../assets/sp1.png"),
  156. mfj: require("../../assets/yp1.png"),
  157. page: 1,
  158. total: 0,
  159. dialogImageUrl: "",
  160. userid: this.$route.query.userid,
  161. pictureDialog: false,
  162. vedioDialog: false,
  163. playerOptions: {
  164. playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度
  165. autoplay: false, //如果true,浏览器准备好时开始回放。
  166. muted: false, // 默认情况下将会消除任何音频。
  167. loop: false, // 导致视频一结束就重新开始。
  168. preload: "auto", // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
  169. language: "zh-CN",
  170. aspectRatio: "16:9", // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
  171. fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
  172. sources: [
  173. {
  174. type: "video/mp4", //这里的种类支持很多种:基本视频格式、直播、流媒体等,具体可以参看git网址项目 || "video/ogg"|| "video/webm"
  175. src: "", //url地址require("../../assets/media/aaa.mp4")
  176. },
  177. ],
  178. // poster: require("../../assets/tu31.png"), //你的封面地址
  179. // poster: dataRes.imgUrl, //你的封面地址
  180. notSupportedMessage: "此视频暂无法播放,请稍后再试", //允许覆盖Video.js无法播放媒体源时显示的默认信息。
  181. controlBar: {
  182. timeDivider: true, //当前时间和持续时间的分隔符
  183. durationDisplay: true, //显示持续时间
  184. remainingTimeDisplay: false, //是否显示剩余时间功能
  185. fullscreenToggle: true, //全屏按钮
  186. },
  187. },
  188. playerO: {},
  189. };
  190. },
  191. methods: {
  192. handleCurrentChange(val) {
  193. this.page = val;
  194. this.selectMtl();
  195. },
  196. addImg(e) {
  197. var el = e.currentTarget;
  198. el.getElementsByTagName("input")[0].click();
  199. },
  200. imgChange(file, fileList, type) {
  201. var _tmp = this.chapInfo;
  202. this.noneBtnImg = _tmp.length >= 1;
  203. },
  204. downFile(url) {
  205. window.open(url);
  206. },
  207. beforeUpload1(event, type) {
  208. var file = event.target.files[0];
  209. var credentials = {
  210. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  211. secretAccessKey: "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",
  212. }; //秘钥形式的登录上传
  213. window.AWS.config.update(credentials);
  214. window.AWS.config.region = "cn-northwest-1"; //设置区域
  215. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  216. var _this = this;
  217. if (file) {
  218. var params = {
  219. Key:
  220. file.name.split(".")[0] +
  221. new Date().getTime() +
  222. "." +
  223. file.name.split(".")[file.name.split(".").length-1],
  224. ContentType: file.type,
  225. Body: file,
  226. "Access-Control-Allow-Credentials": "*",
  227. ACL: "public-read",
  228. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  229. var options = {
  230. partSize: 2048 * 1024 * 1024,
  231. queueSize: 2,
  232. leavePartsOnError: true,
  233. };
  234. bucket
  235. .upload(params, options)
  236. .on("httpUploadProgress", function (evt) {
  237. //这里可以写进度条
  238. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  239. })
  240. .send(function (err, data) {
  241. if (err) {
  242. var a = _this.$refs.upload1.uploadFiles;
  243. a.splice(a.length - 1, a.length);
  244. _this.$message.error("上传失败");
  245. } else {
  246. _this.cImgInfo.push({
  247. name: file.name,
  248. url: data.Location,
  249. });
  250. _this.addMtl();
  251. _this.cImgInfo = [];
  252. _this.selectMtl();
  253. _this.imgChange(null, null, type);
  254. console.log(data.Location);
  255. }
  256. });
  257. }
  258. },
  259. handlePictureCardPreview(url) {
  260. this.dialogImageUrl = url;
  261. this.pictureDialog = true;
  262. },
  263. handlePictureCardPreview1(url) {
  264. this.playerO = {};
  265. this.playerOptions.poster = "";
  266. this.playerOptions.sources[0].src = url;
  267. this.playerO = this.playerOptions;
  268. // this.dialogImageUrl = url;
  269. this.vedioDialog = true;
  270. },
  271. beforeUpload2(event, type) {
  272. var file = event.target.files[0];
  273. var credentials = {
  274. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  275. secretAccessKey: "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",
  276. }; //秘钥形式的登录上传
  277. window.AWS.config.update(credentials);
  278. window.AWS.config.region = "cn-northwest-1"; //设置区域
  279. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  280. var _this = this;
  281. if (file) {
  282. var params = {
  283. Key:
  284. file.name.split(".")[0] +
  285. new Date().getTime() +
  286. "." +
  287. file.name.split(".")[file.name.split(".").length-1],
  288. ContentType: file.type,
  289. Body: file,
  290. "Access-Control-Allow-Credentials": "*",
  291. ACL: "public-read",
  292. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  293. var options = {
  294. partSize: 2048 * 1024 * 1024,
  295. queueSize: 2,
  296. leavePartsOnError: true,
  297. };
  298. bucket
  299. .upload(params, options)
  300. .on("httpUploadProgress", function (evt) {
  301. //这里可以写进度条
  302. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  303. })
  304. .send(function (err, data) {
  305. if (err) {
  306. var a = _this.$refs.upload1.uploadFiles;
  307. a.splice(a.length - 1, a.length);
  308. _this.$message.error("上传失败");
  309. } else {
  310. if (type == 2) {
  311. _this.cImgInfo.push({
  312. name: file.name,
  313. url: data.Location,
  314. });
  315. _this.addMtl();
  316. _this.cImgInfo = [];
  317. _this.selectMtl();
  318. _this.imgChange(null, null, type);
  319. } else if (type == 3) {
  320. _this.cImgInfo.push({
  321. name: file.name,
  322. url: data.Location,
  323. });
  324. _this.addMtl();
  325. _this.cImgInfo = [];
  326. _this.selectMtl();
  327. _this.imgChange(null, null, type);
  328. }
  329. console.log(data.Location);
  330. }
  331. });
  332. }
  333. },
  334. addMtl() {
  335. let params = {
  336. cInfo: this.cImgInfo[0],
  337. t: this.choose,
  338. cBy: this.userid,
  339. };
  340. this.ajax
  341. .get(this.$store.state.api + "addMtl", params)
  342. .then((res) => {
  343. this.$message.success("上传素材成功");
  344. })
  345. .catch((err) => {
  346. console.error(err);
  347. });
  348. },
  349. sMtl(type) {
  350. this.choose = type;
  351. this.selectMtl();
  352. },
  353. selectMtl() {
  354. this.isLoading = true;
  355. let params = {
  356. t: parseInt(this.choose),
  357. page: this.page,
  358. };
  359. this.ajax
  360. .get(this.$store.state.api + "selectMtl", params)
  361. .then((res) => {
  362. this.isLoading = false;
  363. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  364. this.chapInfo = res.data[0];
  365. })
  366. .catch((err) => {
  367. this.isLoading = false;
  368. console.error(err);
  369. });
  370. },
  371. deleteM(id) {
  372. this.isLoading = true;
  373. let params = {
  374. id: id,
  375. };
  376. this.ajax
  377. .get(this.$store.state.api + "deleteM", params)
  378. .then((res) => {
  379. this.isLoading = false;
  380. this.$message.success("删除成功");
  381. this.selectMtl();
  382. })
  383. .catch((err) => {
  384. this.isLoading = false;
  385. console.error(err);
  386. });
  387. },
  388. onPlayerPlay() {},
  389. },
  390. created() {
  391. this.selectMtl();
  392. },
  393. };
  394. </script>
  395. <style scoped>
  396. /* .student_button {
  397. display: flex;
  398. overflow: hidden;
  399. height: 40px;
  400. } */
  401. .student_head >>> .el-button--primary {
  402. background-color: #2268bc;
  403. }
  404. .student_head {
  405. display: flex;
  406. justify-content: space-between;
  407. }
  408. .three {
  409. display: flex;
  410. flex-direction: row;
  411. justify-content: space-between;
  412. width: 200px;
  413. height: 30px;
  414. }
  415. .three > div {
  416. cursor: pointer;
  417. }
  418. .choose {
  419. border-bottom: 5px solid #3994fd;
  420. }
  421. .student_table {
  422. width: 100%;
  423. height: 100%;
  424. background: #f2f2f2;
  425. margin-top: 10px;
  426. }
  427. .tup {
  428. width: 200px;
  429. height: 191px;
  430. margin: 0 auto;
  431. position: relative;
  432. }
  433. .tup:hover .deleteWord {
  434. display: block;
  435. }
  436. .deleteWord {
  437. width: 25px;
  438. height: 25px;
  439. position: absolute;
  440. right: -25px;
  441. top: -10px;
  442. cursor: pointer;
  443. display: none;
  444. }
  445. .tup > img,
  446. .deleteWord > img {
  447. width: 100%;
  448. height: 100%;
  449. }
  450. .out_box {
  451. display: flex;
  452. flex-direction: column;
  453. flex-wrap: nowrap;
  454. width: 250px;
  455. padding: 10px 0;
  456. background: #fff;
  457. margin: 0 25px 15px 0;
  458. }
  459. .bottom_box {
  460. display: flex;
  461. text-align: center;
  462. margin: 0 auto;
  463. padding: 10px 0 5px 0;
  464. }
  465. .bottom_box > div:nth-child(1) {
  466. white-space: nowrap;
  467. text-overflow: ellipsis;
  468. overflow: hidden;
  469. word-break: break-all;
  470. width: 200px;
  471. }
  472. .uploadThing {
  473. background: #2268bc;
  474. width: 90px;
  475. height: 35px;
  476. color: #fff;
  477. font-size: 12px;
  478. text-align: center;
  479. line-height: 35px;
  480. cursor: pointer;
  481. border-radius: 4px;
  482. }
  483. .top {
  484. display: flex;
  485. justify-content: space-between;
  486. }
  487. .student_page {
  488. margin-top: 30px;
  489. }
  490. .boxCss {
  491. padding: 15px 5px;
  492. display: flex;
  493. flex-direction: row;
  494. flex-wrap: wrap;
  495. }
  496. </style>