style: replace legacy padding classes with inline pixel values
Remove the unused padding.scss stylesheet and its import from the main SCSS entrypoint. Update all legacy padding utility class names across every Vue component to use inline pixel-based utility classes (such as replacing `pl-12` with `pl-[12px]`). Also clean up extraneous whitespace and line breaks in component templates for improved readability.
This commit is contained in:
@@ -8,12 +8,13 @@
|
||||
<image class="header-icon" src="https://oss.nianxx.cn/mp/static/version_101/home/feedback.png" />
|
||||
</view>
|
||||
|
||||
<view v-if="!isCallSuccess" class="border-box p-12">
|
||||
<view class="bg-[#f5f7fa] border-box flex flex-items-center p-12 rounded-10 font-size-14 color-171717 mb-12">
|
||||
<view v-if="!isCallSuccess" class="border-box p-[12px]">
|
||||
<view
|
||||
class="bg-[#f5f7fa] border-box flex flex-items-center p-[12px] rounded-10 font-size-14 color-171717 mb-12">
|
||||
<text class="font-500 line-height-22 mr-20">联系电话</text>
|
||||
<input placeholder="请填写联系电话" v-model="contactPhone" />
|
||||
</view>
|
||||
<view class="bg-[#f5f7fa] border-box p-12 rounded-10 font-size-14 font-500 color-171717 mb-12">
|
||||
<view class="bg-[#f5f7fa] border-box p-[12px] rounded-10 font-size-14 font-500 color-171717 mb-12">
|
||||
<view class="font-500 line-height-22 mb-12">意见内容</view>
|
||||
<textarea class="h-80" placeholder="请输入反馈意见" placeholder-class="font-size-14 font-400" maxlength="100"
|
||||
v-model="contactText" />
|
||||
@@ -26,12 +27,12 @@
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view v-else class="border-box left flex-full p-12">
|
||||
<view v-else class="border-box left flex-full p-[12px]">
|
||||
<view class="font-size-12 color-525866 line-height-20 mb-4">联系方式: {{ contactPhone }}</view>
|
||||
<view class="font-size-12 color-525866 line-height-20 ellipsis-2">意见内容: {{ contactText }}</view>
|
||||
</view>
|
||||
|
||||
<view class="footer-help flex flex-items-center pl-12 mb-12">
|
||||
<view class="footer-help flex flex-items-center pl-[12px] mb-12">
|
||||
<image class="help-icon mr-4" src="./images/icon_volume.png" />
|
||||
<text class="font-size-12 font-500 color-FA7319">
|
||||
{{ appName }}收到您的意见将第一时间为您处理!
|
||||
|
||||
Reference in New Issue
Block a user