You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
701 B
15 lines
701 B
5 years ago
|
<!--miniprogram/account/pages/test/test.wxml-->
|
||
|
|
||
|
<textarea class="ta" maxlength="-1" value="{{code}}">
|
||
|
|
||
|
</textarea>
|
||
|
|
||
|
|
||
|
<view wx:if="{{false}}" class="we-editor theme-dark" bindtap="onTapEditor">
|
||
|
<input class="we-cursor" bindinput="onInput" style="top:{{cursor.row*14}}px;left:{{cursor.col*wordWidth}}px" maxlength="-1" value="{{cursor.value}}" cursor="{{cursor.cursor}}" focus="{{cursor.focus}}" confirm-hold="1" bindconfirm="onInputConfirm"></input>
|
||
|
<view class="we-line" style="top:{{index*14}}px" wx:for="{{lines}}" wx:for-item="line" wx:key="index">
|
||
|
<block wx:for="{{line}}" wx:for-item="word">
|
||
|
<text class="we-word {{word.class}}">{{word.value}}</text>
|
||
|
</block>
|
||
|
</view>
|
||
|
</view>
|