Browse Source

Merge branch 'main' of http://39.106.91.179:3000/hunter/designer-hub into main

purui 1 month ago
parent
commit
1de661784a

+ 6 - 2
packages/app/src/pages/material/index.vue

@@ -181,8 +181,12 @@ onMounted(async () => {
       <!-- <template v-for="({ brandLevelName, materialsList }, i) in materialDealerData" :key="i">
         <SectionHeading :title="brandLevelName" custom-class="mx-3.5"></SectionHeading>
       </template> -->
-      <div class="mx-14px py-3.5 bg-[#fff] rounded-2xl">
-        <wd-swiper :list="bannersLogo.map((m) => m.bannerImgUrl)" autoplay></wd-swiper>
+      <div class="mx-14px bg-[#fff] rounded-2xl">
+        <wd-swiper
+          :list="bannersLogo && bannersLogo.map((m) => m.bannerImgUrl)"
+          :height="330"
+          autoplay
+        ></wd-swiper>
       </div>
       <div class="text-black/85 mx-14px">
         <div class="flex items-center justify-between py-3.5">

+ 6 - 4
packages/merchant/src/pages/agent/designer/archives/index.vue

@@ -103,6 +103,7 @@ const handleAddFamilyInfo = async (item: DesignerFamilyInfo) => {
         columns: [
           { label: '男', value: '1' },
           { label: '女', value: '2' },
+          { label: '未知', value: '0' },
         ],
       },
     },
@@ -270,6 +271,7 @@ const handleUpdateFamily = (item) => {
         columns: [
           { label: '男', value: '1' },
           { label: '女', value: '2' },
+          { label: '未知', value: '0' },
         ],
       },
     },
@@ -696,18 +698,18 @@ onShow(async () => {
   .record-time {
     display: flex;
     justify-content: space-between;
-    color: rgba(0, 0, 0, 0.45);
-    font-size: 28rpx;
     margin-bottom: 30rpx;
+    font-size: 28rpx;
+    color: rgba(0, 0, 0, 0.45);
   }
   .record-title {
+    margin-bottom: 14rpx;
     font-size: 32rpx;
     color: rgba(0, 0, 0, 0.45);
-    margin-bottom: 14rpx;
   }
   .record-content {
-    color: rgba(0, 0, 0, 0.85);
     font-size: 28rpx;
+    color: rgba(0, 0, 0, 0.85);
   }
 }
 ::v-deep .wd-radio__label {