32 lines
859 B
Plaintext
32 lines
859 B
Plaintext
<view class="index">
|
|
首页 {{ title }}
|
|
<van-button type="primary">主要按钮</van-button>
|
|
<header title="{{ titleIndex }}" bindclick="test">
|
|
<view slot="left" class="left">left</view>
|
|
<view slot="right" class="right">right</view>
|
|
|
|
</header>
|
|
<image src="{{ src }}"></image>
|
|
<input bindinput="UserNameChange" class="weui-input" maxlength="10" placeholder="最大输入长度为10" />
|
|
<view>{{ user_name }}</view>
|
|
<view class="list">
|
|
<view class="item" wx:for="{{ newLis }}"
|
|
bindtap="enterInfo"
|
|
data-item="{{ j }}"
|
|
wx:for-item="j"
|
|
wx:for-index="i"
|
|
wx:key="index">
|
|
{{ j.title }} | {{ i }}
|
|
</view>
|
|
</view>
|
|
|
|
<view class="listImg">
|
|
<view class="item" wx:for="{{ list }}"
|
|
wx:key="index">
|
|
{{ item.title }}
|
|
<image src="{{ item.img_src }}"></image>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|