caiWuGuanLi.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <template>
  2. <div class="client-platform-page client-exam-page">
  3. <!-- 广告 -->
  4. <div class="client-banner-box">
  5. <div
  6. :style="{backgroundImage: `url(${bannerList[0].pic || require(`~/static/images/client/train/train-banner-background.png`)})`}"
  7. class="client-platform-banner"></div>
  8. <h3>财务管理</h3>
  9. <p>加强财务队伍专注性,开创企业财务管理新局面</p>
  10. <span>财务部</span>
  11. </div>
  12. <!-- 文本框 -->
  13. <div class="client-caiwu-text">
  14. 财务部主要负责企业的财务管理,主要只能是在本企业一定的整体目标下,
  15. 关于资本的购置,资本的融通和经营中现金流量,以及利润分配的管理。
  16. </div>
  17. <!-- 岗位职责 -->
  18. <gangwei-list label="岗位职责" :list="gangwei" :pc-num="3" :h5-num="2" :pc-margin="320" :h5-margin="0"></gangwei-list>
  19. <!-- 部分课程列表 -->
  20. <div class="platform-course-list client-container">
  21. <h4>部分课程列表</h4>
  22. <mtaTable :data="tableData" :config="tableConfig" @shi-kan="shiKan"></mtaTable>
  23. <div class="btn-groups">
  24. <freeTrialBtn myType="kaoshi"/>
  25. <onlineInformationBtn />
  26. </div>
  27. </div>
  28. <videoDialog :source="curVideo" :visible.sync="visible"></videoDialog>
  29. </div>
  30. </template>
  31. <script>
  32. import mtaTable from "~/components/common/mtaTable";
  33. import videoDialog from "~/components/common/videoDialog";
  34. import freeTrialBtn from "~/components/common/freeTrialBtn";
  35. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  36. import gangweiList from "@/components/common/layout/desComp/gangweiList";
  37. import {BannerImgs, caiwuguanli} from "~/defaultConfig";
  38. /**
  39. * @ 产品与服务 -> 课程资源 -> 财务管理
  40. */
  41. export default {
  42. name: "professionalQuality",
  43. layout: 'templateB',
  44. head() {
  45. return {
  46. title: '在线考试平台_在线考试软件_试卷软件系统',
  47. meta: [
  48. {
  49. name: 'keywords',
  50. content: '考试平台,试卷系统,试卷软件'
  51. },
  52. {
  53. name: 'description',
  54. content: '麦塔考试系统具有良好高并发性和访问安全部署、严格的考试监控防作弊功能、PC移动支持多终端,随时随地考试、丰富的考试管理功能。'
  55. }
  56. ],
  57. }
  58. },
  59. async asyncData({$axios}) {
  60. const arr = [
  61. $axios.$post(`/home/banner/list`, {'code': BannerImgs.caiwuguanli}),
  62. ]
  63. const [res1] = await Promise.all(arr);
  64. return {
  65. bannerList: res1.data.data || [],
  66. }
  67. },
  68. components: {
  69. mtaTable, videoDialog,
  70. freeTrialBtn, onlineInformationBtn, gangweiList
  71. },
  72. data() {
  73. return {
  74. tableConfig: [
  75. {
  76. label: '课程名称',
  77. key: 'name'
  78. },
  79. {
  80. label: '使用行业',
  81. key: 'hangye'
  82. },
  83. {
  84. label: '使用人群',
  85. key: 'renqun'
  86. }
  87. ],
  88. tableData: [
  89. {
  90. name: '人际沟通: 如何更好地表达自己',
  91. shikanUrl: 'https://1111',
  92. hangye: '全行业',
  93. renqun: '职场新人'
  94. },
  95. {
  96. name: '如何向领导汇报行业',
  97. shikanUrl: '',
  98. hangye: '全行业',
  99. renqun: '职场新人'
  100. },
  101. {
  102. name: '职场生活游刃有余',
  103. shikanUrl: '',
  104. hangye: '全行业',
  105. renqun: '职场新人'
  106. },
  107. {
  108. name: '个人形象管理',
  109. shikanUrl: '',
  110. hangye: '全行业',
  111. renqun: '职场新人'
  112. },
  113. {
  114. name: '高效沟通',
  115. shikanUrl: '',
  116. hangye: '全行业',
  117. renqun: '职场新人'
  118. },
  119. {
  120. name: '如何向领导汇报行业',
  121. shikanUrl: '',
  122. hangye: '全行业',
  123. renqun: '职场新人'
  124. },
  125. {
  126. name: '如何向领导汇报行业',
  127. shikanUrl: '',
  128. hangye: '全行业',
  129. renqun: '职场新人'
  130. },
  131. {
  132. name: '如何向领导汇报行业',
  133. shikanUrl: '',
  134. hangye: '全行业',
  135. renqun: '职场新人'
  136. },
  137. ],
  138. curVideo: '',
  139. visible: false,
  140. }
  141. },
  142. computed: {
  143. gangwei() {
  144. return caiwuguanli
  145. }
  146. },
  147. methods: {
  148. shiKan({url}) {
  149. this.visible = true;
  150. this.curVideo = url;
  151. }
  152. }
  153. }
  154. </script>
  155. <style scoped>
  156. </style>