qingcheng-xiaochengxu/pages/projectModule/applyCode/applyCode.wxml

34 lines
1.4 KiB
Plaintext
Raw Normal View History

2025-05-17 15:17:14 +00:00
<view class="flex-col justify-start page">
<view class="flex-col section">
<view class="flex-col section_2">
<text class="self-start font text">业务员姓名</text>
2025-05-19 01:08:33 +00:00
<input class="flex-col justify-start items-start view text-wrapper input"
placeholder="请输入"
value="{{salespersonName}}"
bindinput="onNameInput"
disabled="{{mode === 'view'}}" />
2025-05-17 15:17:14 +00:00
<view class="self-stretch divider"></view>
<text class="self-start font text_3">业务员手机号</text>
2025-05-19 01:08:33 +00:00
<input class="flex-col justify-start items-start view text-wrapper input_1"
placeholder="请输入"
value="{{salespersonPhone}}"
bindinput="onPhoneInput"
disabled="{{mode === 'view'}}" />
2025-05-17 15:17:14 +00:00
<view class="self-stretch divider"></view>
</view>
2025-05-19 01:08:33 +00:00
<view style="padding-top: {{mode === 'view' ? '0' : '80.63rpx'}}" class="flex-col group">
<!-- “申请资料报备”按钮只在新增模式显示 -->
<view class="flex-col justify-start items-center text-wrapper_2"
bindtap="onApply"
wx:if="{{mode !== 'view'}}">
2025-05-17 15:17:14 +00:00
<text class="font text_4">申请资料报备</text>
</view>
2025-05-19 01:08:33 +00:00
<view class="flex-col justify-start section_3 mt-27">
<view class="section_4">
<rich-text class="promo-desc" nodes="{{promoCodeDesc}}"></rich-text>
</view>
</view>
2025-05-17 15:17:14 +00:00
</view>
</view>
2025-05-19 01:08:33 +00:00
</view>