style: remove redundant box-border utility classes

Remove the unnecessary box-border CSS class from component template class lists across the codebase, cleaning up styling without altering any component functionality.
This commit is contained in:
duanshuwen
2026-07-24 16:50:53 +08:00
parent cb7054cd90
commit e174e3b726
45 changed files with 75 additions and 80 deletions

View File

@@ -1,5 +1,5 @@
<template>
<view class="order-card bg-white box-border p-[12px] rounded-12 m-12">
<view class="order-card bg-white p-[12px] rounded-12 m-12">
<!-- 卡片头部 -->
<view class="border-box flex flex-items-center pb-[12px]">
<image class="icon mr-4" src="https://oss.nianxx.cn/mp/static/version_101/service/service_icon.png" />
@@ -21,7 +21,7 @@
<!-- 服务人员 -->
<view v-if="orderData.processMemberName && orderData.processMemberPhone"
class="service-user box-border p-[8px] flex flex-items-center flex-justify-between mb-12">
class="service-user p-[8px] flex flex-items-center flex-justify-between mb-12">
<view class="font-size-12 line-height-16">服务人员{{ orderData.processMemberName }}</view>
<uni-icons class="ml-auto mr-4" type="phone-filled" size="14" color="#436799" />
<text class="font-size-12 line-height-16" @click="callService">拨打电话</text>
@@ -33,7 +33,7 @@
orderData.workOrderStatus !== '2' &&
orderData.workOrderStatus !== '3'
" class="flex flex-items-center flex-justify-between">
<text class="cancel box-border border rounded-6 font-size-12 line-height-16 color-525866 ml-auto"
<text class="cancel border rounded-6 font-size-12 line-height-16 color-525866 ml-auto"
@click="cancelCall">取消呼叫</text>
</view>
</view>