Craft.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. <script setup>
  2. import { ref, reactive } from "vue";
  3. import axios from "axios";
  4. import moment from "moment";
  5. import Navbar from "@/components/Navbar.vue";
  6. import { useMainStore } from "@/stores/store";
  7. const store = useMainStore();
  8. const breadcrumbs = reactive([
  9. {
  10. title: "首頁",
  11. disabled: false,
  12. href: "/",
  13. },
  14. {
  15. title: "工藝學群",
  16. disabled: false,
  17. href: "/ntcri/college-group/craft",
  18. },
  19. {
  20. title: "技藝工藝",
  21. disabled: true,
  22. },
  23. ]);
  24. const testData = [
  25. {
  26. title: "種子教師研習",
  27. start_time: "2023/06/15",
  28. end_time: "2023/06/20",
  29. address: "地方工藝館 工藝教室",
  30. img: store.getImageUrl("college-group/img.jpg"),
  31. },
  32. {
  33. title: "種子教師研習",
  34. start_time: "2023/06/15",
  35. end_time: "2023/06/20",
  36. address: "地方工藝館 工藝教室",
  37. img: store.getImageUrl("college-group/img.jpg"),
  38. },
  39. {
  40. title: "種子教師研習",
  41. start_time: "2023/06/15",
  42. end_time: "2023/06/20",
  43. address: "地方工藝館 工藝教室",
  44. img: store.getImageUrl("college-group/img.jpg"),
  45. },
  46. ];
  47. </script>
  48. <template>
  49. <div class="college-bg-img">
  50. <Navbar />
  51. <v-container fluid class="college-content pb-16 px-sm-0">
  52. <div class="college-banner">
  53. <img src="@/assets/img/college-group/craft/banner.png" alt="" />
  54. <h1>技藝工藝</h1>
  55. </div>
  56. <div class="main-block">
  57. <v-breadcrumbs
  58. :items="breadcrumbs"
  59. divider="/"
  60. class="mt-10 pa-0"
  61. ></v-breadcrumbs>
  62. <div
  63. class="d-flex flex-column flex-sm-row align-center justify-space-between title"
  64. >
  65. <h2>校園扎根-教師限定課程</h2>
  66. <div class="search">
  67. <span>
  68. <input
  69. v-model="searchInput"
  70. type="text"
  71. @keyup.enter="search()"
  72. />
  73. <button @click="search()">
  74. <img src="@/assets/img/news/news-search-icon.png" alt="" />
  75. </button>
  76. </span>
  77. <div
  78. v-if="searchError"
  79. class="d-flex justify-center align-center error me-4"
  80. >
  81. <v-icon color="primary" icon="mdi-alert" class="me-2"></v-icon>
  82. 沒有符合搜尋條件的項目
  83. </div>
  84. </div>
  85. </div>
  86. <v-row>
  87. <v-col
  88. sm="6"
  89. md="4"
  90. cols="12"
  91. v-for="(item, index) in testData"
  92. :key="index"
  93. class="pa-5"
  94. >
  95. <div class="main-card">
  96. <section class="card-title">
  97. <h3>{{ item.title }}</h3>
  98. </section>
  99. <div class="card-info">
  100. <img :src="item.img" alt="" class="cover-img" />
  101. <ul>
  102. <li class="d-flex align-center">
  103. <img src="@/assets/img/icon/date_icon.png" alt="" />
  104. <p class="mb-0 ms-3">
  105. {{ moment(`${item.start_time}`).format("YYYY/MM/DD") }} -
  106. {{ moment(`${item.end_time}`).format("YYYY/MM/DD") }}
  107. </p>
  108. </li>
  109. <li class="d-flex align-center mt-3">
  110. <img src="@/assets/img/icon/location_icon.png" alt="" />
  111. <p class="mb-0 ms-3">
  112. {{ item.address }}
  113. </p>
  114. </li>
  115. </ul>
  116. </div>
  117. </div>
  118. </v-col>
  119. </v-row>
  120. <div
  121. class="d-flex flex-column flex-sm-row align-center justify-space-between title"
  122. >
  123. <h2>輕工藝私塾</h2>
  124. <div class="search">
  125. <span>
  126. <input
  127. v-model="searchInput"
  128. type="text"
  129. @keyup.enter="search()"
  130. />
  131. <button @click="search()">
  132. <img src="@/assets/img/news/news-search-icon.png" alt="" />
  133. </button>
  134. </span>
  135. <div
  136. v-if="searchError"
  137. class="d-flex justify-center align-center error me-4"
  138. >
  139. <v-icon color="primary" icon="mdi-alert" class="me-2"></v-icon>
  140. 沒有符合搜尋條件的項目
  141. </div>
  142. </div>
  143. </div>
  144. <v-row>
  145. <v-col
  146. sm="6"
  147. md="4"
  148. cols="12"
  149. v-for="(item, index) in testData"
  150. :key="index"
  151. class="pa-5"
  152. >
  153. <div class="main-card">
  154. <section class="card-title">
  155. <h3>{{ item.title }}</h3>
  156. </section>
  157. <div class="card-info">
  158. <img :src="item.img" alt="" class="cover-img" />
  159. <ul>
  160. <li class="d-flex align-center">
  161. <img src="@/assets/img/icon/date_icon.png" alt="" />
  162. <p class="mb-0 ms-3">
  163. {{ moment(`${item.start_time}`).format("YYYY/MM/DD") }} -
  164. {{ moment(`${item.end_time}`).format("YYYY/MM/DD") }}
  165. </p>
  166. </li>
  167. <li class="d-flex align-center mt-3">
  168. <img src="@/assets/img/icon/location_icon.png" alt="" />
  169. <p class="mb-0 ms-3">
  170. {{ item.address }}
  171. </p>
  172. </li>
  173. </ul>
  174. </div>
  175. </div>
  176. </v-col>
  177. </v-row>
  178. <div
  179. class="d-flex flex-column flex-sm-row align-center justify-space-between title"
  180. >
  181. <h2>手作體驗課程</h2>
  182. <div class="search">
  183. <span>
  184. <input
  185. v-model="searchInput"
  186. type="text"
  187. @keyup.enter="search()"
  188. />
  189. <button @click="search()">
  190. <img src="@/assets/img/news/news-search-icon.png" alt="" />
  191. </button>
  192. </span>
  193. <div
  194. v-if="searchError"
  195. class="d-flex justify-center align-center error me-4"
  196. >
  197. <v-icon color="primary" icon="mdi-alert" class="me-2"></v-icon>
  198. 沒有符合搜尋條件的項目
  199. </div>
  200. </div>
  201. </div>
  202. <v-row>
  203. <v-col
  204. sm="6"
  205. md="4"
  206. cols="12"
  207. v-for="(item, index) in testData"
  208. :key="index"
  209. class="pa-5"
  210. >
  211. <div class="main-card">
  212. <section class="card-title">
  213. <h3>{{ item.title }}</h3>
  214. </section>
  215. <div class="card-info">
  216. <img :src="item.img" alt="" class="cover-img" />
  217. <ul>
  218. <li class="d-flex align-center">
  219. <img src="@/assets/img/icon/date_icon.png" alt="" />
  220. <p class="mb-0 ms-3">
  221. {{ moment(`${item.start_time}`).format("YYYY/MM/DD") }} -
  222. {{ moment(`${item.end_time}`).format("YYYY/MM/DD") }}
  223. </p>
  224. </li>
  225. <li class="d-flex align-center mt-3">
  226. <img src="@/assets/img/icon/location_icon.png" alt="" />
  227. <p class="mb-0 ms-3">
  228. {{ item.address }}
  229. </p>
  230. </li>
  231. </ul>
  232. </div>
  233. </div>
  234. </v-col>
  235. </v-row>
  236. </div>
  237. </v-container>
  238. </div>
  239. </template>
  240. <style lang="scss" scoped>
  241. .content {
  242. padding: 0;
  243. width: 90%;
  244. @media (max-width: 600px) {
  245. width: 85%;
  246. }
  247. .main-block {
  248. padding: 100px 80px;
  249. margin-top: -30%;
  250. background-color: #fff;
  251. @media (max-width: 960px) {
  252. padding: 100px 50px;
  253. }
  254. @media (max-width: 600px) {
  255. padding: 100px 20px;
  256. }
  257. h2 {
  258. font-size: 30px;
  259. font-weight: 500;
  260. line-height: 32px;
  261. margin-left: 10px;
  262. @media (max-width: 960px) {
  263. font-size: 24px;
  264. }
  265. @media (max-width: 600px) {
  266. margin-left: 0;
  267. margin-bottom: 50px;
  268. }
  269. }
  270. .title {
  271. margin: 80px 0;
  272. @media (max-width: 600px) {
  273. margin: 50px 0;
  274. }
  275. }
  276. .v-breadcrumbs {
  277. position: relative;
  278. z-index: 100;
  279. justify-content: flex-start;
  280. @media (max-width: 600px) {
  281. justify-content: center;
  282. }
  283. }
  284. }
  285. }
  286. // .main-card {
  287. // letter-spacing: 1px;
  288. // border-radius: 10px;
  289. // box-shadow: 2px 2px 10px #aaaaaa;
  290. // background-color: var(--sub-color);
  291. // h3 {
  292. // padding: 15px;
  293. // font-size: 22px;
  294. // font-weight: 400;
  295. // text-align: center;
  296. // margin-bottom: 15px;
  297. // border-bottom: 2px solid #fff;
  298. // }
  299. // ul {
  300. // padding: 20px;
  301. // }
  302. // .cover-img {
  303. // padding: 0 15px;
  304. // }
  305. // }
  306. </style>