瑜璟缘官网
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

97 wiersze
3.4 KiB

  1. <template>
  2. <div class="Box">
  3. <div class="leftBox">
  4. <textTitle text="课程认证" />
  5. <ul>
  6. <li v-for="(item, index) in schedule1" :key="index">
  7. <course :name="item.naem" :time="item.time" :text="item.text"/>
  8. </li>
  9. </ul>
  10. <!-- <ul style="float: left;width: 50%;overflow: hidden;">
  11. <li v-for="(item, index) in schedule2" :key="index">
  12. <course :name="item.naem" :time="item.time" :text="item.text"/>
  13. </li>
  14. </ul> -->
  15. </div>
  16. <sidebar />
  17. </div>
  18. </template>
  19. <script>
  20. import textTitle from "@/components/headTail/textTitle";
  21. import sidebar from "@/components/sidebar/sidebar";
  22. import course from "./course";
  23. export default {
  24. components: {
  25. sidebar,
  26. textTitle,
  27. course,
  28. },
  29. data() {
  30. return {
  31. schedule1:[
  32. {
  33. naem:'商务礼仪培训',
  34. time:'6-12课时/期',
  35. text:'名师导师亲自带你入门,手把手教学,课后辅导,疑惑解答等问题,都有老师指导。'
  36. },
  37. {
  38. naem:'形象美学',
  39. time:'6-12课时/期',
  40. text:'名师导师亲自带你入门,手把手教学,课后辅导,疑惑解答等问题,都有老师指导。'
  41. },
  42. {
  43. naem:'商务礼仪专业指导',
  44. time:'48课时/期',
  45. text:'名师导师亲自带你入门,手把手教学,课后辅导,疑惑解答等问题,都有老师指导。'
  46. },
  47. {
  48. naem:'CAMC城市联盟',
  49. time:'48课时/期',
  50. text:'名师导师亲自带你入门,手把手教学,课后辅导,疑惑解答等问题,都有老师指导。'
  51. },
  52. {
  53. naem:'CIET国际形象礼仪',
  54. time:'56课时/期',
  55. text:'名师导师亲自带你入门,手把手教学,课后辅导,疑惑解答等问题,都有老师指导。'
  56. },
  57. {
  58. naem:'个人形象设计入门初级训练',
  59. time:'2-4课时/期',
  60. text:'名师导师亲自带你入门,手把手教学,课后辅导,疑惑解答等问题,都有老师指导。'
  61. },
  62. {
  63. naem:'国际商务礼仪',
  64. time:'6-72课时/期',
  65. text:'欧美国际业务合作的重要基础,涵盖接待,餐饮等类容。名师导师亲自带你入门,手把手教学。'
  66. },
  67. {
  68. naem:'集团战略合作',
  69. time:'56课时/期',
  70. text:'整包合作,基于协议基础,根据时间组班授课,性价比高,培训效果好,加深记忆和使用效果,名师导师亲自带你入门,手把手教学。'
  71. },
  72. {
  73. naem:'IIC国际形象顾问',
  74. time:'56课时/期',
  75. text:'整包合作,基于协议基础,根据时间组班授课,性价比高,培训效果好,加深记忆和使用效果,名师导师亲自带你入门,手把手教学'
  76. },
  77. {
  78. naem:'EET测评国际礼仪师',
  79. time:'56课时/期',
  80. text:'整包合作,基于协议基础,根据时间组班授课,性价比高,培训效果好,加深记忆和使用效果,名师导师亲自带你入门,手把手教学。'
  81. },
  82. ],
  83. schedule2:[
  84. ]
  85. }
  86. },
  87. };
  88. </script>
  89. <style scoped>
  90. .leftBox ul li{
  91. width: 50%;
  92. float: left;
  93. }
  94. </style>