government.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <template>
  2. <div class="client-exam-page client-platform-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. <onlineInformationBtn />
  11. </div>
  12. <!-- 政府机构培训现状 -->
  13. <div class="client-xianzhuang-box">
  14. <h4>政府机构培训现状</h4>
  15. <p>在政府机构中比较常见的培训项目通常就是党建方向 的内容,学习党史党务,会议精神、法律法规等是每一个中共党员的基本修养。政府机构的成员大多都是中共党员,势必要以身作则。
  16. 作为国家和人民的领导者,政府机构的党员们需要专注于习近平新时代中国特色社会主义的思想党建,做到和人民心心相印,才能更好地为人民服务。
  17. </p>
  18. </div>
  19. <!-- 政府机构培训痛点 -->
  20. <div class="client-tongdian-box">
  21. <h4>政府机构培训痛点</h4>
  22. <ul>
  23. <li>
  24. <i></i>
  25. <p>需要学习的文件材料较多,
  26. 不易把握学习要点</p>
  27. </li>
  28. <li>
  29. <i></i>
  30. <p>从即从公务员到各级干部,政府部门成员大多数勤于政务,
  31. 没有稳定的学习时间</p>
  32. </li>
  33. <li>
  34. <i></i>
  35. <p>各级政府的所在地各不相同,
  36. 很难统一组织学习党建材料</p>
  37. </li>
  38. </ul>
  39. </div>
  40. <!-- 解决方案 -->
  41. <div class="client-fangan-box client-container">
  42. <h4>青谷解决方案</h4>
  43. <imgCardLv2 :option="item" v-for="(item,index) in productList" :key="index">
  44. <div class="btn-groups">
  45. <onlineInformationBtn class="online-information-btn btn-item" v-if="item.zixun"/>
  46. </div>
  47. </imgCardLv2>
  48. </div>
  49. <!-- 党建类课程案例 -->
  50. <div class="client-anli-box">
  51. <h4>党建类课程案例</h4>
  52. <p>青谷软件可为政府机构定制电子化课程</p>
  53. <ul>
  54. <li>
  55. <video-card :card-data="{title: 'FLASH动画课程', url: ''}" @card-click="showVideo"></video-card>
  56. </li>
  57. <li>
  58. <video-card :card-data="{title: '视频课程', url: ''}" @card-click="showVideo"></video-card>
  59. </li>
  60. <li>
  61. <video-card :card-data="{title: '名师讲堂', url: ''}" @card-click="showVideo"></video-card>
  62. </li>
  63. </ul>
  64. </div>
  65. <!-- 立即咨询 -->
  66. <desWithCode source="government"></desWithCode>
  67. <videoDialog :source="curVideo" :visible.sync="visible"></videoDialog>
  68. </div>
  69. </template>
  70. <script>
  71. import chanPinTiYan from "~/components/common/chanPinTiYan";
  72. import freeTrialBtn from "~/components/common/freeTrialBtn";
  73. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  74. import newsComp2 from "~/components/common/newsComp2";
  75. import {BannerImgs} from "~/defaultConfig";
  76. import videoDialog from "~/components/common/videoDialog";
  77. import videoCard from "~/components/common/videoCard";
  78. import desWithCode from "~/components/common/layout/desComp/desWithCode";
  79. import imgCardLv2 from "~/components/common/layout/imgDes/imgCardLv2";
  80. /**
  81. * @ 解决方案 -> 政府机构
  82. */
  83. export default {
  84. name: "government",
  85. layout: 'templateB',
  86. components: {chanPinTiYan, freeTrialBtn, onlineInformationBtn, newsComp2, videoDialog, videoCard, desWithCode, imgCardLv2},
  87. async asyncData({$axios, store}) {
  88. const arr = [
  89. $axios.$post(`/home/banner/list`, {'code': BannerImgs.zhengfujigou}),
  90. ];
  91. const [ res2] = await Promise.all(arr);
  92. return {
  93. bannerList: res2.data.data || [],
  94. }
  95. },
  96. data() {
  97. return {
  98. curVideo: '',
  99. visible: false,
  100. productList: [
  101. {
  102. content: {
  103. title: '私有化专属服务器部署,数据加密更安全',
  104. list: [
  105. {
  106. value: '将青谷考培系统部署版部署到政府机构内部私有云服务器中,政府机构完全自主掌控,数据加密更安全',
  107. },
  108. {
  109. value: 'PC端与移动端无缝链接;全面支持安卓、IOS等操作系统;支持APP和微信H5学习模式;为学习者提供真正的随时随地的、个性化的、开放式的学习服务',
  110. },
  111. ],
  112. order: 2,
  113. },
  114. img: {
  115. url: require('~/static/codeImage/code-jingli.png'),
  116. order: 1,
  117. },
  118. mianfei: true,
  119. zixun: true,
  120. shenqing: false,
  121. myType: 'kaoshi'
  122. },
  123. {
  124. content: {
  125. title: '构建培训闭环,打通线上线下教学场景',
  126. list: [
  127. {
  128. value: '支持手动、批量导入人员及部门多层级管理功能,解决机构人员多且分散的问题',
  129. },
  130. {
  131. value: '支持线上课程、直播、线下培训等多种培训形式',
  132. },
  133. {
  134. value: '在线课程支持反复学习,实现从“了解”到“理解”的飞跃',
  135. },
  136. {
  137. value: '支持六大常用题型及批量导入题库',
  138. },
  139. ],
  140. order: 1,
  141. },
  142. img: {
  143. url: require('~/static/codeImage/code-jingli.png'),
  144. order: 2,
  145. },
  146. mianfei: true,
  147. zixun: true,
  148. shenqing: false,
  149. myType: 'kaoshi'
  150. },
  151. {
  152. content: {
  153. title: '强大的AI防作弊,保障考试公平公正',
  154. list: [
  155. {
  156. value: '人脸识别、摄像头监考、有效防止替考代考,保障考试公平公正',
  157. },
  158. {
  159. value: '支持子管理员协助多屏监控在线监考,考生的面部表情、一举一动在后台实时呈现,最大程度模拟人工监控场景',
  160. },
  161. {
  162. value: '随机组卷、试题乱序、选择题选项乱序、超时强制交卷、防止切屏限制,有效的防止考生相互抄卷的行为',
  163. },
  164. ],
  165. order: 2,
  166. },
  167. img: {
  168. url: require('~/static/codeImage/code-jingli.png'),
  169. order: 1,
  170. },
  171. mianfei: true,
  172. zixun: true,
  173. shenqing: false,
  174. myType: 'kaoshi'
  175. },
  176. {
  177. content: {
  178. title: '智能阅卷,多维度、可视化学情分析',
  179. list: [
  180. {
  181. value: '智能阅卷系统,减轻管理员工作压力,考后直接出成绩及排行榜等信息',
  182. },
  183. {
  184. value: '从用户、学习情况、考试、成绩、试题、排名、机构等层面多维度分析培训结果,掌握学员学习情况',
  185. },
  186. ],
  187. order: 1,
  188. },
  189. img: {
  190. url: require('~/static/codeImage/code-jingli.png'),
  191. order: 2,
  192. },
  193. mianfei: true,
  194. zixun: true,
  195. shenqing: false,
  196. myType: 'kaoshi'
  197. }
  198. ],
  199. }
  200. },
  201. methods: {
  202. showVideo({url}) {
  203. this.curVideo = url;
  204. this.visible = true;
  205. }
  206. }
  207. }
  208. </script>
  209. <style lang="scss" scoped>
  210. .client-fangan-box {
  211. h4 {
  212. font-size: 30px;
  213. font-weight: 800;
  214. color: #333;
  215. margin-top: 140px;
  216. margin-bottom: 120px;
  217. text-align: center;
  218. }
  219. }
  220. </style>