government.vue 10 KB

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