caiWuGuanLi.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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">
  21. <h4>部分课程列表</h4>
  22. <mtaTable :data="tableData" :config="tableConfig" @shi-kan="shiKan"></mtaTable>
  23. <div class="btns-group">
  24. <a class="client-default-Btn">
  25. <freeTrialBtn myType="kaoshi"/>
  26. </a>
  27. <onlineInformationBtn class="client-default-Btn"/>
  28. </div>
  29. </div>
  30. <videoDialog :source="curVideo" :visible.sync="visible"></videoDialog>
  31. </div>
  32. </template>
  33. <script>
  34. import mtaTable from "~/components/common/mtaTable";
  35. import videoDialog from "~/components/common/videoDialog";
  36. import freeTrialBtn from "~/components/common/freeTrialBtn";
  37. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  38. import gangweiList from "@/components/common/layout/desComp/gangweiList";
  39. import {BannerImgs, caiwuguanli} from "~/defaultConfig";
  40. /**
  41. * @ 产品与服务 -> 课程资源 -> 财务管理
  42. */
  43. export default {
  44. name: "professionalQuality",
  45. layout: 'templateB',
  46. head() {
  47. return {
  48. title: '在线考试平台_在线考试软件_试卷软件系统',
  49. meta: [
  50. {
  51. name: 'keywords',
  52. content: '考试平台,试卷系统,试卷软件'
  53. },
  54. {
  55. name: 'description',
  56. content: '麦塔考试系统具有良好高并发性和访问安全部署、严格的考试监控防作弊功能、PC移动支持多终端,随时随地考试、丰富的考试管理功能。'
  57. }
  58. ],
  59. }
  60. },
  61. async asyncData({$axios}) {
  62. const arr = [
  63. $axios.$post(`/home/banner/list`, {'code': BannerImgs.caiwuguanli}),
  64. ]
  65. const [res1] = await Promise.all(arr);
  66. return {
  67. bannerList: res1.data.data || [],
  68. }
  69. },
  70. components: {
  71. mtaTable, videoDialog,
  72. freeTrialBtn, onlineInformationBtn, gangweiList
  73. },
  74. data() {
  75. return {
  76. tableConfig: [
  77. {
  78. label: '课程名称',
  79. key: 'name'
  80. },
  81. {
  82. label: '使用行业',
  83. key: 'hangye'
  84. },
  85. {
  86. label: '使用人群',
  87. key: 'renqun'
  88. }
  89. ],
  90. tableData: [
  91. {
  92. name: '人际沟通: 如何更好地表达自己',
  93. shikanUrl: 'https://1111',
  94. hangye: '全行业',
  95. renqun: '职场新人'
  96. },
  97. {
  98. name: '如何向领导汇报行业',
  99. shikanUrl: '',
  100. hangye: '全行业',
  101. renqun: '职场新人'
  102. },
  103. {
  104. name: '职场生活游刃有余',
  105. shikanUrl: '',
  106. hangye: '全行业',
  107. renqun: '职场新人'
  108. },
  109. {
  110. name: '个人形象管理',
  111. shikanUrl: '',
  112. hangye: '全行业',
  113. renqun: '职场新人'
  114. },
  115. {
  116. name: '高效沟通',
  117. shikanUrl: '',
  118. hangye: '全行业',
  119. renqun: '职场新人'
  120. },
  121. {
  122. name: '如何向领导汇报行业',
  123. shikanUrl: '',
  124. hangye: '全行业',
  125. renqun: '职场新人'
  126. },
  127. {
  128. name: '如何向领导汇报行业',
  129. shikanUrl: '',
  130. hangye: '全行业',
  131. renqun: '职场新人'
  132. },
  133. {
  134. name: '如何向领导汇报行业',
  135. shikanUrl: '',
  136. hangye: '全行业',
  137. renqun: '职场新人'
  138. },
  139. ],
  140. curVideo: '',
  141. visible: false,
  142. }
  143. },
  144. computed: {
  145. gangwei() {
  146. return caiwuguanli
  147. }
  148. },
  149. methods: {
  150. shiKan({url}) {
  151. this.visible = true;
  152. this.curVideo = url;
  153. }
  154. }
  155. }
  156. </script>
  157. <style scoped>
  158. </style>