@ -3,7 +3,7 @@ import httpRequest from "../httpRequest";
export type ExperienceStep = {
id: number;
startTime: string;
createTime: string;
stepDescription: string;
};
@ -10,7 +10,7 @@
v-for="step in record.steps"
:key="step.id"
class="h-10 flex items-center text-xs pr-3 text-[#6e6e6e] border-b border-b-[#f8f8f8]">
<p class="w-[10rem]">{{ step.startTime }}</p>
<p class="w-[10rem]">{{ step.createTime }}</p>
<p>{{ step.stepDescription }}</p>
</div>
</main>