浏览代码

fix:招聘者面试详情

jianghaili 2 周之前
父节点
当前提交
8cfdbf1a07

+ 628 - 0
my/jilu/bossMianshiDetail.vue

@@ -0,0 +1,628 @@
+<template>
+  <view class="ms-detail">
+    <view class="detail-bg"></view>
+    <nav-bar title="面试详情"></nav-bar>
+    <view class="detail-index">
+      <view class="detail-title">明天14:00面试</view>
+      <view class="detail-item">
+        <view class="user-title">
+          <view class="user-img-name">
+            <view class="user-img">
+              <image src="@/static/images/geren.png" mode="aspectFill" />
+            </view>
+            <view class="user-name"
+              >孙先生
+              <u-icon
+                name="arrow-right"
+                color="#c6c5ca"
+                size="20"
+                style="margin-left: 16rpx"
+              ></u-icon
+            ></view>
+          </view>
+          <view class="img-phone">
+            <view class="img-item-icon">
+              <image src="@/static/images/my/fujianjianli.svg" mode="scaleToFill" />
+              <text>附件简历</text>
+            </view>
+            <view class="img-item-icon">
+              <image src="@/static/images/my/dianhua.svg" mode="scaleToFill" />
+              <text>电话</text>
+            </view>
+          </view>
+        </view>
+      </view>
+      <view class="detail-item">
+        <view class="user-title"> 面试信息 </view>
+        <view class="msg-box">
+          <view class="msg-item">
+            <view class="msg-label">时间</view>
+            <view class="msg-value">2025-09-19 20:00:00</view>
+          </view>
+          <view class="msg-item">
+            <view class="msg-label">职位</view>
+            <view class="msg-value">资深产品经理 15-25K·16薪</view>
+          </view>
+          <view class="msg-item">
+            <view class="msg-label">联系人</view>
+            <view class="msg-value">熊女士·18000000000</view>
+          </view>
+          <view class="msg-item">
+            <view class="msg-label">备注</view>
+            <view class="msg-value">请携带一份最新的简历</view>
+          </view>
+          <view class="msg-item">
+            <view class="msg-label">地址</view>
+            <view class="msg-value">光谷软件园F21602栋</view>
+          </view>
+        </view>
+      </view>
+      <view class="detail-item">
+        <view class="txt-content">
+          <view class="txt-desc">求职者不错?向他发起录用吧~</view>
+          <view class="txt-btn">录用邀约</view>
+        </view>
+      </view>
+      <view class="detail-item">
+        <view class="user-title-second" style="padding-bottom: 28rpx">
+          将面试结果发送给对方
+        </view>
+        <view class="txt-content">
+          <view class="txt-content-item">
+            <image src="@/static/images/my/mianshitongguo.svg" mode="scaleToFill" />
+            <view class="txt-mianshi">通过</view>
+          </view>
+          <view class="txt-content-item">
+            <image src="@/static/images/my/kaolvyixia.svg" mode="scaleToFill" />
+            <view class="txt-mianshi">考虑一下</view>
+          </view>
+          <view class="txt-content-item">
+            <image src="@/static/images/my/butongguo.svg" mode="scaleToFill" />
+            <view class="txt-mianshi">不通过</view>
+          </view>
+        </view>
+      </view>
+      <view class="detail-item" @click="showRecord = true">
+        <view class="user-title-second"> 面试记录 </view>
+        <view class="tag-box">
+          <view class="mianshi-tag">待定</view>
+        </view>
+        <view class="mianshi-result-txt">
+          这是一条文案这是一条文案这是一条文案这是一条文案这是一条文案
+          这是一条文案这是一条文案这是一条文案这是一条文案这是一条文案
+        </view>
+      </view>
+      <view class="detail-item" @click="showResult = true">
+        <view class="user-title-second">
+          <text>面试结果</text>
+          <view class="user-img-result">
+            <image
+              src="@/static/images/my/mianshitongguo.svg"
+              mode="scaleToFill"
+            />面试通过
+          </view></view
+        >
+        <view class="mianshi-result-txt">
+          这是一条文案这是一条文案这是一条文案这是一条文案这是一条文案
+          这是一条文案这是一条文案这是一条文案这是一条文案这是一条文案
+        </view>
+      </view>
+    </view>
+    <view class="btn-bottom">
+      <view class="btn-item">取消面试</view>
+      <view class="btn-item">修改面试</view>
+    </view>
+    <u-popup v-model="showRecord" mode="bottom" border-radius="40">
+      <view class="mianshi-record">
+        <view class="mianshi-title"> 面试记录 <text>(求职者不可用)</text> </view>
+        <view class="mianshi-record-content">
+          <view class="record-tag-box">
+            <view
+              class="record-tag"
+              :class="{ 'record-tag-check': isCheck == index }"
+              @click="CheckTag(index)"
+              v-for="(item, index) in recordList"
+              :key="index"
+              >{{ item }}</view
+            >
+          </view>
+          <view class="check-box">
+            <textarea
+              v-model="text"
+              placeholder="请补充其他说明,不超过500个字"
+              maxlength="500"
+              @input="onInput"
+              class="textarea"
+              style="height:170rpx;"
+            ></textarea>
+            <view class="word-count">
+              <text>{{ text ? text.length : 0 }}</text> /500</view
+            >
+          </view>
+        </view>
+        <view class="btn-mianshi">保存</view>
+      </view>
+    </u-popup>
+    <u-popup v-model="showResult" mode="bottom" border-radius="40">
+      <view class="mianshi-record">
+        <view class="mianshi-title"> 面试结果</view>
+        <view class="mianshi-record-content">
+          <view class="txt-content" style="padding: 54rpx;box-sizing:border-box;">
+            <view class="txt-content-item">
+              <image src="@/static/images/my/mianshitongguo.svg" mode="scaleToFill" />
+              <view class="txt-mianshi">通过</view>
+            </view>
+            <view class="txt-content-item">
+              <image src="@/static/images/my/kaolvyixia.svg" mode="scaleToFill" />
+              <view class="txt-mianshi">考虑一下</view>
+            </view>
+            <view class="txt-content-item">
+              <image src="@/static/images/my/butongguo.svg" mode="scaleToFill" />
+              <view class="txt-mianshi">不通过</view>
+            </view>
+          </view>
+          <view class="check-box">
+            <textarea
+              v-model="text"
+              placeholder="请补充其他说明,不超过500个字"
+              maxlength="500"
+              @input="onInput"
+              class="textarea"
+              style="height:170rpx;"
+            ></textarea>
+            <view class="word-count">
+              <text>{{ text ? text.length : 0 }}</text> /500</view
+            >
+          </view>
+        </view>
+        <view class="btn-mianshi">保存</view>
+      </view>
+    </u-popup>
+  </view>
+</template>
+<script>
+import navBar from "@/components/nav-bar/index.vue";
+
+export default {
+  data() {
+    return {
+      currentStep: 3,
+      showActions: true,
+      showRecord: false,
+      isCheck: 0,
+      showResult: false,
+      recordList: [
+        "需要二面",
+        "待定",
+        "淘汰",
+        "面试通过",
+        "逻辑清晰",
+        "经验丰富",
+        "自我驱动",
+      ],
+      text: "",
+    };
+  },
+  components: {
+    navBar,
+  },
+  methods: {
+    CheckTag(index) {
+      this.isCheck = index;
+    },
+    handleSignIn() {
+      this.$emit("sign-in");
+      uni.showToast({
+        title: "签到成功",
+        icon: "success",
+      });
+    },
+
+    handleStartInterview() {
+      this.$emit("start-interview");
+    },
+
+    handleGetResult() {
+      this.$emit("get-result");
+    },
+    handleComplaint() {
+      this.$emit("complaint");
+      uni.showModal({
+        title: "客服投诉",
+        content: "请描述您遇到的问题",
+        editable: true,
+        placeholderText: "请输入问题描述...",
+        success: (res) => {
+          if (res.confirm && res.content) {
+            uni.showToast({
+              title: "投诉已提交",
+              icon: "success",
+            });
+          }
+        },
+      });
+    },
+  },
+};
+</script>
+<style scoped lang="scss">
+.ms-detail {
+  position: absolute;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  top: 0;
+  display: flex;
+  flex-direction: column;
+  .detail-bg {
+    height: 744rpx;
+    width: 100%;
+    background: linear-gradient(180deg, rgba(255, 102, 0, 1), rgba(255, 102, 0, 0) 100%);
+    position: absolute;
+    left: 0;
+    top: 0;
+  }
+  .detail-index {
+    flex: 1;
+    position: relative;
+    z-index: 2;
+    overflow: hidden;
+    overflow-y: auto;
+    padding: 40rpx;
+    box-sizing: border-box;
+    .detail-item {
+      padding: 36rpx;
+      box-sizing: border-box;
+      border: 1rpx solid rgba(227, 231, 236, 1);
+      border-radius: 6px;
+      background: rgba(255, 255, 255, 1);
+      margin-top: 20rpx;
+      .process-top {
+        display: flex;
+        justify-content: space-between;
+        align-items: center;
+        .process-title {
+          color: rgba(29, 33, 41, 1);
+          font-family: DM Sans;
+          font-size: 24rpx;
+          font-weight: 500;
+          line-height: 32rpx;
+        }
+        .process-status {
+          color: #016bf6;
+          font-family: DM Sans;
+          font-size: 20rpx;
+          font-weight: 700;
+          line-height: 26rpx;
+        }
+      }
+      .user-title {
+        display: flex;
+        align-items: center;
+        justify-content: space-between;
+        .user-img-name {
+          display: flex;
+          justify-content: center;
+          align-items: center;
+        }
+        .img-phone {
+          display: flex;
+          align-items: center;
+          gap: 28rpx;
+          .img-item-icon {
+            display: flex;
+            flex-direction: column;
+            justify-content: center;
+            align-items: center;
+            image {
+              width: 48rpx;
+              height: 48rpx;
+            }
+            text {
+              color: #999999;
+              font-family: DM Sans;
+              font-size: 20rpx;
+              font-weight: 400;
+              margin-top: 5rpx;
+              line-height: 26rpx;
+            }
+          }
+        }
+        .user-img {
+          overflow: hidden;
+          width: 80rpx;
+          height: 80rpx;
+          border-radius: 50%;
+          margin-right: 24rpx;
+          border: 8rpx solid #f6f6f6;
+          image {
+            width: 100%;
+            height: 100%;
+          }
+        }
+      }
+      .user-title-second {
+        color: #1d2129;
+        font-family: DM Sans;
+        font-size: 24rpx;
+        font-weight: 500;
+        line-height: 32rpx;
+        padding-bottom: 12rpx;
+        display: flex;
+        justify-content: space-between;
+        align-items: center;
+      }
+      .user-img-result {
+        display: flex;
+        justify-content: center;
+        align-items: center;
+        image {
+          width: 30rpx;
+          height: 30rpx;
+          margin-right: 4rpx;
+        }
+        color: rgba(102, 102, 102, 1);
+        font-family: DM Sans;
+        font-size: 20rpx;
+        font-weight: 400;
+        line-height: 26rpx;
+      }
+      .tag-box {
+        display: flex;
+        .mianshi-tag {
+          border-radius: 8rpx;
+          background: rgba(252, 233, 220, 1);
+          padding: 8rpx;
+          box-sizing: border-box;
+          color: #016bf6;
+          font-family: DM Sans;
+          font-size: 16rpx;
+          font-weight: 400;
+          line-height: 20rpx;
+        }
+      }
+      .mianshi-result-txt {
+        color: #999999;
+        font-family: DM Sans;
+        font-size: 20rpx;
+        font-weight: 400;
+        line-height: 26rpx;
+        margin-top: 4rpx;
+      }
+      .txt-desc {
+        color: #1d2129;
+        font-family: DM Sans;
+        font-size: 24rpx;
+        font-weight: 500;
+        line-height: 32rpx;
+        letter-spacing: 0%;
+      }
+      .txt-btn {
+        color: #016bf6;
+        font-family: DM Sans;
+        font-size: 20rpx;
+        font-weight: 700;
+        line-height: 26rpx;
+        letter-spacing: 0%;
+      }
+    }
+  }
+  .txt-content {
+    display: flex;
+    justify-content: space-between;
+    align-items: center;
+    .txt-content-item {
+      display: flex;
+      flex-direction: column;
+      justify-content: center;
+      align-items: center;
+      image {
+        width: 60rpx;
+        height: 60rpx;
+      }
+      .txt-mianshi {
+        color: rgba(153, 153, 153, 1);
+        font-family: DM Sans;
+        font-size: 20rpx;
+        font-weight: 400;
+        line-height: 26rpx;
+        margin-top: 10rpx;
+      }
+    }
+  }
+  .btn-bottom {
+    display: flex;
+    align-items: center;
+    justify-content: flex-end;
+    gap: 16rpx;
+    padding-bottom: 48rpx;
+    padding-right: 40rpx;
+    box-sizing: border-box;
+    .btn-item {
+      box-sizing: border-box;
+      border: 2rpx solid;
+      border-radius: 999px;
+      background: rgba(255, 255, 255, 1);
+      color: #016bf6;
+      font-family: DM Sans;
+      font-size: 24rpx;
+      font-weight: 400;
+      padding: 16rpx 68rpx;
+      box-sizing: border-box;
+    }
+  }
+  .msg-box {
+    .msg-item {
+      display: flex;
+      align-items: center;
+      color: rgba(153, 153, 153, 1);
+      font-family: DM Sans;
+      font-size: 24rpx;
+      font-weight: 400;
+      line-height: 32rpx;
+      margin-top: 12rpx;
+      .msg-label {
+        min-width: 120rpx;
+        margin-right: 24rpx;
+      }
+    }
+  }
+  .detail-title {
+    color: #fff;
+    font-size: 50rpx;
+    font-weight: 500;
+    font-family: DM Sans;
+  }
+}
+.mianshi-record {
+  height: 700rpx;
+  border: 1rpx solid rgba(227, 231, 236, 1);
+  border-radius: 40rpx 40rpx 0px 0px;
+  background: rgba(253, 253, 253, 1);
+  display: flex;
+  flex-direction: column;
+  padding: 40rpx;
+  box-sizing: border-box;
+  .mianshi-title {
+    flex-shrink: 0;
+    color: rgba(34, 37, 42, 1);
+    font-family: DM Sans;
+    font-size: 36rpx;
+    font-weight: 500;
+    line-height: 26rpx;
+    text-align: center;
+    border-bottom: 2rpx solid rgba(153, 153, 153, 0.25);
+    padding-bottom: 16rpx;
+    box-sizing: border-box;
+    text {
+      font-size: 20rpx;
+      margin-left: 12rpx;
+    }
+  }
+  .mianshi-record-content {
+    width: 100%;
+    flex: 1;
+    overflow: hidden;
+    overflow-y: auto;
+    .record-tag-box {
+      display: flex;
+      align-items: center;
+      gap: 16rpx 44rpx;
+      flex-wrap: wrap;
+      padding-top: 28rpx;
+      box-sizing: border-box;
+      .record-tag {
+        flex-shrink: 0;
+        border-radius: 16rpx;
+        background: rgba(245, 248, 254, 1);
+        padding: 12rpx 20rpx;
+        box-sizing: border-box;
+        color: rgba(153, 153, 153, 1);
+        font-family: DM Sans;
+        font-size: 28rpx;
+        font-weight: 400;
+      }
+      .record-tag-check {
+        border: 1rpx solid #016bf6;
+        background: rgba(252, 233, 220, 1);
+        color: #016bf6;
+      }
+    }
+    .check-box {
+      width: 100%;
+      border-radius: 12rpx;
+      background: rgba(240, 240, 240, 1);
+      padding: 34rpx;
+    //   padding-top: 40rpx;
+      box-sizing: border-box;
+      margin: 20rpx 0;
+      .word-count {
+        font-family: DM Sans;
+        font-size: 20rpx;
+        font-weight: 400;
+        line-height: 26rpx;
+        text-align: right;
+        text {
+          color: #016bf6;
+        }
+      }
+    }
+  }
+  .btn-mianshi {
+    background: #016bf6;
+    border-radius: 100rpx;
+    color: rgba(255, 255, 255, 1);
+    font-family: DM Sans;
+    font-size: 24rpx;
+    font-weight: 400;
+    line-height: 48rpx;
+    display: flex;
+    justify-content: center;
+    align-items: center;
+    flex-shrink: 0;
+    width: 100%;
+    padding: 6rpx;
+    box-sizing: border-box;
+  }
+}
+.process-title {
+  font-size: 36rpx;
+  font-weight: bold;
+  color: #333;
+}
+
+.process-steps {
+  position: relative;
+}
+/* 操作按钮 */
+.process-actions {
+  margin-top: 50rpx;
+  display: flex;
+  gap: 20rpx;
+  flex-wrap: wrap;
+}
+
+.action-btn {
+  flex: 1;
+  background: #016bf6;
+  color: #fff;
+  border: none;
+  border-radius: 100rpx;
+  padding: 6rpx 24rpx;
+  font-size: 28rpx;
+  color: rgba(255, 255, 255, 1);
+  font-family: DM Sans;
+  font-size: 24rpx;
+  font-weight: 400;
+  text-align: center;
+  &::after {
+    border: none;
+  }
+
+  &:active {
+    background: #009974;
+  }
+}
+
+.complaint-btn {
+  background: #ff4444;
+
+  &:active {
+    background: #dd3333;
+  }
+}
+::v-deep .textarea-placeholder {
+  color: rgba(153, 153, 153, 1);
+  font-family: DM Sans;
+  font-size: 20rpx !important;
+  font-weight: 400;
+  line-height: 26rpx;
+}
+::v-deep .uni-textarea-textarea {
+  font-size: 20rpx;
+  color: #585858;
+}
+::v-deep .uni-textarea{
+    height: 170rpx !important;
+}
+</style>

