|
@@ -18,10 +18,10 @@
|
|
|
class="scroll-box scrollbar-hide mb-16 box-border h-140 w-full overflow-hidden overflow-y-auto rounded-lg border bg-[#fff]"
|
|
|
>
|
|
|
<div
|
|
|
- class="box-border flex h-32 w-full cursor-pointer items-center justify-between bg-[#F7F7F7] px-11"
|
|
|
+ class="box-border flex h-32 w-full shrink-0 cursor-pointer items-center justify-between bg-[#F7F7F7] px-11"
|
|
|
>
|
|
|
- <div class="flex justify-start items-center">
|
|
|
- <span class="text-sm font-normal leading-xl text-black-3/[0.9]">
|
|
|
+ <div class="flex justify-start shrink-0 items-center">
|
|
|
+ <span class="text-sm font-normal leading-xl text-black-3/[0.9]">
|
|
|
订单号:{{ item?.id }}
|
|
|
</span>
|
|
|
<div class="w-16 h-16 shrink-0 ml-8" @click="copyId(item?.id)">
|
|
@@ -34,7 +34,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="flex justify-start items-center">
|
|
|
- <span class="mr-9 text-sm font-normal leading-xl text-black-9/[0.9]">
|
|
|
+ <span class="mr-9 text-sm font-normal shrink-0 leading-xl text-black-9/[0.9]">
|
|
|
{{ item?.createTime?.split(' ')[0] }}
|
|
|
</span>
|
|
|
<div class="w-16 h-16 shrink-0" @click="doDeleteVisaOrder(item?.id)">
|
|
@@ -65,24 +65,20 @@
|
|
|
<span class="text-3xl">{{ Number(item?.orderPrice).toFixed(2) }}</span>
|
|
|
</span>
|
|
|
<div
|
|
|
- :class="`w-53 h-20 text-center text-sm leading-3xl rounded-full ${colorLists[item?.payState].color} ${colorLists[item?.payState].textColor}`"
|
|
|
+ :class="`w-53 line-clamp-1 h-20 text-center shrink-0 text-sm leading-3xl rounded-full ${colorLists[item?.payState].color} ${colorLists[item?.payState].textColor}`"
|
|
|
>
|
|
|
{{ formatStatus(item?.payState) }}
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <van-button
|
|
|
- style="height: 24px"
|
|
|
- plain
|
|
|
- round
|
|
|
- class="w-110"
|
|
|
- type="warning"
|
|
|
- icon-position="right"
|
|
|
- color="#FF9300"
|
|
|
- icon="arrow"
|
|
|
- >
|
|
|
- 订单详情
|
|
|
- </van-button>
|
|
|
+ <button class=" text-sm shrink-0 px-10 line-clamp-1 flex-nowarp h-24 border-[0.5px] border-[#FF9300] rounded-full text-[#FF9300] bg-white flex justify-center items-center box-border active:bg-[#FF9300]/[0.1] " >
|
|
|
+ 订单详情 <div class="w-13 h-13 shrink-0 ml-4">
|
|
|
+ <img class="w-full h-full object-cover " src="~/assets/img/visa/chevron-down.svg" alt="">
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </button>
|
|
|
+
|
|
|
+
|
|
|
</div>
|
|
|
</NuxtLink>
|
|
|
</div>
|