소스 검색

fix:开始页面

jianghaili 3 주 전
부모
커밋
0f2bacbc3c

+ 210 - 0
pages/my/jobApplicant/startPage.vue

@@ -0,0 +1,210 @@
+<template>
+  <view class="start-page">
+    <view class="start-content">
+      <swiper
+        class="custom-swiper"
+        autoplay
+        circular
+        :current="currentIndex"
+        @change="onSwiperChange"
+      >
+        <swiper-item v-for="(item, index) in 3" :key="index">
+          <view class="content">
+            <image
+              src="../../../static/images/jobApplicant/wumen.svg"
+              class="wumen-img"
+              mode="scaleToFill"
+            />
+            <view class="txt-box">
+              <view class="start-logo">
+                <image
+                  src="../../../static/images/jobApplicant/logo-column.svg"
+                  mode="scaleToFill"
+                />
+              </view>
+              <view class="start-title">让你的逐梦之路更简单</view>
+              <view class="start-desc"
+                >星光不负逐梦人 <br />
+                愿你在亿职赞找到心仪的工作</view
+              >
+            </view>
+          </view></swiper-item
+        >
+      </swiper>
+
+      <!-- 自定义指示器 -->
+      <view class="custom-indicator">
+        <view
+          v-for="(item, index) in 3"
+          :key="index"
+          class="indicator-dot"
+          :class="{ active: currentIndex === index }"
+          @click="switchBanner(index)"
+        ></view>
+      </view>
+    </view>
+    <view class="start-btn">开启探索之旅</view>
+  </view>
+</template>
+<script>
+export default {
+  data() {
+    return {
+      currentIndex: 0,
+    };
+  },
+  methods: {
+    // 轮播图切换事件
+    onSwiperChange(e) {
+      this.currentIndex = e.detail.current;
+    },
+
+    // 切换轮播图
+    switchBanner(index) {
+      this.currentIndex = index;
+    },
+
+    // 点击轮播图
+    handleBannerClick(item) {
+      if (item.link) {
+        uni.navigateTo({
+          url: item.link,
+        });
+      }
+    },
+
+    // 暂停自动播放
+    pauseAutoplay() {
+      this.autoplay = false;
+    },
+
+    // 开始自动播放
+    startAutoplay() {
+      this.autoplay = true;
+    },
+  },
+  onShow() {
+    // 页面显示时恢复自动播放
+    this.startAutoplay();
+  },
+  onHide() {
+    // 页面隐藏时暂停自动播放
+    this.pauseAutoplay();
+  },
+};
+</script>
+<style lang="scss" scoped>
+.start-page {
+  background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
+  position: absolute;
+  left: 0;
+  right: 0;
+  top: 0;
+  bottom: 0;
+  display: flex;
+  flex-direction: column;
+  padding: 20rpx 24rpx;
+  box-sizing: border-box;
+  .start-content {
+    padding: 28rpx;
+    box-sizing: border-box;
+    padding-top: 5vh;
+    box-sizing: border-box;
+    flex: 1;
+    .content {
+      position: relative;
+      margin-top: 780rpx;
+      .wumen-img {
+        width: 614rpx;
+        height: 780rpx;
+        position: absolute;
+        left: 0;
+        right: 0;
+        top: -760rpx;
+        margin: auto;
+        z-index: 1;
+      }
+      .txt-box {
+        position: relative;
+        background-color: #fff;
+        border-radius: 64rpx;
+        padding: 64rpx 48rpx;
+        box-sizing: border-box;
+        z-index: 20;
+        .start-logo {
+          margin: auto;
+          width: 240rpx;
+          height: 66rpx;
+          image {
+            width: 100%;
+            height: 100%;
+          }
+        }
+        .start-title {
+          color: #016bf6;
+          font-family: DM Sans;
+          font-size: 48rpx;
+          font-weight: 700;
+          line-height: 32px;
+          letter-spacing: 0%;
+          text-align: center;
+          padding: 48rpx 0;
+          box-sizing: border-box;
+        }
+        .start-desc {
+          color: #9ca4ab;
+          font-family: DM Sans;
+          font-size: 28rpx;
+          font-weight: 400;
+          line-height: 44rpx;
+          letter-spacing: 0%;
+          text-align: center;
+        }
+      }
+    }
+  }
+  .start-btn {
+    flex-shrink: 0;
+    color: #016bf6;
+    font-family: DM Sans;
+    font-size: 32rpx;
+    font-weight: 400;
+    line-height: 48rpx;
+    letter-spacing: 0%;
+    text-align: center;
+    background-color: #fff;
+    border-radius: 100rpx;
+    padding: 16rpx 32rpx;
+    box-sizing: border-box;
+    display: flex;
+    justify-content: center;
+    align-items: center;
+    margin-bottom: 52rpx;
+  }
+  .custom-swiper {
+    height: 100%;
+  }
+  .custom-indicator {
+    display: flex;
+    justify-content: center;
+    align-items: center;
+    margin-top: -60rpx;
+    gap: 16rpx;
+    position: relative;
+    z-index: 3;
+    .indicator-dot {
+      width: 20rpx;
+      height: 20rpx;
+      border-radius: 50%;
+      background: #fff;
+      transition: all 0.3s ease;
+
+      &.active {
+        width: 64rpx;
+        border-radius: 20rpx;
+        background: #fff;
+      }
+    }
+  }
+}
+</style>

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 2 - 0
static/images/jobApplicant/bangongyuansu.svg


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 2 - 0
static/images/jobApplicant/bumen.svg


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 19 - 0
static/images/jobApplicant/delivery-address_bro.svg


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 9 - 0
static/images/jobApplicant/delivery_bro.svg


