biteAndSup.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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. <span>人力成本过大,员工素质普遍较低</span>
  26. </li>
  27. <li>
  28. <i></i>
  29. <span>连锁餐饮企业学习资源共享困难,造成浪费</span>
  30. </li>
  31. <li>
  32. <i></i>
  33. <span>餐饮卫生安全隐患问题严重,员工意识不强</span>
  34. </li>
  35. </ul>
  36. </div>
  37. <!-- 青谷解决方案 -->
  38. <div class="platform-products-services client-container">
  39. <h4 class="client-title">青谷解决方案</h4>
  40. <imgCardLv2 :option="item" v-for="(item,index) in productList" :key="index">
  41. <div class="btn-groups">
  42. <onlineInformationBtn my-type="2" class="online-information-btn btn-item" />
  43. </div>
  44. </imgCardLv2>
  45. </div>
  46. <!-- 金融保险类课程案例 -->
  47. <div class="client-anli-box">
  48. <h4>金融保险类课程案例</h4>
  49. <p>青谷软件可为金融保险行业定制电子化课程</p>
  50. <ul>
  51. <li>
  52. <video-card :card-data="{title: '课程名称', url: ''}" @card-click="showVideo"></video-card>
  53. </li>
  54. <li>
  55. <video-card :card-data="{title: '课程名称', 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. </ul>
  61. </div>
  62. <!-- 立即咨询 -->
  63. <desWithCode source="biteAndSup"></desWithCode>
  64. <videoDialog :source="curVideo" :visible.sync="visible"></videoDialog>
  65. </div>
  66. </template>
  67. <script>
  68. import chanPinTiYan from "~/components/common/chanPinTiYan";
  69. import freeTrialBtn from "~/components/common/freeTrialBtn";
  70. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  71. import newsComp2 from "~/components/common/newsComp2";
  72. import {BannerImgs} from "~/defaultConfig";
  73. import videoDialog from "~/components/common/videoDialog";
  74. import videoCard from "~/components/common/videoCard";
  75. import desWithCode from "@/components/common/layout/desComp/desWithCode";
  76. import imgCardLv2 from "@/components/common/layout/imgDes/imgCardLv2";
  77. /**
  78. * @ 解决方案 -> 食品餐饮
  79. */
  80. export default {
  81. name: "biteAndSup",
  82. layout: 'templateB',
  83. components: {chanPinTiYan, freeTrialBtn, onlineInformationBtn, newsComp2, videoDialog, videoCard, desWithCode, imgCardLv2},
  84. async asyncData({$axios, store}) {
  85. const arr = [
  86. $axios.$post(`/home/banner/list`, {'code': BannerImgs.shipincanyin}),
  87. ];
  88. const [ res2] = await Promise.all(arr);
  89. return {
  90. bannerList: res2.data.data || [],
  91. }
  92. },
  93. data() {
  94. return {
  95. curVideo: '',
  96. visible: false,
  97. productList: [
  98. {
  99. content: {
  100. title: '强大的人员管理和培训功能',
  101. list: [
  102. {
  103. value: '支持手动、批量导入人员及部门多层级管理功能,解决机构人员多且分散的问题',
  104. },
  105. {
  106. value: '支持线上课程、直播课、线下培训按照课程科目设定进行课程分类划分',
  107. },
  108. {
  109. value: '学习时段灵活,不强制要求学员在某一特定时刻参加培训,并支持无限学习,实现从“了解”到“理解”的飞跃',
  110. },
  111. ],
  112. order: 2,
  113. num: '01',
  114. },
  115. img: {
  116. url: require('~/static/codeImage/code-jingli.png'),
  117. order: 1,
  118. },
  119. mianfei: true,
  120. zixun: true,
  121. shenqing: false,
  122. myType: 'kaoshi'
  123. },
  124. {
  125. content: {
  126. title: '强大的AI防作弊,保障考试公平公正',
  127. list: [
  128. {
  129. value: '人脸识别、摄像头监考、有效防止替考代考,保障考试公平公正',
  130. },
  131. {
  132. value: '支持子管理员协助多屏监控在线监考,考生的面部表情、一举一动在后台实时呈现,最大程度模拟人工监考场景',
  133. },
  134. {
  135. value: '随机组卷、试题乱序、选择题选项乱序、超时强制交卷、防止切屏限制,有效的防止考生相互抄卷的行为',
  136. },
  137. ],
  138. order: 1,
  139. num: '02',
  140. },
  141. img: {
  142. url: require('~/static/codeImage/code-jingli.png'),
  143. order: 2,
  144. },
  145. mianfei: true,
  146. zixun: true,
  147. shenqing: false,
  148. myType: 'kaoshi'
  149. },
  150. {
  151. content: {
  152. title: '良好的高并发性,系统稳定性高',
  153. list: [
  154. {
  155. value: '采用的运行稳定、安全性很高的JAVA语言开发',
  156. },
  157. {
  158. value: '拥有强大的考试并发负载能力,支持万人以上考生同时在线考试',
  159. },
  160. {
  161. value: '分布式微服务架构、开放、安全、高能、高可靠的服务调用',
  162. },
  163. {
  164. value: '为企业快速、灵活构建大规模分布式服务应用提供基础',
  165. },
  166. ],
  167. order: 2,
  168. num: '03',
  169. },
  170. img: {
  171. url: require('~/static/codeImage/code-jingli.png'),
  172. order: 1,
  173. },
  174. mianfei: true,
  175. zixun: true,
  176. shenqing: false,
  177. myType: 'kaoshi'
  178. },
  179. {
  180. content: {
  181. title: '多端口个性化设置随心选择',
  182. list: [
  183. {
  184. value: '支持个性化定制登录背景、品牌、logo等,一键搭建属于您的个性化在线考试系统',
  185. },
  186. {
  187. value: '与三方平台无缝集成,支持OA、HR、ERP、教务、微信、钉钉等应用的对接',
  188. },
  189. {
  190. value: 'PC、APP、H5统一管理,数据互动,充分利用水平化时间,塑造学员高频率使用习惯',
  191. },
  192. ],
  193. order: 1,
  194. num: '04',
  195. },
  196. img: {
  197. url: require('~/static/codeImage/code-jingli.png'),
  198. order: 2,
  199. },
  200. mianfei: true,
  201. zixun: true,
  202. shenqing: false,
  203. myType: 'kaoshi'
  204. }
  205. ],
  206. }
  207. },
  208. methods: {
  209. showVideo({url}) {
  210. this.curVideo = url;
  211. this.visible = true;
  212. }
  213. }
  214. }
  215. </script>
  216. <style lang="scss" scoped>
  217. .platform-products-services {
  218. h4 {
  219. font-size: 30px;
  220. font-weight: 800;
  221. color: #333;
  222. margin-top: 140px;
  223. margin-bottom: 120px;
  224. }
  225. .btn-groups {
  226. margin-top: 50px;
  227. }
  228. }
  229. </style>