-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (46 loc) · 1.9 KB
/
index.html
File metadata and controls
59 lines (46 loc) · 1.9 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>新增项目公式 - FlowVision</title>
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<script src="jquery.min.js"></script>
</head>
<body class="editLayout">
<div style="overflow-x:hidden;background-color:#f3f3f4;height: 100%;">
<form id="edit-form" style="height: 100%;">
<div class="layui-form layui-form-sm" lay-filter="form" style="padding: 20px 30px 0 0;">
<div class="layui-form-item-sm">
<label class="layui-form-label-sm">公式</label>
<div class="layui-input-block-sm">
<input type="hidden" id="txt_CheckFormula" name="Formula" />
<div class="layui-input editor-div">
<div id="txt_CheckFormula-editor" class="editor"> </div>
</div>
</div>
</div>
</div>
<div class="layui-form-item-sm" style="text-align:center;padding-left: 30px;">
<button type="button" class="layui-btn layui-btn-normal layui-btn-sm" onclick="save(this);"> 提 交 </button>
<button type="button" class="layui-btn layui-btn-primary layui-btn-sm" onclick="closeWindow();"> 关 闭 </button>
</div>
</div>
</form>
</div>
<script src="toolgood.algorithm.js"></script>
<script src="ace/ace.js"></script>
<script src="ace/ext-language_tools.js"></script>
<script src="my-keywords.js"></script>
<script src="createeditor.js"></script>
<script>
$(function () {
createEditor("txt_CheckFormula-editor", "txt_CheckFormula")
})
</script>
</body>
</html>