UNPKG

kero

Version:
56 lines (55 loc) 2.83 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Title</title> <link rel="stylesheet" href="http://iuap.yonyou.com/fe/vendor/font-awesome/css/font-awesome.css"> <link rel="stylesheet" type="text/css" href="http://iuap.yonyou.com/fe/vendor/uui/css/u.css"> <link rel="stylesheet" type="text/css" href="http://iuap.yonyou.com/fe/vendor/uui/css/u-extend.css"> <link rel="stylesheet" type="text/css" href="http://iuap.yonyou.com/fe/vendor/uui/css/tree.css"> <link rel="stylesheet" type="text/css" href="http://iuap.yonyou.com/fe/vendor/uui/css/grid.css"> <link rel="stylesheet" type="text/css" href="widget.css"> </head> <body> <!-- HTML u-meta:框架特有标记,框架通过识别此标记创建对应UI组件,以及进行数据绑定 id,type.data,field为必选项 id:创建组件唯一标识 type:创建组件对应的类型 data:指定数据模型中的数据集 field:绑定数据集中对应的字段 --> <div class="u-form-group"> <label>验证输入不为空且需要为数值</label> <div class="u-input-group u-has-feedback" u-meta='{"type":"u-text","data":"dt1","field":"otherSupportMoney"}'> <div class="u-input-group-before" style="color: red;">*</div> <input type="text" class="u-form-control"> </div> <label>验证编码不能为空:</label> <div class="u-input-group u-has-feedback" u-meta='{"type":"u-text","data":"dt1","field":"otherSupportCode"}'> <div class="u-input-group-before" style="color: red;">*</div> <input type="text" class="u-form-control"> </div> <label>显示默认值:</label> <div class="u-input-group u-has-feedback" u-meta='{"type":"u-text","data":"dt1","field":"isValid"}'> <div class="u-input-group-before" style="color: red;">*</div> <input type="text" class="u-form-control"> </div> <label>显示默认值(函数):</label> <div class="u-input-group u-has-feedback" u-meta='{"type":"u-text","data":"dt1","field":"isDefault"}'> <div class="u-input-group-before" style="color: red;">*</div> <input type="text" class="u-form-control"> </div> </div> <script src="http://iuap.yonyou.com/fe/vendor/jquery/jquery-1.11.2.js"></script> <script src="http://iuap.yonyou.com/fe/vendor/knockout/knockout-3.2.0.debug.js"></script> <script src="http://iuap.yonyou.com/fe/vendor/uui/js/u-polyfill.js"></script> <script src="http://iuap.yonyou.com/fe/vendor/uui/js/u.js"></script> <script src="http://iuap.yonyou.com/fe/vendor/uui/js/u-tree.js"></script> <script src="http://iuap.yonyou.com/fe/vendor/uui/js/u-grid.js"></script> <script src="http://iuap.yonyou.com/fe/vendor/requirejs/require.debug.js"></script> <script src="widget.js"></script> </body> </html>