government.vue 9.4 KB

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