xingZhengGuanLi.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  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-container">
  11. <div class="client-description-box">
  12. 行政部门主要负责企业的行政管理工作,配合业务部门进行文案写作、协调组织会议,商务接待、办公品采购等业务。
  13. </div>
  14. </div>
  15. <!-- 岗位职责 -->
  16. <gangweiList label="岗位职责" :list="gangwei" :pc-num="3" :h5-num="2"></gangweiList>
  17. <!-- 部分课程列表 -->
  18. <div class="platform-course-list client-container">
  19. <h4>部分课程列表</h4>
  20. <mtaTable :data="tableData" :config="tableConfig" @shi-kan="shiKan"></mtaTable>
  21. <div class="btn-groups">
  22. <freeTrialBtn class="btn-item" myType="kaoshi"/>
  23. <onlineInformationBtn />
  24. </div>
  25. </div>
  26. <videoDialog :source="curVideo" :visible.sync="visible"></videoDialog>
  27. </div>
  28. </template>
  29. <script>
  30. import mtaTable from "~/components/common/mtaTable";
  31. import videoDialog from "~/components/common/videoDialog";
  32. import freeTrialBtn from "~/components/common/freeTrialBtn";
  33. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  34. import pingfen from "~/components/common/pingfen";
  35. import gangweiList from "@/components/common/layout/desComp/gangweiList";
  36. import {BannerImgs, xingzhengguanli} from "~/defaultConfig";
  37. /**
  38. * @ 产品与服务 -> 课程资源 -> 行政管理
  39. */
  40. export default {
  41. name: "professionalQuality",
  42. layout: 'templateB',
  43. async asyncData({$axios}) {
  44. const arr = [
  45. $axios.$post(`/home/banner/list`, {'code': BannerImgs.xingzhenguanli}),
  46. ]
  47. const [res1] = await Promise.all(arr);
  48. return {
  49. bannerList: res1.data.data || [],
  50. }
  51. },
  52. components: {
  53. mtaTable, videoDialog,
  54. freeTrialBtn, onlineInformationBtn, pingfen, gangweiList
  55. },
  56. head() {
  57. return {
  58. title: '在线考试平台_在线考试软件_试卷软件系统',
  59. meta: [
  60. {
  61. name: 'keywords',
  62. content: '考试平台,试卷系统,试卷软件'
  63. },
  64. {
  65. name: 'description',
  66. content: '麦塔考试系统具有良好高并发性和访问安全部署、严格的考试监控防作弊功能、PC移动支持多终端,随时随地考试、丰富的考试管理功能。'
  67. }
  68. ],
  69. }
  70. },
  71. computed: {
  72. gangwei() {
  73. return xingzhengguanli
  74. }
  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: 'B堂课让你成为公文写作高手',
  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. methods: {
  147. shiKan({url}) {
  148. this.visible = true;
  149. this.curVideo = url;
  150. }
  151. }
  152. }
  153. </script>
  154. <style lang="scss" scoped>
  155. .client-banner-box {
  156. width: 100%;
  157. height: 736px;
  158. .client-platform-banner {
  159. height: 100%;
  160. width: 100%;
  161. }
  162. }
  163. .btn-groups {
  164. margin-top: 100px;
  165. text-align: center;
  166. margin-bottom: 210px;
  167. .btn-item {
  168. margin-right: 20px;
  169. }
  170. }
  171. .platform-course-list {
  172. h4 {
  173. font-size: 30px;
  174. font-weight: 800;
  175. color: #333;
  176. text-align: center;
  177. margin-bottom: 98px;
  178. }
  179. }
  180. .client-description-box {
  181. width: 1257px;
  182. height: 279px;
  183. margin-top: 160px;
  184. text-align: center;
  185. padding: 110px;
  186. box-sizing: border-box;
  187. color: #565656;
  188. font-size: 24px;
  189. font-weight: 800;
  190. line-height: 48px;
  191. }
  192. @media (max-width: 768px) {
  193. .btn-groups {
  194. margin-top: 10%;
  195. margin-bottom: 10%;
  196. }
  197. .client-xuexishouyi-box {
  198. .client-title {
  199. font-size: 20px;
  200. margin-bottom: 10%;
  201. }
  202. .products-services-box {
  203. flex-direction: column;
  204. img {
  205. width: 100%;
  206. margin-bottom: 5%;
  207. }
  208. }
  209. .my-imgCardLv2 {
  210. margin-bottom: 10%;
  211. }
  212. }
  213. .platform-course-list {
  214. h4 {
  215. font-size: 20px;
  216. margin-bottom: 10%;
  217. }
  218. }
  219. .client-description-box {
  220. width: 100%;
  221. height: 100%;
  222. margin-top: 30px;
  223. text-align: left;
  224. padding: 0px;
  225. box-sizing: border-box;
  226. color: #565656;
  227. font-size: 16px;
  228. font-weight: 500;
  229. line-height: 22px;
  230. }
  231. }
  232. </style>