+ 8 - 0
static/images/jobApplicant/edit.svg

@@ -0,0 +1,8 @@
+<svg viewBox="0 0 24.8135 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24.813477" height="24.000000" fill="none">
+	<rect id="Edit Square" width="24.813557" height="24.000000" x="0.000000" y="0.000000" />
+	<g id="Icon - Edit">
+		<g id="Edit-Square">
+			<path id="Combined-Shape" d="M11.8811 2.03689C12.3092 2.03689 12.6566 2.37289 12.6566 2.78689C12.6566 3.20089 12.3092 3.53689 11.8811 3.53689L8.0154 3.53689C5.34381 3.53689 3.61823 5.30689 3.61823 8.04589L3.61823 16.3599C3.61823 19.0989 5.34381 20.8689 8.0154 20.8689L17.1385 20.8689C19.8101 20.8689 21.5367 19.0989 21.5367 16.3599L21.5367 12.3319C21.5367 11.9179 21.8841 11.5819 22.3121 11.5819C22.7402 11.5819 23.0876 11.9179 23.0876 12.3319L23.0876 16.3599C23.0876 19.9539 20.6962 22.3689 17.1385 22.3689L8.0154 22.3689C4.45776 22.3689 2.06738 19.9539 2.06738 16.3599L2.06738 8.04589C2.06738 4.45189 4.45776 2.03689 8.0154 2.03689L11.8811 2.03689ZM20.886 2.91549L22.1442 4.13249C22.7573 4.72449 23.0944 5.51149 23.0934 6.34949C23.0934 7.18749 22.7563 7.97349 22.1442 8.56449L14.3807 16.0735C13.811 16.6245 13.0521 16.9285 12.2457 16.9285L8.37271 16.9285C8.16387 16.9285 7.96329 16.8465 7.81751 16.7015C7.67173 16.5575 7.59212 16.3625 7.59729 16.1595L7.69448 12.3805C7.71412 11.6285 8.02739 10.9215 8.57743 10.3885L8.57846 10.3885L16.3048 2.91549C17.5682 1.69549 19.6226 1.69549 20.886 2.91549ZM15.6683 5.65149L9.67439 11.4495C9.40661 11.7085 9.25463 12.0525 9.24532 12.4175L9.16778 15.4285L12.2457 15.4285C12.6386 15.4285 13.0066 15.2815 13.2848 15.0125L19.3149 9.17849L15.6683 5.65149ZM17.4007 3.97649L16.7642 4.59049L20.4108 8.11849L21.0483 7.50349C21.3667 7.19549 21.5425 6.78549 21.5425 6.34949C21.5425 5.91249 21.3667 5.50149 21.0483 5.19349L19.7901 3.97649C19.1315 3.34149 18.0603 3.34149 17.4007 3.97649Z" fill="rgb(23,23,37)" fill-rule="evenodd" />
+		</g>
+	</g>
+</svg>

