refactor: migrate to tailwind arbitrary width classes
remove the unused src/static/scss/width.scss file and its import from index.scss, replace all existing custom width utility class usages with the equivalent Tailwind arbitrary width syntax
This commit is contained in:
@@ -2,12 +2,12 @@
|
||||
<view class="bg-white rounded-[10px] p-[12px] mb-[12px]" v-if="hasConsumerData">
|
||||
<view v-for="(item, index) in consumerList" :key="index">
|
||||
<view class="flex mb-[8px] text-[12px]">
|
||||
<text class="w-60 text-[#99a0ae]">住客姓名</text>
|
||||
<text class="w-[60px] text-[#99a0ae]">住客姓名</text>
|
||||
<text class="text-[#525866]">{{ item.visitorName }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex text-[12px]">
|
||||
<text class="w-60 text-[#99a0ae]">联系电话</text>
|
||||
<text class="w-[60px] text-[#99a0ae]">联系电话</text>
|
||||
<text class="text-[#525866]">{{ contactPhone }}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
Reference in New Issue
Block a user