-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerchant-newdiscount.html
64 lines (62 loc) · 3.14 KB
/
merchant-newdiscount.html
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<title>爱妙团</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!--针对ios-->
<meta content="yes" name="apple-mobile-web-app-capable">
<!--添加主屏后再次打开是否全屏-->
<meta name="apple-touch-fullscreen" content="yes">
<!--禁止百度转码-->
<meta name="Cache-Control" content="no-siteapp">
<!--ios顶部颜色-->
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<!--禁用数字识别电话-->
<meta content="telephone=no" name="format-detection">
<!--添加主屏后显示标题文字-->
<meta name="apple-mobile-web-app-title" content="卡券商城">
<!--添加主屏显示的图标 sizes为尺寸-->
<link rel="apple-touch-icon" sizes="144x144" href="">
<!--viewport-->
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
<!--less-->
<link rel="stylesheet" href="css/app.less">
</head>
<body>
<!--顶部模块-->
<header flex="dir:left box:justify">
<a class="back" href="javascript:;"></a>
<span class="title">我的卡包</span>
<a class="titleSave">保存</a>
</header>
<!--内容-->
<section>
<form action="">
<ul class="newDiscount">
<li><span class="title">卡券名称</span><input class="name" type="text" placeholder="请输入卡券名称"></li>
<li class="discountType" flex="dir:left box:first">
<span class="title">卡券类型</span>
<label style="margin-left: 0;" for="cardStyle1"><span class="on"></span>抵用券<input class="hidden" name="cardStyle" id="cardStyle1" type="radio" checked="true"></label>
<label for="cardStyle2"><span></span>代金券<input class="hidden" name="cardStyle" id="cardStyle2" type="radio"></label>
<label for="cardStyle3"><span></span>折扣券<input class="hidden" name="cardStyle" id="cardStyle3" type="radio"></label>
</li>
<li><span class="title">卡券抵用</span><input class="numbers" type="number" placeholder="实际金额"><span class="normal">抵</span><input class="numbers" type="number" placeholder="花销金额"></li>
<li><span class="title">卡券个数</span><input class="numbers" type="number" placeholder="数量"><span class="normal">张</span></li>
<li><span class="title">有效期限</span><input class="numbers" type="text" placeholder="开始时间"><span class="normal">到</span><input class="numbers" type="text" placeholder="结束时间">
</li>
<li class="cardMessages" flex="box:first"><span class="title">卡券信息</span><textarea name="" id=""></textarea></li>
</ul>
</form>
</section>
</body>
<script src="js/zepto.min.js"></script><!--ignore-->
<script src="js/touch.js"></script><!--ignore-->
<script src="js/slider.js"></script><!--ignore-->
<script src="js/fx.js"></script><!--ignore-->
<script src="js/fx_methods.js"></script><!--ignore-->
<script src="js/fastclick.js"></script><!--ignore-->
<script src="js/app.js"></script><!--ignore-->
<script>
</script>
</html>