caiWuGuanLi.vue 4.5 KB

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