|
|
|
|
@ -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 {
|
|
|
|
|
// 触发器可以同时用blur和change
|
|
|
|
|
trigger: ["change", "blur"],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
content: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请填写其他服务需求",
|
|
|
|
|
trigger: ["blur", "change"],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
action: `${baseUrl}/api/mobile/upload-file`,
|
|
|
|
|
|