+ 19 - 0
static/images/jobApplicant/login-success.svg

@@ -0,0 +1,19 @@
+<svg viewBox="0 0 200 140" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200.000000" height="140.000000" fill="none">
+	<defs>
+		<filter id="pixso_custom_mask_type_alpha">
+			<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 " />
+		</filter>
+	</defs>
+	<mask id="mask_0" width="40.000000" height="40.000000" x="80.000000" y="50.000000" maskUnits="userSpaceOnUse">
+		<g filter="url(#pixso_custom_mask_type_alpha)">
+			<rect id="Bounding box" width="40.000000" height="40.000000" x="80.000000" y="50.000000" fill="rgb(217,217,217)" />
+		</g>
+	</mask>
+	<rect id="Account created" width="200.000000" height="140.000000" x="0.000000" y="0.000000" />
+	<g id="Group 6">
+		<path id="Union" d="M78 26C90.1503 26 100 35.8497 100 48C100 35.8497 109.85 26 122 26C134.15 26 144 35.8497 144 48C144 60.1503 134.15 70 122 70C134.15 70 144 79.8497 144 92C144 104.15 134.15 114 122 114C109.85 114 100 104.15 100 92C100 104.15 90.1503 114 78 114C65.8497 114 56 104.15 56 92C56 79.8497 65.8497 70 78 70C65.8497 70 56 60.1503 56 48C56 35.8497 65.8497 26 78 26Z" fill="rgb(153,196,250)" fill-opacity="0.400000006" fill-rule="evenodd" />
+		<g id="check" mask="url(#mask_0)">
+			<path id="check" d="M95.917 80.0002L86.417 70.5002L88.792 68.1252L95.917 75.2502L111.209 59.9585L113.584 62.3335L95.917 80.0002Z" fill="rgb(1,107,246)" fill-rule="nonzero" />
+		</g>
+	</g>
+</svg>

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 2 - 0
static/images/jobApplicant/logo-column.svg


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 2 - 0
static/images/jobApplicant/logo.svg


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 2 - 0
static/images/jobApplicant/nvqiangren.svg


+ 5 - 0
static/images/jobApplicant/password.svg

@@ -0,0 +1,5 @@
+<svg viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="14.000000" height="14.000000" fill="none">
+	<rect id="svg 33" width="14.000000" height="14.000000" x="0.000000" y="0.000000" />
+	<path id="矢量 31" d="M7.72773 7.70705C7.72773 7.90305 7.61573 8.07805 7.44073 8.16205L7.44073 8.72205C7.44073 8.84105 7.34273 8.93905 7.22373 8.93905C7.10473 8.93905 7.00673 8.84105 7.00673 8.72205L7.00673 8.16205C6.83173 8.07805 6.71973 7.89605 6.71973 7.70704C6.71973 7.42704 6.94373 7.19604 7.23073 7.19604C7.50373 7.20305 7.73473 7.42704 7.72773 7.70704L7.72773 7.70705Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
+	<path id="矢量 32" d="M7.22404 0.440918C3.59804 0.440918 0.665039 3.38092 0.665039 6.99992C0.665039 10.6189 3.59804 13.5589 7.22404 13.5589C10.843 13.5589 13.783 10.6259 13.783 6.99992C13.776 3.38092 10.843 0.440918 7.22404 0.440918L7.22404 0.440918ZM9.76504 9.33092C9.76504 9.55492 9.57604 9.74392 9.33804 9.74392L5.10304 9.74392C4.87204 9.74392 4.68304 9.56192 4.68304 9.33092L4.68304 6.59392C4.68304 6.36992 4.87204 6.18092 5.10304 6.18092L5.19404 6.18092C5.18704 6.15992 5.18704 6.14592 5.18704 6.12492L5.18704 5.76092C5.18704 4.86492 6.15304 4.01092 7.12604 3.97592C8.09904 3.94092 8.94604 4.47992 9.07904 5.31292C9.10004 5.45292 9.00204 5.57892 8.86204 5.59992C8.72904 5.62092 8.59604 5.52992 8.57504 5.38992C8.49104 4.84392 7.88204 4.45892 7.14004 4.48692C6.42604 4.50792 5.69104 5.15892 5.69104 5.76092L5.69104 6.12492C5.69104 6.14592 5.69104 6.15992 5.68404 6.18092L9.33104 6.18092C9.56204 6.18092 9.75804 6.36292 9.75804 6.59392L9.75804 9.33092L9.76504 9.33092Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
+</svg>

