19 lines
556 B
Plaintext
19 lines
556 B
Plaintext
|
<import src="../../common/head.wxml" />
|
||
|
<import src="../../common/foot.wxml" />
|
||
|
|
||
|
<view class="container">
|
||
|
<template is="head" data="{{title: 'text'}}"/>
|
||
|
|
||
|
<view class="page-body">
|
||
|
<view class="page-section page-section-spacing">
|
||
|
<view class="text-box" scroll-y="true" scroll-top="{{scrollTop}}">
|
||
|
<text>{{text}}</text>
|
||
|
</view>
|
||
|
<button disabled="{{!canAdd}}" bindtap="add">add line</button>
|
||
|
<button disabled="{{!canRemove}}" bindtap="remove">remove line</button>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<template is="foot" />
|
||
|
</view>
|