biteAndSup.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  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 solution-biteAndSup"/>
  11. </div>
  12. </div>
  13. </div>
  14. </div>
  15. <!-- 视频餐饮培训现状 -->
  16. <div class="client-xianzhuang-box">
  17. <h4>食品餐饮培训现状</h4>
  18. <p>随着社会经济的不断发展,餐饮消费的方式日益多元化与现代化,品牌化、规模化、连锁式、跨区域式餐饮经营是未来的趋势,餐饮文化的传播将越来越国际化和市场化。
  19. 如何应对蓬勃发展的餐饮形式,不仅知识餐饮企业所面对的问题,同时也是烹饪教育应该思考的问题。
  20. </p>
  21. </div>
  22. <!-- 视频餐饮培训的痛点 -->
  23. <div class="client-tongdian-box client-container">
  24. <h4>食品餐饮培训的痛点</h4>
  25. <ul>
  26. <li>
  27. <div>
  28. <i></i>
  29. <p>人力成本过大,员工素质普遍较低</p>
  30. </div>
  31. </li>
  32. <li>
  33. <div>
  34. <i></i>
  35. <p>连锁餐饮企业学习资源共享困难,造成浪费</p>
  36. </div>
  37. </li>
  38. <li>
  39. <div>
  40. <i></i>
  41. <p>餐饮卫生安全隐患问题严重,员工意识不强</p>
  42. </div>
  43. </li>
  44. </ul>
  45. </div>
  46. <!-- 青谷解决方案 -->
  47. <div class="client-fangan-box client-container">
  48. <h4 class="client-title">青谷解决方案</h4>
  49. <imgCardLv2 :option="item" v-for="(item,index) in productList" :key="index">
  50. <div class="btn-groups">
  51. <onlineInformationBtn my-type="2" class="online-information-btn btn-item"/>
  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. <video-card :card-data="{title: '课程名称', url: video1, imgUrl:img1}" @card-click="showVideo"></video-card>
  62. </li>
  63. <li>
  64. <video-card :card-data="{title: '课程名称', url: video1, imgUrl:img1}" @card-click="showVideo"></video-card>
  65. </li>
  66. <li>
  67. <video-card :card-data="{title: '课程名称', url: video1, imgUrl:img1}" @card-click="showVideo"></video-card>
  68. </li>
  69. </ul>
  70. </div>
  71. <!-- 立即咨询 -->
  72. <desWithCode source="biteAndSup"></desWithCode>
  73. <videoDialog :source="curVideo" :visible.sync="visible"></videoDialog>
  74. </div>
  75. </template>
  76. <script>
  77. import chanPinTiYan from "~/components/common/chanPinTiYan";
  78. import freeTrialBtn from "~/components/common/freeTrialBtn";
  79. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  80. import newsComp2 from "~/components/common/newsComp2";
  81. import {BannerImgs} from "~/defaultConfig";
  82. import videoDialog from "~/components/common/videoDialog";
  83. import videoCard from "~/components/common/videoCard";
  84. import desWithCode from "@/components/common/layout/desComp/desWithCode";
  85. import imgCardLv2 from "@/components/common/layout/imgDes/imgCardLv2";
  86. /**
  87. * @ 解决方案 -> 食品餐饮
  88. */
  89. export default {
  90. name: "biteAndSup",
  91. layout: 'templateB',
  92. components: {
  93. chanPinTiYan,
  94. freeTrialBtn,
  95. onlineInformationBtn,
  96. newsComp2,
  97. videoDialog,
  98. videoCard,
  99. desWithCode,
  100. imgCardLv2
  101. },
  102. async asyncData({$axios, store}) {
  103. const arr = [
  104. $axios.$post(`/home/banner/list`, {'code': BannerImgs.shipincanyin}),
  105. ];
  106. const [res2] = await Promise.all(arr);
  107. return {
  108. bannerList: res2.data.data || [],
  109. }
  110. },
  111. head() {
  112. return {
  113. title: '在线考试平台_在线考试软件_试卷软件系统',
  114. meta: [
  115. {
  116. name: 'keywords',
  117. content: '考试平台,试卷系统,试卷软件'
  118. },
  119. {
  120. name: 'description',
  121. content: '麦塔考试系统具有良好高并发性和访问安全部署、严格的考试监控防作弊功能、PC移动支持多终端,随时随地考试、丰富的考试管理功能。'
  122. }
  123. ],
  124. }
  125. },
  126. data() {
  127. return {
  128. curVideo: '',
  129. visible: false,
  130. productList: [
  131. {
  132. content: {
  133. title: '强大的人员管理和培训功能',
  134. list: [
  135. {
  136. value: '支持手动、批量导入人员及部门多层级管理功能,解决机构人员多且分散的问题',
  137. },
  138. {
  139. value: '支持线上课程、直播课、线下培训按照课程科目设定进行课程分类划分',
  140. },
  141. {
  142. value: '学习时段灵活,不强制要求学员在某一特定时刻参加培训,并支持无限学习,实现从“了解”到“理解”的飞跃',
  143. },
  144. ],
  145. order: 2,
  146. num: '01',
  147. },
  148. img: {
  149. url: require(`~/static/productImage/p33.png`),
  150. order: 1,
  151. },
  152. mianfei: true,
  153. zixun: true,
  154. shenqing: false,
  155. myType: 'kaoshi'
  156. },
  157. {
  158. content: {
  159. title: '强大的AI防作弊,保障考试公平公正',
  160. list: [
  161. {
  162. value: '人脸识别、摄像头监考、有效防止替考代考,保障考试公平公正',
  163. },
  164. {
  165. value: '支持子管理员协助多屏监控在线监考,考生的面部表情、一举一动在后台实时呈现,最大程度模拟人工监考场景',
  166. },
  167. {
  168. value: '随机组卷、试题乱序、选择题选项乱序、超时强制交卷、防止切屏限制,有效的防止考生相互抄卷的行为',
  169. },
  170. ],
  171. order: 1,
  172. num: '02',
  173. },
  174. img: {
  175. url: require(`~/static/productImage/p34.png`),
  176. order: 2,
  177. },
  178. mianfei: true,
  179. zixun: true,
  180. shenqing: false,
  181. myType: 'kaoshi'
  182. },
  183. {
  184. content: {
  185. title: '良好的高并发性,系统稳定性高',
  186. list: [
  187. {
  188. value: '采用的运行稳定、安全性很高的JAVA语言开发',
  189. },
  190. {
  191. value: '拥有强大的考试并发负载能力,支持万人以上考生同时在线考试',
  192. },
  193. {
  194. value: '分布式微服务架构、开放、安全、高能、高可靠的服务调用',
  195. },
  196. {
  197. value: '为企业快速、灵活构建大规模分布式服务应用提供基础',
  198. },
  199. ],
  200. order: 2,
  201. num: '03',
  202. },
  203. img: {
  204. url: require(`~/static/productImage/p32.png`),
  205. order: 1,
  206. },
  207. mianfei: true,
  208. zixun: true,
  209. shenqing: false,
  210. myType: 'kaoshi'
  211. },
  212. {
  213. content: {
  214. title: '多端口个性化设置随心选择',
  215. list: [
  216. {
  217. value: '支持个性化定制登录背景、品牌、logo等,一键搭建属于您的个性化在线考试系统',
  218. },
  219. {
  220. value: '与三方平台无缝集成,支持OA、HR、ERP、教务、微信、钉钉等应用的对接',
  221. },
  222. {
  223. value: 'PC、APP、H5统一管理,数据互动,充分利用水平化时间,塑造学员高频率使用习惯',
  224. },
  225. ],
  226. order: 1,
  227. num: '04',
  228. },
  229. img: {
  230. url: require(`~/static/productImage/p37.png`),
  231. order: 2,
  232. },
  233. mianfei: true,
  234. zixun: true,
  235. shenqing: false,
  236. myType: 'kaoshi'
  237. }
  238. ],
  239. // 食品餐饮
  240. img1: require(`~/static/images/client/course/course-video-img2.png`),
  241. video1: 'https://spdb.mtavip.com/customerTrans/87321d8a03805711940e85451d6bcb0a/1ddbed8f-17470897f92-0006-732a-c93-687b7.mp4',
  242. img2: require(`~/static/images/client/course/course-video-img2.png`),
  243. video2: 'https://spdb.mtavip.com/customerTrans/87321d8a03805711940e85451d6bcb0a/1ddbed8f-17470897f92-0006-732a-c93-687b7.mp4',
  244. img3: require(`~/static/images/client/course/course-video-img2.png`),
  245. video3: 'https://spdb.mtavip.com/customerTrans/87321d8a03805711940e85451d6bcb0a/1ddbed8f-17470897f92-0006-732a-c93-687b7.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-biteAndSup {
  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/z97.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/z102.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/z101.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>