pointer-events: none; /* 让点击事件穿透到父元素 */

This commit is contained in:
WindowBird 2025-11-10 11:33:39 +08:00
parent b00451e50a
commit f7a5c99b7b

View File

@ -54,9 +54,9 @@
</view> </view>
<!-- 客户状态 --> <!-- 客户状态 -->
<view class="form-item " @click="openStatusPicker"> <view class="form-item">
<text class="form-label required">*客户状态</text> <text class="form-label required">*客户状态</text>
<view class="form-input-wrapper" > <view class="form-input-wrapper" @click="openStatusPicker">
<input <input
:value="getStatusText(formData.customerStatus)" :value="getStatusText(formData.customerStatus)"
class="form-input" class="form-input"
@ -69,9 +69,9 @@
</view> </view>
<!-- 意向强度 --> <!-- 意向强度 -->
<view class="form-item" @click="openIntentLevelPicker"> <view class="form-item">
<text class="form-label required">*意向强度</text> <text class="form-label required">*意向强度</text>
<view class="form-input-wrapper" > <view class="form-input-wrapper" @click="openIntentLevelPicker">
<input <input
:value="getIntentLevelText(formData.customerIntentLevel)" :value="getIntentLevelText(formData.customerIntentLevel)"
class="form-input" class="form-input"
@ -84,9 +84,9 @@
</view> </view>
<!-- 跟进方式 --> <!-- 跟进方式 -->
<view class="form-item" @click="openFollowTypePicker"> <view class="form-item">
<text class="form-label required">*跟进方式</text> <text class="form-label required">*跟进方式</text>
<view class="form-input-wrapper" > <view class="form-input-wrapper" @click="openFollowTypePicker">
<input <input
:value="getFollowTypeText(formData.type)" :value="getFollowTypeText(formData.type)"
class="form-input" class="form-input"
@ -1144,6 +1144,7 @@ const handleCancel = () => {
flex: 1; flex: 1;
font-size: 14px; font-size: 14px;
color: #333; color: #333;
pointer-events: none; /* 让点击事件穿透到父元素 */
} }
.arrow { .arrow {