37 lines
1.1 KiB
XML
37 lines
1.1 KiB
XML
<block wx:if="{{mobiles && mobiles.length}}">
|
|
<view class="container2">
|
|
<block wx:for="{{mobiles}}" wx:key="index">
|
|
<l-input
|
|
label="{{index + 1}}."
|
|
label-width="100"
|
|
value="{{item.mobile}}"
|
|
bind:lininput="onMobileSetMp"
|
|
data-id="{{item.id}}"
|
|
type="digit"
|
|
maxlength="{{11}}"
|
|
>
|
|
<l-button special="{{true}}" slot="right" bind:lintap="onDeleteMp" data-id="{{item.id}}">
|
|
<l-icon name="delete" />
|
|
</l-button
|
|
</l-input>
|
|
</block>
|
|
<view class="btn-box">
|
|
<l-button
|
|
special="true"
|
|
bind:lintap="onAddMp"
|
|
>
|
|
<l-icon name="add" size="40" />
|
|
</l-button>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
<block wx:else>
|
|
<view class="container">
|
|
<l-button
|
|
special="true"
|
|
bind:lintap="onAddMp"
|
|
>
|
|
<l-icon name="add" size="40" />
|
|
</l-button>
|
|
</view>
|
|
</block> |