1234567891011121314151617181920212223242526272829303132333435363738 |
- <view class='autoAdd-index {{className}}' style='{{style}}' ref='saveChildRef0'>
- <van-cell a:for='{{list}}' border='{{ false }}' ref-numbers='{{list}}' ref='saveChildRef1'>
- <view slot='title' class='title-area'>
- <text class="{{list[index]?'text-green':'text-red'}}">
- *
- </text>
- <text class='van-cell-text'>
- {{international.invited_personnel[language]}} {{index+1}}
- </text>
- <van-icon
- a:if='{{list.length > 1}}'
- class='icon red'
- name='clear'
- data-index='{{index}}'
- onClick='delete'
- ref='saveChildRef2'
- >
- </van-icon>
- <van-icon
- a:if='{{index+1 === list.length&& showAddBut }}'
- class='icon blue'
- name='add'
- onClick='add'
- ref='saveChildRef3'
- >
- </van-icon>
- </view>
- <custom-input
- class='input'
- type='number'
- placeholder='{{international.enter_phone_number[language]}}'
- value='{{list[index]}}'
- data-index='{{index}}'
- onInput='getValue'
- >
- </custom-input>
- </van-cell>
- </view>
|