+ 4 - 0
static/images/jobApplicant/phone.svg

@@ -0,0 +1,4 @@
+<svg viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="14.000000" height="14.000000" fill="none">
+	<rect id="svg 32" width="14.000000" height="14.000000" x="0.000000" y="0.000000" />
+	<path id="矢量 31" d="M6.95518 0.358887C3.27785 0.358887 0.28418 3.35139 0.28418 7.0293C0.28418 10.7072 3.27668 13.7003 6.95518 13.7003C10.6337 13.7003 13.6268 10.7078 13.6268 7.0293C13.6268 3.3508 10.6337 0.358887 6.95518 0.358887ZM9.39526 10.5217C7.03276 10.5217 3.52285 6.77497 3.52285 4.8068C3.52285 4.01989 4.20126 3.48789 4.7671 3.48789C5.36618 3.48789 6.38643 5.21455 6.38643 5.57914C6.38643 5.83639 6.2756 6.01839 6.18635 6.1648C6.11693 6.27855 6.0761 6.34914 6.07143 6.4308C6.1636 6.71839 7.2381 7.78997 7.54143 7.89789C7.62251 7.89089 7.7246 7.83722 7.83251 7.78122C8.00168 7.69372 8.21168 7.58347 8.46951 7.58347C8.88076 7.58347 10.6395 8.73089 10.6395 9.2028C10.6395 10.0994 10.1291 10.5211 9.39526 10.5211L9.39526 10.5217Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
+</svg>

+ 15 - 0
static/images/jobApplicant/rili.svg

@@ -0,0 +1,15 @@
+<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24.000000" height="24.000000" fill="none" customFrame="#000000">
+	<rect id="Iconly/Light/Calendar" width="24.000000" height="24.000000" x="0.000000" y="0.000000" fill="rgb(255,255,255)" fill-opacity="0" />
+	<g id="Calendar">
+		<path id="Line_200" d="M3.09277 9.40445L20.9167 9.40445" fill-rule="evenodd" stroke="rgb(23,23,37)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" />
+		<path id="Line_201" d="M16.442 13.3097L16.4512 13.3097" fill-rule="evenodd" stroke="rgb(23,23,37)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" />
+		<path id="Line_202" d="M12.0045 13.3097L12.0137 13.3097" fill-rule="evenodd" stroke="rgb(23,23,37)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" />
+		<path id="Line_203" d="M7.55818 13.3097L7.56744 13.3097" fill-rule="evenodd" stroke="rgb(23,23,37)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" />
+		<path id="Line_204" d="M16.442 17.1964L16.4512 17.1964" fill-rule="evenodd" stroke="rgb(23,23,37)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" />
+		<path id="Line_205" d="M12.0045 17.1964L12.0137 17.1964" fill-rule="evenodd" stroke="rgb(23,23,37)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" />
+		<path id="Line_206" d="M7.55818 17.1964L7.56744 17.1964" fill-rule="evenodd" stroke="rgb(23,23,37)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" />
+		<path id="Line_207" d="M16.0433 2L16.0433 5.29078" fill-rule="evenodd" stroke="rgb(23,23,37)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" />
+		<path id="Line_208" d="M7.96515 2L7.96515 5.29078" fill-rule="evenodd" stroke="rgb(23,23,37)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" />
+		<path id="Path" d="M7.77096 3.5791C4.83427 3.5791 3 5.21504 3 8.22213L3 17.2718C3 20.3261 4.83427 21.9999 7.77096 21.9999L16.229 21.9999C19.175 21.9999 21 20.3545 21 17.3474L21 8.22213C21.0092 5.21504 19.1842 3.5791 16.2383 3.5791L7.77096 3.5791Z" fill-rule="evenodd" stroke="rgb(23,23,37)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" />
+	</g>
+</svg>

