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:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<view class="create-service-order">
|
||||
<view class="w-full bg-white box-border border-ff overflow-hidden rounded-20">
|
||||
<view class="w-full bg-white border-ff overflow-hidden rounded-20">
|
||||
<view class="border-box order-header w-vw flex flex-items-center flex-justify-between bg-[#F0F8F3]">
|
||||
<text class="font-size-18 font-500 color-171717 text-left ml-[12px]">
|
||||
{{ isCallSuccess ? "服务已创建" : "呼叫服务" }}
|
||||
@@ -9,25 +9,23 @@
|
||||
</view>
|
||||
|
||||
<view v-if="!isCallSuccess" class="border-box p-[12px]">
|
||||
<view
|
||||
class="bg-[#f5f7fa] box-border flex flex-items-center p-[12px] rounded-10 font-size-14 color-171717 mb-12">
|
||||
<view class="bg-[#f5f7fa] 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="roomId" />
|
||||
</view>
|
||||
|
||||
<view
|
||||
class="bg-[#f5f7fa] box-border flex flex-items-center p-[12px] rounded-10 font-size-14 color-171717 mb-12">
|
||||
<view class="bg-[#f5f7fa] 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" @input="handleContactPhoneInput" />
|
||||
</view>
|
||||
|
||||
<view class="bg-[#f5f7fa] box-border p-[12px] rounded-10 font-size-14 font-500 color-171717 mb-12">
|
||||
<view class="bg-[#f5f7fa] 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" />
|
||||
</view>
|
||||
|
||||
<view class="bg-[#f5f7fa] box-border p-[12px] rounded-10 font-size-14 font-500 color-171717 mb-12">
|
||||
<view class="bg-[#f5f7fa] p-[12px] rounded-10 font-size-14 font-500 color-171717 mb-12">
|
||||
<view class="font-500 line-height-22 mb-12">照片上传</view>
|
||||
|
||||
<view class="w-80 h-80 bg-white rounded-8 overflow-hidden flex flex-items-center flex-justify-center">
|
||||
|
||||
Reference in New Issue
Block a user