caiWuGuanLi.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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. </div>
  9. <!-- 文本框 -->
  10. <div class="client-caiwu-text client-container">
  11. 财务部主要负责企业的财务管理,主要只能是在本企业一定的整体目标下,
  12. 关于资本的购置,资本的融通和经营中现金流量,以及利润分配的管理。
  13. </div>
  14. <!-- 岗位职责 -->
  15. <gangwei-list label="岗位职责" :list="gangwei" :pc-num="3" :h5-num="2" :pc-margin="320" :h5-margin="0"></gangwei-list>
  16. <!-- 部分课程列表 -->
  17. <div class="platform-course-list client-container">
  18. <h4>部分课程列表</h4>
  19. <mtaTable :data="tableData" :config="tableConfig" @shi-kan="shiKan"></mtaTable>
  20. <div class="btn-groups">
  21. <freeTrialBtn class="btn-item" myType="kaoshi"/>
  22. <onlineInformationBtn />
  23. </div>
  24. </div>
  25. <videoDialog :source="curVideo" :visible.sync="visible"></videoDialog>
  26. </div>
  27. </template>
  28. <script>
  29. import mtaTable from "~/components/common/mtaTable";
  30. import videoDialog from "~/components/common/videoDialog";
  31. import freeTrialBtn from "~/components/common/freeTrialBtn";
  32. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  33. import gangweiList from "@/components/common/layout/desComp/gangweiList";
  34. import {BannerImgs, caiwuguanli} from "~/defaultConfig";
  35. /**
  36. * @ 产品与服务 -> 课程资源 -> 财务管理
  37. */
  38. export default {
  39. name: "professionalQuality",
  40. layout: 'templateB',
  41. head() {
  42. return {
  43. title: '在线考试平台_在线考试软件_试卷软件系统',
  44. meta: [
  45. {
  46. name: 'keywords',
  47. content: '考试平台,试卷系统,试卷软件'
  48. },
  49. {
  50. name: 'description',
  51. content: '麦塔考试系统具有良好高并发性和访问安全部署、严格的考试监控防作弊功能、PC移动支持多终端,随时随地考试、丰富的考试管理功能。'
  52. }
  53. ],
  54. }
  55. },
  56. async asyncData({$axios}) {
  57. const arr = [
  58. $axios.$post(`/home/banner/list`, {'code': BannerImgs.caiwuguanli}),
  59. ]
  60. const [res1] = await Promise.all(arr);
  61. return {
  62. bannerList: res1.data.data || [],
  63. }
  64. },
  65. components: {
  66. mtaTable, videoDialog,
  67. freeTrialBtn, onlineInformationBtn, gangweiList
  68. },
  69. data() {
  70. return {
  71. tableConfig: [
  72. {
  73. label: '课程名称',
  74. key: 'name'
  75. },
  76. {
  77. label: '使用行业',
  78. key: 'hangye'
  79. },
  80. {
  81. label: '使用人群',
  82. key: 'renqun'
  83. }
  84. ],
  85. tableData: [
  86. {
  87. name: '人际沟通: 如何更好地表达自己',
  88. shikanUrl: 'https://1111',
  89. hangye: '全行业',
  90. renqun: '职场新人'
  91. },
  92. {
  93. name: '如何向领导汇报行业',
  94. shikanUrl: '',
  95. hangye: '全行业',
  96. renqun: '职场新人'
  97. },
  98. {
  99. name: '职场生活游刃有余',
  100. shikanUrl: '',
  101. hangye: '全行业',
  102. renqun: '职场新人'
  103. },
  104. {
  105. name: '个人形象管理',
  106. shikanUrl: '',
  107. hangye: '全行业',
  108. renqun: '职场新人'
  109. },
  110. {
  111. name: '高效沟通',
  112. shikanUrl: '',
  113. hangye: '全行业',
  114. renqun: '职场新人'
  115. },
  116. {
  117. name: '如何向领导汇报行业',
  118. shikanUrl: '',
  119. hangye: '全行业',
  120. renqun: '职场新人'
  121. },
  122. {
  123. name: '如何向领导汇报行业',
  124. shikanUrl: '',
  125. hangye: '全行业',
  126. renqun: '职场新人'
  127. },
  128. {
  129. name: '如何向领导汇报行业',
  130. shikanUrl: '',
  131. hangye: '全行业',
  132. renqun: '职场新人'
  133. },
  134. ],
  135. curVideo: '',
  136. visible: false,
  137. }
  138. },
  139. computed: {
  140. gangwei() {
  141. return caiwuguanli
  142. }
  143. },
  144. methods: {
  145. shiKan({url}) {
  146. this.visible = true;
  147. this.curVideo = url;
  148. }
  149. }
  150. }
  151. </script>
  152. <style lang="scss" scoped>
  153. .client-banner-box {
  154. width: 100%;
  155. height: 736px;
  156. .client-platform-banner {
  157. height: 100%;
  158. width: 100%;
  159. }
  160. }
  161. .client-caiwu-text {
  162. width: 800px;
  163. font-size: 24px;
  164. font-weight: 800;
  165. line-height: 48px;
  166. color: #565656;
  167. text-align: center;
  168. margin-top: 150px;
  169. border: 1px solid #00b96b;
  170. padding: 100px;
  171. border-radius: 10px;
  172. }
  173. .platform-course-list {
  174. h4 {
  175. font-size: 30px;
  176. font-weight: 800;
  177. color: #333;
  178. text-align: center;
  179. margin-bottom: 68px;
  180. }
  181. }
  182. @media (max-width: 768px) {
  183. .client-caiwu-text {
  184. width: 80%;
  185. font-size: 12px;
  186. font-weight: 800;
  187. line-height: 1.5;
  188. color: #565656;
  189. text-align: center;
  190. margin-top: 5%;
  191. margin-bottom: 15%;
  192. border: none;
  193. padding: 0;
  194. }
  195. .platform-course-list {
  196. h4 {
  197. font-size: 18px;
  198. font-weight: 800;
  199. color: #333;
  200. text-align: center;
  201. margin-bottom: 10%;
  202. margin-top: 15%;
  203. }
  204. }
  205. }
  206. </style>