-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathclipboard-data.wxml
34 lines (30 loc) · 1.07 KB
/
clipboard-data.wxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<import src="/common/head.wxml" />
<import src="/common/foot.wxml" />
<view class="container page" data-weui-theme="{{theme}}">
<template is="head" data="{{title: 'get/set/ClipboardData'}}"/>
<view class="page-body">
<view class="weui-cells weui-cells_after-title">
<view class="weui-cell weui-cell_input">
<view class="weui-cell__hd">
<view class="weui-label">Copy</view>
</view>
<view class="weui-cell__bd">
<input class="weui-input" type="text" name="key" value="{{value}}" bindinput="valueChanged"></input>
</view>
</view>
<view class="weui-cell weui-cell_input">
<view class="weui-cell__hd">
<view class="weui-label">Paste</view>
</view>
<view class="weui-cell__bd">
<input class="weui-input" type="text" value="{{pasted}}"></input>
</view>
</view>
</view>
<view class="btn-area">
<button type="primary" bindtap="copy">复制</button>
<button bindtap="paste">粘贴</button>
</view>
</view>
<template is="foot" />
</view>