ソースを参照

refactor(app): 修改活动页面日期显示格式

EvilDragon 3 週間 前
コミット
204d86e678
1 ファイル変更1 行追加1 行削除
  1. 1 1
      packages/app/src/pages/home/activity/images/index.vue

+ 1 - 1
packages/app/src/pages/home/activity/images/index.vue

@@ -33,7 +33,7 @@ onLoad(async (query: { id: string; type: 'activity' | 'studyTour'; title: string
   <div class="flex flex-col flex-grow p-4 bg-white gap-4">
     <template v-for="(it, i) in data.list" :key="i">
       <SectionHeading
-        :title="'第' + Number(i + 1) + '天 ' + dayjs(it.travelDate).format('MM月DD日')"
+        :title="'第' + Number(i + 1) + '天 ' + dayjs(it.travelDate).format('YYYY-MM-DD')"
       ></SectionHeading>
       <template v-for="(video, index) in it.video" :key="index">
         <video class="w-full" :src="video"></video>