+ 4 - 0
static/images/jobApplicant/touxiang.svg

@@ -0,0 +1,4 @@
+<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24.000000" height="24.000000" fill="none">
+	<rect id="svg 35" width="24.000002" height="24.000000" x="0.000000" y="0.000000" />
+	<path id="矢量 31" d="M22.5011 11.9916C22.5011 10.5732 22.2232 9.20139 21.674 7.90529C21.1472 6.65584 20.3889 5.53318 19.4264 4.57037C18.4614 3.60545 17.3388 2.84959 16.0893 2.32037C14.7954 1.77334 13.4193 1.49561 12.003 1.49561C10.5867 1.49561 9.21066 1.77357 7.91668 2.32037C6.66723 2.84959 5.54457 3.60545 4.57965 4.57037C3.61707 5.53295 2.85887 6.65584 2.33199 7.90529C1.78285 9.20139 1.50488 10.5753 1.50488 11.9916C1.50488 13.4079 1.78285 14.784 2.32965 16.0779C2.85887 17.3274 3.61473 18.4501 4.57965 19.415C5.54457 20.3799 6.66512 21.1358 7.91668 21.665C9.21066 22.212 10.5867 22.4897 12.003 22.4897C13.4193 22.4897 14.7954 22.2118 16.0893 21.665C17.3388 21.1358 18.4614 20.3799 19.4264 19.415C20.3913 18.4501 21.1472 17.3295 21.6764 16.0779C22.2232 14.784 22.5011 13.4101 22.5011 11.9916L22.5011 11.9916ZM18.7929 18.1412C17.1143 19.9908 14.6911 21.1559 12.003 21.1559C9.31496 21.1559 6.89176 19.9908 5.21316 18.1412C7.10504 16.5205 9.49074 15.6378 12.003 15.6378C14.5132 15.6378 16.9007 16.5226 18.7929 18.1412ZM15.2711 10.7021C15.2711 12.503 13.8061 13.9702 12.003 13.9702C10.2 13.9702 8.73488 12.5028 8.73488 10.7021C8.73488 8.89904 10.2023 7.43397 12.003 7.43397C13.8061 7.43397 15.2711 8.90139 15.2711 10.7021L15.2711 10.7021ZM21.1673 11.9916C21.1673 13.8769 20.5938 15.631 19.6155 17.0895C18.1303 15.8312 16.3762 14.9708 14.4977 14.5683C15.765 13.748 16.6054 12.3207 16.6054 10.7021C16.6054 8.16311 14.5401 6.0999 12.0032 6.0999C9.46426 6.0999 7.40106 8.16522 7.40106 10.7021C7.40106 12.3207 8.24152 13.748 9.50879 14.5683C8.80858 14.7205 8.12757 14.934 7.46574 15.2087C6.3452 15.6755 5.31582 16.3069 4.39332 17.0895C3.41293 15.631 2.83918 13.8769 2.83918 11.9916C2.83918 6.93826 6.94988 2.82756 12.0032 2.82756C17.0566 2.82756 21.1673 6.94037 21.1673 11.9916Z" fill="rgb(153,153,153)" fill-rule="nonzero" />
+</svg>