+ 1 - 1
my/jilu/mianshiDetail.vue

@@ -188,7 +188,7 @@ export default {
   components: {
     navBar,
   },
-  method: {
+  methods: {
     handleSignIn() {
       this.$emit("sign-in");
       uni.showToast({

+ 8 - 0
pages.json

@@ -1172,6 +1172,14 @@
 						"enablePullDownRefresh": false,
 						"navigationStyle": "custom"
 					}
+				},
+				{
+					"path": "jilu/bossMianshiDetail",
+					"style": {
+						"navigationBarTitleText": "面试详情",
+						"enablePullDownRefresh": false,
+						"navigationStyle": "custom"
+					}
 				}
 				// #ifdef APP || H5 
 				,

+ 7 - 1
pages/my/ruleCenter.vue

@@ -45,7 +45,7 @@
                     <view class="banner-title">{{ item.title }}</view>
                     <view class="banner-subtitle">{{ item.subtitle }}</view>
                   </view>
-                  <view class="banner-btn">去看看</view>
+                  <view class="banner-btn" @click="goMianshiBoss">去看看</view>
                 </view>
               </view>
             </swiper-item>
@@ -146,6 +146,12 @@ export default {
     startAutoplay() {
       this.autoplay = true;
     },
+    // 去面试详情,boss层
+    goMianshiBoss() {
+      uni.navigateTo({
+        url: "/my/jilu/bossMianshiDetail",
+      });
+    },
   },
   onShow() {
     // 页面显示时恢复自动播放

文件差异内容过多而无法显示
+ 2 - 0
static/images/my/butongguo.svg


文件差异内容过多而无法显示
+ 8 - 0
static/images/my/dianhua.svg


文件差异内容过多而无法显示
+ 9 - 0
static/images/my/fujianjianli.svg


+ 7 - 0
static/images/my/kaolvyixia.svg

@@ -0,0 +1,7 @@
+<svg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="30.000000" height="30.000000" fill="none">
+	<rect id="svg 62" width="30.000000" height="30.000000" x="0.000000" y="0.000000" />
+	<path id="矢量 69" d="M20.6221 25.625L5.00391 25.625C2.94434 25.625 1.25977 23.9404 1.25977 21.8809L1.25977 7.33789C1.25977 5.27832 2.94434 3.59375 5.00391 3.59375L20.6221 3.59375C22.6816 3.59375 24.3662 5.27832 24.3662 7.33789L24.3662 21.8809C24.3662 23.9375 22.6816 25.625 20.6221 25.625L20.6221 25.625Z" fill="rgb(255,102,0)" fill-opacity="0.100000001" fill-rule="nonzero" />
+	<path id="矢量 70" d="M7.2627 16.7012C5.64258 16.6221 4.78418 15.7256 4.6875 14.0088C4.80469 12.3125 5.66309 11.3955 7.2627 11.2578C8.8418 11.3955 9.7002 12.3125 9.83789 14.0088C9.71777 15.7256 8.85938 16.6221 7.2627 16.7012ZM7.2627 15.7344C8.15918 15.6963 8.63672 15.1191 8.69531 14.0088C8.61621 12.916 8.13867 12.3418 7.2627 12.2832C6.36621 12.3418 5.89746 12.916 5.85938 14.0088C5.89453 15.1221 6.36328 15.6963 7.2627 15.7344ZM10.5088 16.1152L10.5088 13.6279L10.2744 13.6279C10.002 13.6279 9.86426 13.4727 9.86426 13.1592C9.90234 12.8662 10.04 12.7109 10.2744 12.6904L10.5088 12.6904L10.5088 12.1338C10.5293 11.3545 10.9072 10.9443 11.6514 10.9062C12.1201 10.9268 12.3633 11.0908 12.3838 11.4043C12.3838 11.6973 12.2373 11.8438 11.9443 11.8438C11.6895 11.8232 11.5723 11.9609 11.5928 12.2539L11.5928 12.6934L11.915 12.6934C12.2842 12.6934 12.4717 12.8486 12.4717 13.1621C12.4512 13.4727 12.2666 13.6309 11.915 13.6309L11.5928 13.6309L11.5928 16.1182C11.5547 16.4873 11.3672 16.6748 11.0361 16.6748C10.7051 16.6719 10.5293 16.4873 10.5088 16.1152L10.5088 16.1152Z" fill="rgb(255,102,0)" fill-rule="nonzero" />
+	<path id="矢量 71" d="M12.7031 16.1152L12.7031 13.6279L12.4688 13.6279C12.1963 13.6279 12.0586 13.4727 12.0586 13.1592C12.0967 12.8662 12.2344 12.7109 12.4688 12.6904L12.7031 12.6904L12.7031 12.1338C12.7236 11.3545 13.1016 10.9443 13.8457 10.9062C14.3145 10.9268 14.5576 11.0908 14.5781 11.4043C14.5781 11.6973 14.4316 11.8438 14.1387 11.8438C13.8838 11.8232 13.7666 11.9609 13.7871 12.2539L13.7871 12.6934L14.1094 12.6934C14.4785 12.6934 14.666 12.8486 14.666 13.1621C14.6455 13.4727 14.4609 13.6309 14.1094 13.6309L13.7871 13.6309L13.7871 16.1182C13.749 16.4873 13.5615 16.6748 13.2305 16.6748C12.8994 16.6719 12.7236 16.4873 12.7031 16.1152L12.7031 16.1152ZM17.8242 15.0342L15.5127 15.0342C15.6094 15.541 15.9521 15.8047 16.5381 15.8252C16.752 15.8252 17.0156 15.7373 17.3291 15.5615C17.5254 15.4443 17.6689 15.3857 17.7686 15.3857C18.0205 15.4238 18.167 15.582 18.208 15.8545C18.0703 16.3613 17.4873 16.6455 16.4531 16.7041C15.167 16.666 14.4932 15.9922 14.4346 14.6855C14.5312 13.417 15.1758 12.7256 16.3652 12.6084C17.4961 12.7256 18.1406 13.3789 18.2959 14.5684C18.293 14.8965 18.1377 15.0518 17.8242 15.0342ZM15.4834 14.3311L17.209 14.3311C17.1123 13.7861 16.8281 13.502 16.3594 13.4814C15.8555 13.5225 15.5625 13.8037 15.4834 14.3311ZM18.6445 16.1152L18.6445 13.1885C18.6445 12.8574 18.8291 12.6729 19.2012 12.6318C19.5322 12.6523 19.708 12.8076 19.7285 13.1006C19.9248 12.79 20.1768 12.6318 20.4902 12.6318C20.8213 12.6699 20.9971 12.8662 21.0176 13.2178C21.0176 13.4141 20.8623 13.5693 20.5488 13.6865C20.4697 13.707 20.4111 13.7246 20.373 13.7451C19.9248 13.9209 19.7109 14.1553 19.7285 14.4482L19.7285 16.1152C19.6904 16.4844 19.5029 16.6719 19.1719 16.6719C18.8379 16.6719 18.6621 16.4873 18.6445 16.1152Z" fill="rgb(255,102,0)" fill-rule="nonzero" />
+	<path id="矢量 72" d="M24.6473 26.4866C24.4979 26.4866 24.3455 26.4749 24.1932 26.4544C21.9168 26.1204 20.8182 23.3753 20.701 23.0647C20.1707 21.5354 19.5672 21.1223 19.4237 21.0432L19.4002 21.0432C18.7 21.0432 17.5574 22.8831 17.0242 24.512C16.825 25.1184 16.1717 25.4495 15.5623 25.2532C14.9529 25.054 14.6219 24.3977 14.8211 23.7913C15.1346 22.8333 16.8602 18.096 19.9656 18.7874C20.2586 18.8489 21.8524 19.3147 22.8778 22.2796C23.0887 22.8274 23.7889 24.0579 24.5301 24.1663C25.0457 24.2395 25.784 23.7063 26.5516 22.7015C26.9412 22.1946 27.6678 22.0979 28.1776 22.4847C28.6844 22.8743 28.7811 23.6009 28.3944 24.1106C27.1844 25.6868 25.9246 26.4866 24.6473 26.4866L24.6473 26.4866Z" fill="rgb(255,102,0)" fill-rule="nonzero" />
+</svg>

文件差异内容过多而无法显示
+ 2 - 0
static/images/my/mianshitongguo.svg


部分文件因为文件数量过多而无法显示