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