+ 4 - 0
static/images/jobApplicant/wechat.svg

@@ -0,0 +1,4 @@
+<svg viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="14.000000" height="14.000000" fill="none">
+	<rect id="svg 30" width="14.000000" height="14.000000" x="0.000000" y="0.000000" />
+	<path id="矢量 31" d="M9.47625 4.74773C9.63725 4.74773 9.79562 4.75998 9.95487 4.77748C9.52612 2.78073 7.392 1.29761 4.95512 1.29761C2.23125 1.29761 0 3.15348 0 5.51161C0 6.87223 0.742 7.98961 1.98275 8.85761L1.4875 10.3477L3.22 9.47973C3.8395 9.60136 4.3365 9.72736 4.95512 9.72736C5.11087 9.72736 5.26487 9.72036 5.41712 9.70898C5.32087 9.37736 5.264 9.03086 5.264 8.66948C5.26488 6.50473 7.12337 4.74773 9.47625 4.74773ZM6.81275 3.40461C7.18725 3.40461 7.43313 3.65048 7.43313 4.02323C7.43313 4.39423 7.18725 4.64273 6.81275 4.64273C6.44263 4.64273 6.06987 4.39423 6.06987 4.02323C6.06987 3.64961 6.44175 3.40461 6.81275 3.40461ZM3.34512 4.64273C2.97325 4.64273 2.59875 4.39423 2.59875 4.02323C2.59875 3.65048 2.97325 3.40461 3.34512 3.40461C3.717 3.40461 3.96375 3.64961 3.96375 4.02323C3.96375 4.39423 3.717 4.64273 3.34512 4.64273ZM14 8.60998C14 6.62898 12.0173 5.01461 9.79037 5.01461C7.43225 5.01461 5.57638 6.62986 5.57638 8.60998C5.57638 10.5962 7.43312 12.2054 9.79037 12.2054C10.2839 12.2054 10.7818 12.082 11.277 11.9577L12.6359 12.7032L12.2631 11.4642C13.258 10.717 14 9.72736 14 8.60998ZM8.42362 7.98961C8.17775 7.98961 7.92837 7.74461 7.92837 7.49436C7.92837 7.24761 8.17775 6.99911 8.42362 6.99911C8.79988 6.99911 9.044 7.24761 9.044 7.49436C9.044 7.74461 8.79988 7.98961 8.42362 7.98961ZM11.1493 7.98961C10.9051 7.98961 10.6566 7.74461 10.6566 7.49436C10.6566 7.24761 10.9043 6.99911 11.1493 6.99911C11.522 6.99911 11.7696 7.24761 11.7696 7.49436C11.7696 7.74461 11.522 7.98961 11.1493 7.98961Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
+</svg>

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 2 - 0
static/images/jobApplicant/woyaozhaogongzuo.svg


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 2 - 0
static/images/jobApplicant/woyaozhaoren.svg


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 2 - 0
static/images/jobApplicant/wumen.svg


+ 4 - 0
static/images/jobApplicant/xuexiao.svg

