index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. <template>
  2. <div class="jsxcx">
  3. <!-- 页面头部 -->
  4. <HomePageHead></HomePageHead>
  5. <!-- 页面导航 -->
  6. <HomePageNavigation></HomePageNavigation>
  7. <!-- 面包屑导航 -->
  8. <div class="breadcrumb">
  9. <div class="inner">
  10. <span class="location">当前位置:</span>
  11. <el-breadcrumb :separator-icon="ArrowRight">
  12. <el-breadcrumb-item>
  13. <NuxtLink to="/">首页</NuxtLink>
  14. </el-breadcrumb-item>
  15. <el-breadcrumb-item>
  16. <NuxtLink to="/">介绍信查询</NuxtLink>
  17. </el-breadcrumb-item>
  18. </el-breadcrumb>
  19. </div>
  20. </div>
  21. <!-- 介绍信查询内容 -->
  22. <div class="rycxContent">
  23. <!-- 左侧 -->
  24. <div class="contentLeft">
  25. <p>
  26. <span class="title">介绍信编号:</span>
  27. <input type="text">
  28. <span class="example">(查看位置示例)</span>
  29. <button class="btn">搜索</button>
  30. </p>
  31. </div>
  32. <!-- 右侧 -->
  33. <div class="contentRight">
  34. <img src="../../public/index/index.png" alt="">
  35. <p>手机扫描查询</p>
  36. </div>
  37. </div>
  38. <!-- 页面底部 -->
  39. <HomeFoot></HomeFoot>
  40. </div>
  41. </template>
  42. <script setup>
  43. import { ref, onMounted } from 'vue'
  44. import { ElBreadcrumb, ElBreadcrumbItem } from 'element-plus'
  45. import { ArrowRight } from '@element-plus/icons-vue'
  46. const form = ref({
  47. name: '',
  48. region: '',
  49. cardID: '',
  50. })
  51. </script>
  52. <style lang="less" scoped>
  53. @media screen and (min-width: 1401px) {
  54. .jsxcx {
  55. font-family: '微软雅黑', Microsoft YaHei;
  56. //导航条
  57. .breadcrumb {
  58. width: 100%;
  59. height: 30PX;
  60. line-height: 30PX;
  61. margin-top: 20PX;
  62. margin-bottom: 20PX;
  63. .inner {
  64. width: 1400PX;
  65. border: 1PX solid #ccc;
  66. color: #000;
  67. font-size: 16PX;
  68. margin: 0 auto;
  69. .location {
  70. margin-right: 20PX;
  71. width: 100PX;
  72. height: 22PX;
  73. font-family: Microsoft YaHei, Microsoft YaHei;
  74. font-weight: 400;
  75. font-size: 16PX;
  76. color: #000;
  77. line-height: 23PX;
  78. text-align: left;
  79. font-style: normal;
  80. text-transform: none;
  81. }
  82. }
  83. :deep(.el-breadcrumb__separator) {
  84. color: #000;
  85. font-weight: bold;
  86. margin: 0 9PX;
  87. }
  88. :deep(.el-breadcrumb) {
  89. display: inline-block;
  90. vertical-align: -4PX;
  91. }
  92. :deep(.el-breadcrumb__inner a),
  93. :deep(.el-breadcrumb__inner.is-link) {
  94. color: #000;
  95. font-weight: 400;
  96. text-decoration: none;
  97. transition: var(--el-transition-color);
  98. }
  99. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
  100. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
  101. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
  102. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
  103. color: #000;
  104. }
  105. span {
  106. font-weight: 400;
  107. font-size: 16PX;
  108. color: #000;
  109. line-height: 23PX;
  110. text-align: left;
  111. font-style: normal;
  112. text-transform: none;
  113. }
  114. }
  115. .rycxContent {
  116. width: 1400PX;
  117. margin: 20PX auto;
  118. display: flex;
  119. justify-content: space-between;
  120. .contentLeft {
  121. width: 70%;
  122. height: auto;
  123. overflow: hidden;
  124. font-size: 16PX;
  125. p {
  126. margin-top: 20PX;
  127. display: flex;
  128. height: 34PX;
  129. line-height: 34PX;
  130. .title {
  131. font-size: 16PX;
  132. font-weight: 900;
  133. width: 163PX;
  134. text-align: right;
  135. margin-right: 30PX;
  136. color: #333;
  137. }
  138. input {
  139. width: 300PX;
  140. border: 1PX solid #ccc;
  141. margin-right: 100PX;
  142. outline: none;
  143. padding-left: 10PX;
  144. }
  145. .example {
  146. font-size: 14PX;
  147. color: #337ab3;
  148. margin-right: 120PX;
  149. }
  150. .btn {
  151. width: 90PX;
  152. color: #fff;
  153. background-color: #337ab3;
  154. border: none;
  155. border-radius: 4PX;
  156. }
  157. }
  158. }
  159. .contentRight {
  160. width: 28%;
  161. text-align: center;
  162. img {
  163. width: 280PX;
  164. height: 280PX;
  165. }
  166. p {
  167. font-size: 16PX;
  168. color: #333;
  169. }
  170. }
  171. }
  172. }
  173. }
  174. @media screen and (min-width: 801px) and (max-width: 1400px) {
  175. .jsxcx {
  176. font-family: '微软雅黑', Microsoft YaHei;
  177. //导航条
  178. .breadcrumb {
  179. width: 100%;
  180. height: 30PX;
  181. line-height: 30PX;
  182. margin-top: 20PX;
  183. margin-bottom: 20PX;
  184. .inner {
  185. width: 1400PX;
  186. border: 1PX solid #ccc;
  187. color: #000;
  188. font-size: 16PX;
  189. margin: 0 auto;
  190. .location {
  191. margin-right: 20PX;
  192. width: 100PX;
  193. height: 22PX;
  194. font-family: Microsoft YaHei, Microsoft YaHei;
  195. font-weight: 400;
  196. font-size: 16PX;
  197. color: #000;
  198. line-height: 23PX;
  199. text-align: left;
  200. font-style: normal;
  201. text-transform: none;
  202. }
  203. }
  204. :deep(.el-breadcrumb__separator) {
  205. color: #000;
  206. font-weight: bold;
  207. margin: 0 9PX;
  208. }
  209. :deep(.el-breadcrumb) {
  210. display: inline-block;
  211. vertical-align: -4PX;
  212. }
  213. :deep(.el-breadcrumb__inner a),
  214. :deep(.el-breadcrumb__inner.is-link) {
  215. color: #000;
  216. font-weight: 400;
  217. text-decoration: none;
  218. transition: var(--el-transition-color);
  219. }
  220. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
  221. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
  222. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
  223. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
  224. color: #000;
  225. }
  226. span {
  227. font-weight: 400;
  228. font-size: 16PX;
  229. color: #000;
  230. line-height: 23PX;
  231. text-align: left;
  232. font-style: normal;
  233. text-transform: none;
  234. }
  235. }
  236. .rycxContent {
  237. width: 1400PX;
  238. margin: 20PX auto;
  239. display: flex;
  240. justify-content: space-between;
  241. .contentLeft {
  242. width: 70%;
  243. height: auto;
  244. overflow: hidden;
  245. font-size: 16PX;
  246. p {
  247. margin-top: 20PX;
  248. display: flex;
  249. height: 34PX;
  250. line-height: 34PX;
  251. .title {
  252. font-size: 16PX;
  253. font-weight: 900;
  254. width: 163PX;
  255. text-align: right;
  256. margin-right: 30PX;
  257. color: #333;
  258. }
  259. input {
  260. width: 300PX;
  261. border: 1PX solid #ccc;
  262. margin-right: 100PX;
  263. outline: none;
  264. padding-left: 10PX;
  265. }
  266. .example {
  267. font-size: 14PX;
  268. color: #337ab3;
  269. margin-right: 120PX;
  270. }
  271. .btn {
  272. width: 90PX;
  273. color: #fff;
  274. background-color: #337ab3;
  275. border: none;
  276. border-radius: 4PX;
  277. }
  278. }
  279. }
  280. .contentRight {
  281. width: 28%;
  282. text-align: center;
  283. img {
  284. width: 280PX;
  285. height: 280PX;
  286. }
  287. p {
  288. font-size: 16PX;
  289. color: #333;
  290. }
  291. }
  292. }
  293. }
  294. }
  295. @media screen and (max-width: 800px) {
  296. .jsxcx {
  297. font-family: '微软雅黑', Microsoft YaHei;
  298. //导航条
  299. .breadcrumb {
  300. width: 100%;
  301. height: 30px;
  302. line-height: 30px;
  303. margin-top: 20px;
  304. margin-bottom: 20px;
  305. .inner {
  306. width: 1400px;
  307. border: 1px solid #ccc;
  308. color: #000;
  309. font-size: 16px;
  310. margin: 0 auto;
  311. .location {
  312. margin-right: 20px;
  313. width: 100px;
  314. height: 22px;
  315. font-family: Microsoft YaHei, Microsoft YaHei;
  316. font-weight: 400;
  317. font-size: 16px;
  318. color: #000;
  319. line-height: 23px;
  320. text-align: left;
  321. font-style: normal;
  322. text-transform: none;
  323. }
  324. }
  325. :deep(.el-breadcrumb__separator) {
  326. color: #000;
  327. font-weight: bold;
  328. margin: 0 9px;
  329. }
  330. :deep(.el-breadcrumb) {
  331. display: inline-block;
  332. vertical-align: -4px;
  333. }
  334. :deep(.el-breadcrumb__inner a),
  335. :deep(.el-breadcrumb__inner.is-link) {
  336. color: #000;
  337. font-weight: 400;
  338. text-decoration: none;
  339. transition: var(--el-transition-color);
  340. }
  341. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
  342. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
  343. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
  344. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
  345. color: #000;
  346. }
  347. span {
  348. font-weight: 400;
  349. font-size: 16px;
  350. color: #000;
  351. line-height: 23px;
  352. text-align: left;
  353. font-style: normal;
  354. text-transform: none;
  355. }
  356. }
  357. .rycxContent {
  358. width: 1400px;
  359. margin: 20px auto;
  360. display: flex;
  361. justify-content: space-between;
  362. .contentLeft {
  363. width: 70%;
  364. height: auto;
  365. overflow: hidden;
  366. font-size: 16px;
  367. p {
  368. margin-top: 20px;
  369. display: flex;
  370. height: 34px;
  371. line-height: 34px;
  372. .title {
  373. font-size: 16px;
  374. font-weight: 900;
  375. width: 163px;
  376. text-align: right;
  377. margin-right: 30px;
  378. color: #333;
  379. }
  380. input {
  381. width: 300px;
  382. border: 1px solid #ccc;
  383. margin-right: 100px;
  384. outline: none;
  385. padding-left: 10px;
  386. }
  387. .example {
  388. font-size: 14px;
  389. color: #337ab3;
  390. margin-right: 120px;
  391. }
  392. .btn {
  393. width: 90px;
  394. color: #fff;
  395. background-color: #337ab3;
  396. border: none;
  397. border-radius: 4px;
  398. }
  399. }
  400. }
  401. .contentRight {
  402. width: 28%;
  403. text-align: center;
  404. img {
  405. width: 280px;
  406. height: 280px;
  407. }
  408. p {
  409. font-size: 16px;
  410. color: #333;
  411. }
  412. }
  413. }
  414. }
  415. }
  416. </style>