19 lines
586 B
Plaintext
19 lines
586 B
Plaintext
<!--index.wxml-->
|
|
<scroll-view class="index" scroll-y type="list">
|
|
<view class="container">
|
|
<view class="header">
|
|
<image class="logo" src="/assets/image/logo.png"></image>
|
|
<text>
|
|
<text class="name gao">小糕</text>
|
|
<text>和</text>
|
|
<text class="name yeyu">夜雨</text>
|
|
<text>的美好记录</text>
|
|
</text>
|
|
</view>
|
|
<view class="password">
|
|
<t-input placeholder="请输入访问密码" model:value="{{key}}" borderless clearable />
|
|
</view>
|
|
<t-button class="enter" theme="primary" bind:tap="navigateToMain">进入</t-button>
|
|
</view>
|
|
</scroll-view>
|