@@ -0,0 +1,4 @@
+<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32.000000" height="32.000000" fill="none">
+	<rect id="svg 35" width="32.000000" height="32.000000" x="0.000000" y="0.000000" />
+	<path id="矢量 32" d="M28.1594 26.304L26.5434 26.304L26.5434 11.696C26.5434 9.42396 25.2474 8.44796 24.4314 8.28796L19.2474 6.67196L19.2474 4.87996C19.2474 4.55996 19.0874 4.39996 18.9274 4.22396C18.7674 4.06396 18.4474 4.06396 18.2714 4.06396L7.40744 7.15196C7.40744 7.15196 5.45544 7.63196 5.45544 10.24L5.45544 26.304L3.83944 26.304C3.35944 26.304 3.02344 26.624 3.02344 27.12C3.02344 27.6 3.34344 27.936 3.83944 27.936L28.1594 27.936C28.6394 27.936 28.9754 27.616 28.9754 27.12C28.9754 26.624 28.6554 26.304 28.1594 26.304L28.1594 26.304ZM17.6154 26.304L7.07144 26.304L7.07144 10.24C7.07144 9.10396 7.72744 8.78396 7.88744 8.78396L17.6154 6.03196L17.6154 26.304L17.6154 26.304ZM24.9274 26.304L19.2474 26.304L19.2474 8.28796L24.2554 9.95196L24.3674 9.99996C24.3674 9.99996 24.8634 10.208 24.9434 11.696L24.9434 26.304L24.9274 26.304ZM11.6154 9.37596L9.99944 9.37596L9.99944 10.992L11.6154 10.992L11.6154 9.37596ZM15.3434 9.37596L13.7274 9.37596L13.7274 10.992L15.3434 10.992L15.3434 9.37596ZM11.6154 12.912L9.99944 12.912L9.99944 14.528L11.6154 14.528L11.6154 12.912ZM15.3434 12.912L13.7274 12.912L13.7274 14.528L15.3434 14.528L15.3434 12.912ZM11.6154 16.448L9.99944 16.448L9.99944 18.064L11.6154 18.064L11.6154 16.448ZM15.3434 16.448L13.7274 16.448L13.7274 18.064L15.3434 18.064L15.3434 16.448ZM11.6154 19.968L9.99944 19.968L9.99944 21.6L11.6154 21.6L11.6154 19.968ZM15.3434 19.968L13.7274 19.968L13.7274 21.6L15.3434 21.6L15.3434 19.968ZM11.6154 23.504L9.99944 23.504L9.99944 25.12L11.6154 25.12L11.6154 23.504L11.6154 23.504ZM15.3434 23.504L13.7274 23.504L13.7274 25.12L15.3434 25.12L15.3434 23.504L15.3434 23.504ZM21.3594 14.128L22.9754 14.128L22.9754 12.512L21.3594 12.512L21.3594 14.128L21.3594 14.128ZM21.3594 17.856L22.9754 17.856L22.9754 16.24L21.3594 16.24L21.3594 17.856ZM21.3594 21.408L22.9754 21.408L22.9754 19.792L21.3594 19.792L21.3594 21.408ZM21.3594 25.008L22.9754 25.008L22.9754 23.392L21.3594 23.392L21.3594 25.008Z" fill="rgb(0,0,0)" fill-rule="nonzero" />
+</svg>

+ 6 - 0
static/images/jobApplicant/yindao-bg.svg

@@ -0,0 +1,6 @@
+<svg viewBox="0 0 840.5 785" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="840.500000" height="785.000000" fill="none" customFrame="#000000">
+	<rect id="BG" width="840.000000" height="785.000000" x="0.000000" y="0.000000" />
+	<path id="Ellipse 8" d="M335.594 749.572C233.902 770.863 332.574 458.435 246.539 387.242C164.177 319.087 21.2755 354.402 1.46945 233.239C-29.2976 45.0227 431.754 -51.8682 571.083 28.324C727.562 118.387 505.436 714.012 335.594 749.572Z" fill="rgb(0,73,206)" fill-rule="evenodd" transform="matrix(0.748135,0.663547,-0.663547,0.748135,306.064,-52)" />
+	<path id="Ellipse 10" d="M674.88 533.614C568.917 551.311 520.057 466.701 430.409 407.523C344.587 350.872 247.32 341.417 226.682 240.705C194.623 84.2554 457.697 13.3657 602.878 80.0229C765.93 154.885 851.856 504.056 674.88 533.614Z" fill="rgb(13,204,204)" fill-rule="evenodd" />
+	<path id="Ellipse 12" d="M497.409 382.523C411.587 325.872 314.32 316.417 293.682 215.705C261.623 59.2554 524.697 -11.6343 669.878 55.0229C832.93 129.885 918.856 479.056 741.88 508.614C635.917 526.311 587.057 441.7 497.409 382.523Z" fill-rule="evenodd" stroke="rgb(255,255,255)" stroke-opacity="0.349999994" stroke-width="1" />
+</svg>

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.