miniprogram-demo/packageAPI/pages/add-contact/add-contact.wxml

45 lines
1.5 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!--pages/API/add-contact/add-contact.wxml-->
<import src="../../common/head.wxml" />
<import src="../../common/foot.wxml" />
<view class="container">
<template is="head" data="{{title: 'addPhoneContact'}}"/>
<view class="tips">目前仅iOS支持安卓暂时不支持</view>
<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>