-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathadd-contact.wxml
41 lines (38 loc) · 1.37 KB
/
add-contact.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
35
36
37
38
39
40
41
<import src="/common/head.wxml" />
<import src="/common/foot.wxml" />
<view class="container page" data-weui-theme="{{theme}}">
<template is="head" data="{{title: 'addPhoneContact'}}"/>
<view class="page-body">
<form bindsubmit="submit">
<view class="page-section">
<view class="weui-cells__title">姓氏</view>
<view class="weui-cells weui-cells_after-title">
<view class="weui-cell weui-cell_input">
<input class="weui-input" name="lastName" />
</view>
</view>
</view>
<view class="page-section">
<view class="weui-cells__title">名字</view>
<view class="weui-cells weui-cells_after-title">
<view class="weui-cell weui-cell_input">
<input class="weui-input" name="firstName" />
</view>
</view>
</view>
<view class="page-section">
<view class="weui-cells__title">手机号</view>
<view class="weui-cells weui-cells_after-title">
<view class="weui-cell weui-cell_input">
<input class="weui-input" name="mobilePhoneNumber" />
</view>
</view>
</view>
<view class="btn-area">
<button type="primary" formType="submit">创建联系人</button>
<button type="default" formType="reset">重置</button>
</view>
</form>
</view>
<template is="foot" />
</view>