SkillTrainingIndex.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. <!--
  2. * @Description: 技能培训
  3. * @Author: 空白格
  4. * @Date: 2022-08-11 17:53:41
  5. * @LastEditors: 空白格
  6. * @LastEditTime: 2022-12-21 14:29:18
  7. * @FilePath: \veterans_client_web\src\views\SkillTraining\SkillTrainingIndex.vue
  8. * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
  9. -->
  10. <template>
  11. <div class="app-main skill-training">
  12. <BannerBreadcrumb title="技能培训" />
  13. <div class="app-main-box skill-training-content">
  14. <div class="skill-training-content-banner">
  15. <div class="left">
  16. 我的培训
  17. <span>学习时长:{{ learnTime || 0 }}小时</span>
  18. </div>
  19. <div class="right" @click="jumpPage('/personalcenter/skilltraining')">
  20. 更多>
  21. </div>
  22. </div>
  23. <!-- <div class="skill-training-content-slider">
  24. <el-carousel height="200px" :autoplay="false" arrow="never">
  25. <el-carousel-item
  26. class="stcs-left-item"
  27. v-for="(item, index) in classNoticeList"
  28. :key="index"
  29. >
  30. <div class="stcs-left-item-left">
  31. <el-image :src="item.img" class="image" fit="cover">
  32. <div slot="placeholder" class="image-slot">
  33. 加载中<span class="dot">...</span>
  34. </div>
  35. </el-image>
  36. </div>
  37. <div class="stcs-left-item-right">
  38. <div class="class-name">{{ item.name }}</div>
  39. <div class="school-name">{{ item.schoolName }}</div>
  40. <div class="description" v-html="item.description"></div>
  41. <div class="sign-up">
  42. <el-button round class="sign-up-btn" @click="signUp(item.id)"
  43. >报名</el-button
  44. >
  45. </div>
  46. </div>
  47. </el-carousel-item>
  48. </el-carousel>
  49. </div> -->
  50. <!-- 技能包 -->
  51. <div
  52. class="app-main-box-content skill-training-content-package"
  53. v-loading="loading"
  54. >
  55. <div class="stcp-title">技能包</div>
  56. <div class="stcp-list">
  57. <el-row :gutter="27">
  58. <el-col
  59. :xs="24"
  60. :sm="12"
  61. :md="12"
  62. :lg="6"
  63. :xl="6"
  64. v-for="(item, index) in packageList"
  65. :key="index"
  66. >
  67. <div
  68. class="stcp-list-item"
  69. @click="
  70. jumpPage(
  71. '/skilltraining/skillpackage',
  72. {
  73. id: item.id,
  74. schoolName: item.schoolName,
  75. },
  76. item
  77. )
  78. "
  79. >
  80. <div class="stcp-list-item-image">
  81. <el-image :src="item.img" class="image" fit="cover">
  82. <div slot="placeholder" class="image-slot">
  83. 加载中<span class="dot">...</span>
  84. </div>
  85. </el-image>
  86. </div>
  87. <div class="stcp-list-item-content">
  88. <div>{{ item.name || "-" }}</div>
  89. <div>{{ item.schoolName || "-" }}</div>
  90. </div>
  91. </div>
  92. </el-col>
  93. </el-row>
  94. <div class="pagination" v-if="total">
  95. <el-pagination
  96. background
  97. layout="prev, pager, next"
  98. :page-size="queryParams.pageSize"
  99. :total="total"
  100. @current-change="currentChange"
  101. />
  102. </div>
  103. </div>
  104. </div>
  105. </div>
  106. <div class="skill-training-chat" @click="openChatPage">
  107. <div class="skill-training-chat-icon">
  108. <el-image
  109. style="width: 33px; height: 33px"
  110. :src="require('@/assets/images/question-consult-icon.svg')"
  111. fit="fill"
  112. />
  113. </div>
  114. <div class="skill-training-chat-font">问题咨询</div>
  115. </div>
  116. </div>
  117. </template>
  118. <script>
  119. import { mapState } from "vuex";
  120. import BannerBreadcrumb from "@/components/BannerBreadcrumb";
  121. import { jumpPageAuth } from "@/utils";
  122. import { getDictData } from "@/api/Dict";
  123. import {
  124. getClassNoticeData,
  125. signUpClass,
  126. getPackageData,
  127. getDurationCount,
  128. } from "@/api/SkillTraining";
  129. export default {
  130. name: "SkillTrainingIndex",
  131. components: {
  132. BannerBreadcrumb,
  133. },
  134. data() {
  135. return {
  136. classNoticeList: [],
  137. queryParams: {
  138. pageNum: 1,
  139. pageSize: 8,
  140. },
  141. packageList: [],
  142. total: 0,
  143. loading: false,
  144. learnTime: 0,
  145. chatUrl: "http://localhost:8080",
  146. };
  147. },
  148. computed: {
  149. ...mapState({
  150. isLogin: (state) => state.user.isLogin,
  151. userInfo: (state) => state.user.userInfo,
  152. }),
  153. },
  154. mounted() {
  155. this.getClassNotice();
  156. this.getPackageList();
  157. this.getDictData();
  158. setTimeout(() => {
  159. if (this.isLogin) {
  160. this.getDuration();
  161. }
  162. }, 500);
  163. },
  164. methods: {
  165. getDictData() {
  166. getDictData({ key: "portal_site_chat_url" }).then((res) => {
  167. this.chatUrl = res?.data[0].text;
  168. });
  169. },
  170. /**
  171. * 获取报班通知
  172. * @date 2022-08-12
  173. * @returns {any}
  174. */
  175. getClassNotice() {
  176. getClassNoticeData({ pageNum: 1, pageSize: 5 }).then((res) => {
  177. this.classNoticeList = res.rows;
  178. });
  179. },
  180. /**
  181. * 获取技能包
  182. * @date 2022-08-12
  183. * @returns {any}
  184. */
  185. getPackageList() {
  186. this.loading = true;
  187. getPackageData(this.queryParams).then((res) => {
  188. this.packageList = res.rows;
  189. this.total = Number(res.total);
  190. this.loading = false;
  191. });
  192. },
  193. /**
  194. * 报名操作
  195. * @date 2022-08-12
  196. * @param {any} packageId
  197. * @returns {any}
  198. */
  199. signUp(packageId) {
  200. signUpClass({ packageId }).then((res) => {
  201. console.log(res);
  202. });
  203. },
  204. /**
  205. * 获取学习时长
  206. * @date 2022-08-12
  207. * @returns {any}
  208. */
  209. getDuration() {
  210. getDurationCount().then((res) => {
  211. this.learnTime = (Number(res.data.learnTime) / 3600).toFixed(2);
  212. });
  213. },
  214. /**
  215. * 跳转指定页面
  216. * @date 2022-08-16
  217. * @param {any} path
  218. * @param {any} query
  219. * @returns {any}
  220. */
  221. jumpPage(path, query, item) {
  222. const params = {
  223. platform: "4", // 平台:1-H5 2-APP 3-小程序 4-PC端
  224. pages: location.href, // 页面路径
  225. btnName: "查看技能包详情", // 按钮名称
  226. btnEvent: "1", //按钮事件: 1-点击 2-长按 3-滑动
  227. ipAddress: "", //IP地址
  228. typeName: "技能培训关注度", //类型名称 例:学校关注度 、适应性考试等
  229. typeCode: "JNPXGZD", // 类型编码 例:类型名称首字母缩写(XXGZD)
  230. categoryName: item?.name, //类别名称 例:XX学校,SS考试
  231. };
  232. if (item) {
  233. jumpPageAuth(path, query, true, params, false);
  234. } else {
  235. this.$router.push({
  236. path,
  237. query,
  238. });
  239. }
  240. },
  241. /**
  242. * 分页切换
  243. * @date 2022-08-12
  244. * @param {any} page
  245. * @returns {any}
  246. */
  247. currentChange(page) {
  248. this.queryParams.pageNum = page;
  249. this.getPackageList();
  250. },
  251. openChatPage() {
  252. if (this.userInfo.id) {
  253. window.open(`${this.chatUrl}?userID=${this.userInfo.id}&permission=2`);
  254. } else {
  255. this.$message.warning('请先登录!')
  256. }
  257. },
  258. },
  259. };
  260. </script>
  261. <style lang="scss" scoped>
  262. .skill-training {
  263. &-content {
  264. padding-bottom: 30px;
  265. &-banner {
  266. width: calc(100% - 40px);
  267. padding: 0 20px;
  268. height: 66px;
  269. line-height: 66px;
  270. background-image: url("@/assets/images/my-skill-bg.svg");
  271. background-size: cover;
  272. background-repeat: no-repeat;
  273. background-position: center;
  274. color: #fff;
  275. display: flex;
  276. justify-content: space-between;
  277. margin-bottom: 20px;
  278. .left {
  279. font-size: 20px;
  280. span {
  281. font-size: 14px;
  282. margin-left: 20px;
  283. }
  284. }
  285. .right {
  286. font-size: 14px;
  287. cursor: pointer;
  288. }
  289. }
  290. &-slider {
  291. margin-bottom: 20px;
  292. padding: 0;
  293. .stcs-left {
  294. padding: 40px;
  295. :deep(.el-carousel__indicators) {
  296. // 指示器
  297. right: -40px;
  298. left: auto;
  299. }
  300. :deep(.el-carousel__button) {
  301. // 指示器按钮
  302. width: 10px;
  303. height: 10px;
  304. border: none;
  305. border-radius: 50%;
  306. background-color: #d8d8d8;
  307. }
  308. :deep(.is-active .el-carousel__button) {
  309. // 指示器激活按钮
  310. width: 25px;
  311. border-radius: 10px;
  312. }
  313. &-item {
  314. display: flex;
  315. &-left {
  316. margin-right: 20px;
  317. border: solid 1px #e0e0e0;
  318. border-radius: 5px;
  319. margin-left: 10px;
  320. .image {
  321. height: 100%;
  322. width: 180px;
  323. }
  324. }
  325. &-right {
  326. width: calc(100% - 222px);
  327. .class-name {
  328. color: #101010;
  329. font-size: 30px;
  330. font-weight: 500;
  331. margin-bottom: 8px;
  332. }
  333. .school-name {
  334. color: #525252;
  335. font-size: 20px;
  336. margin-bottom: 8px;
  337. }
  338. .description {
  339. color: #9a9a9a;
  340. white-space: nowrap;
  341. overflow: hidden;
  342. text-overflow: ellipsis;
  343. word-break: break-all;
  344. margin-bottom: 30px;
  345. }
  346. .sign-up {
  347. &-btn {
  348. background-color: #709078;
  349. color: #fff;
  350. }
  351. }
  352. }
  353. }
  354. }
  355. .stcs-right {
  356. height: 240px;
  357. padding-top: 40px;
  358. background-image: linear-gradient(157deg, #287b4f 0%, #3d5d4c 100%);
  359. &-title {
  360. text-align: right;
  361. color: #fff;
  362. font-size: 30px;
  363. font-weight: 500;
  364. position: relative;
  365. width: 160px;
  366. margin: 0 auto 60px;
  367. &::before {
  368. content: "";
  369. display: block;
  370. width: 40px;
  371. height: 38px;
  372. background: url("./../../assets/images/my-training-icon.svg")
  373. no-repeat center center;
  374. position: absolute;
  375. left: -10px;
  376. }
  377. }
  378. &-duration {
  379. width: 155px;
  380. height: 60px;
  381. padding: 0 20px;
  382. margin: 0 auto;
  383. background: #fe7401;
  384. display: flex;
  385. align-items: center;
  386. justify-content: center;
  387. border-radius: 30px;
  388. color: #fff;
  389. &-left {
  390. border-right: solid 1px #fff;
  391. padding-right: 10px;
  392. font-size: 16px;
  393. }
  394. &-right {
  395. padding-left: 10px;
  396. font-size: 14px;
  397. span {
  398. font-size: 30px;
  399. }
  400. }
  401. }
  402. }
  403. }
  404. &-package {
  405. .stcp-title {
  406. color: #1a1a1a;
  407. font-size: 22px;
  408. padding-top: 10px;
  409. margin-bottom: 10px;
  410. }
  411. .stcp-list {
  412. &-item {
  413. cursor: pointer;
  414. margin-bottom: 20px;
  415. &-image {
  416. height: 160px;
  417. padding: 10px 5px;
  418. .image {
  419. width: 100%;
  420. height: 100%;
  421. border-radius: 5px;
  422. border: solid 1px #d0d0d0;
  423. }
  424. }
  425. &-content {
  426. font-size: 18px;
  427. color: #3f3f3f;
  428. div {
  429. margin: 5px 0;
  430. overflow: hidden;
  431. white-space: nowrap;
  432. text-overflow: ellipsis;
  433. }
  434. div:last-child {
  435. color: #a2a2a2;
  436. font-size: 14px;
  437. }
  438. }
  439. }
  440. .pagination {
  441. text-align: center;
  442. margin-top: 20px;
  443. :deep(.el-pager .active) {
  444. background-color: #ff3939;
  445. }
  446. :deep(.el-pagination.is-background
  447. .el-pager
  448. li:not(.disabled).active) {
  449. background-color: #ff3939;
  450. }
  451. }
  452. }
  453. }
  454. }
  455. &-chat {
  456. position: fixed;
  457. bottom: 100px;
  458. right: 0;
  459. width: 90px;
  460. height: 90px;
  461. background: #659789;
  462. border-radius: 4px;
  463. cursor: pointer;
  464. display: flex;
  465. flex-direction: column;
  466. align-items: center;
  467. justify-content: center;
  468. &-font {
  469. font-size: 13px;
  470. color: #fff;
  471. }
  472. &:hover {
  473. opacity: 0.8;
  474. }
  475. }
  476. }
  477. </style>