修改必选项提示

master
lynn 9 months ago
parent 492c6d0f0c
commit aefe622fb5

@ -73,7 +73,7 @@
type="default"
@click="decreaseQuantity"
:disabled="form.quantity <= 1"
:custom-style="{ width: '60rpx', height: '60rpx', borderRadius: '50%' }"
:custom-style="{ width: '60rpx', height: '60rpx', borderRadius: '8rpx' }"
:throttle-time="0"
>
<u-icon name="minus" size="20" color="#666"></u-icon>
@ -83,7 +83,7 @@
size="mini"
type="default"
@click="increaseQuantity"
:custom-style="{ width: '60rpx', height: '60rpx', borderRadius: '50%' }"
:custom-style="{ width: '60rpx', height: '60rpx', borderRadius: '8rpx' }"
:throttle-time="0"
>
<u-icon name="plus" size="20" color="#666"></u-icon>
@ -255,8 +255,7 @@
</view>
<view class="form-card form-card-3">
<view class="title"> 其他服务需求 </view>
<u-form-item :label-width="0" :border-bottom="false">
<u-form-item label="其他服务需求" prop="content" required :border-bottom="false">
<u-input
:disabled="!!orderId"
border
@ -775,6 +774,13 @@ export default {
// blurchange
trigger: ["change", "blur"],
},
],
content: [
{
required: true,
message: "请填写其他服务需求",
trigger: ["blur", "change"],
},
],
},
action: `${baseUrl}/api/mobile/upload-file`,

Loading…
Cancel
Save