refactor: adopt text-ink-600 token and clean up OrderCard
Replace all hardcoded #525866 text color with the text-ink-600 design token across components and pages. Refactor the OrderCard component by moving external SCSS styles to scoped styles, replace legacy class names with Tailwind utilities, and fix minor inconsistencies. Fix the typo in src/pages/quick/index.vue where rounded-[5px]0 was used incorrectly, and delete the unused OrderCard styles file.
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
联系方式
|
||||
</div>
|
||||
<div class="flex flex-items-center p-[12px]">
|
||||
<div class="text-[14px] font-500 text-[#525866] mr-12">联系人姓名</div>
|
||||
<div class="text-[14px] font-500 text-ink-600 mr-12">联系人姓名</div>
|
||||
<div class="right">
|
||||
<input class=" px-4 py-2 font-size-15 color-000 leading-[20px]" v-model.trim="userFormList[0].visitorName"
|
||||
placeholder="请输入联系人" maxlength="20" />
|
||||
@@ -28,7 +28,7 @@
|
||||
</div>
|
||||
|
||||
<div class="flex flex-items-center p-[12px]">
|
||||
<div class="text-[14px] font-500 text-[#525866] mr-12">手机号码</div>
|
||||
<div class="text-[14px] font-500 text-ink-600 mr-12">手机号码</div>
|
||||
<div class="right">
|
||||
<input class=" px-4 py-2 font-size-15 color-000 leading-[20px]" v-model.trim="userFormList[0].contactPhone"
|
||||
placeholder="请输入联系手机" maxlength="11" />
|
||||
|
||||
Reference in New Issue
Block a user