system-phone 1.2.103 → 1.2.104

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/index.html +21 -55
  2. package/package.json +2 -1
  3. package/src/App.vue +25 -25
  4. package/src/assets/images//345/256/242/346/234/215/344/273/212/346/227/245/345/267/245/345/215/225.png +0 -0
  5. package/src/assets/images//345/256/242/346/234/215/345/234/250/347/272/277/345/244/204/347/220/206.png +0 -0
  6. package/src/assets/images//345/256/242/346/234/215/345/244/204/347/220/206/344/270/255.png +0 -0
  7. package/src/assets/images//345/256/242/346/234/215/345/256/214/346/210/220/347/216/207.png +0 -0
  8. package/src/assets/images//345/256/242/346/234/215/345/267/245/345/215/225/351/207/217.png +0 -0
  9. package/src/assets/images//345/256/242/346/234/215/345/267/262/345/256/214/346/210/220.png +0 -0
  10. package/src/assets/images//345/256/242/346/234/215/345/276/205/345/244/204/347/220/206.png +0 -0
  11. package/src/assets/images//345/256/242/346/234/215/346/264/276/345/215/225/351/207/217.png +0 -0
  12. package/src/assets/images//345/256/242/346/234/215/347/275/221/345/216/205/351/242/204/347/272/246/346/264/276/345/215/225/351/207/217.png +0 -0
  13. package/src/assets/images//345/261/205/346/260/221/345/242/236/351/225/277/345/210/206/346/236/220.png +0 -0
  14. package/src/assets/images//345/261/205/346/260/221/347/224/250/346/210/267.png +0 -0
  15. package/src/assets/images//346/224/266/350/264/271/347/254/224/346/225/260/345/260/217/346/240/207/351/242/230.png +0 -0
  16. package/src/assets/images//351/235/236/345/261/205/346/260/221/347/224/250/346/210/267.png +0 -0
  17. package/src/components/LoginApp.vue +625 -625
  18. package/src/components/screen/ContentPage.vue +615 -0
  19. package/src/components/screen/GongdanContentPage.vue +149 -0
  20. package/src/components/screen/ModuleTitle.vue +48 -0
  21. package/src/components/screen/TotalUserNumber.vue +77 -0
  22. package/src/components/screen/WorkOrderItem.vue +51 -0
  23. package/src/components/screen/WorkOrderRightDownItem.vue +103 -0
  24. package/src/components/screen/WorkOrderRightItem.vue +115 -0
  25. package/src/expandcssAndroid.less +521 -517
  26. package/src/main.js +3 -2
  27. package/src/systemphonegrid.js +171 -148
  28. package/static/layui/css/layui.css +1 -0
  29. package/static/layui/css/modules/code.css +1 -0
  30. package/static/layui/css/modules/laydate/default/laydate.css +1 -0
  31. package/static/layui/css/modules/layer/default/icon-ext.png +0 -0
  32. package/static/layui/css/modules/layer/default/icon.png +0 -0
  33. package/static/layui/css/modules/layer/default/layer.css +1 -0
  34. package/static/layui/css/modules/layer/default/loading-0.gif +0 -0
  35. package/static/layui/css/modules/layer/default/loading-1.gif +0 -0
  36. package/static/layui/css/modules/layer/default/loading-2.gif +0 -0
  37. package/static/layui/font/iconfont.eot +0 -0
  38. package/static/layui/font/iconfont.svg +554 -0
  39. package/static/layui/font/iconfont.ttf +0 -0
  40. package/static/layui/font/iconfont.woff +0 -0
  41. package/static/layui/font/iconfont.woff2 +0 -0
  42. package/static/layui/layui.js +1 -0
package/index.html CHANGED
@@ -1,55 +1,21 @@
1
- <!DOCTYPE html>
2
- <html lang="zh-CN">
3
- <head>
4
- <meta charset="utf-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
6
- <META HTTP-EQUIV="pragma" CONTENT="no-cache">
7
- <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate">
8
- <META HTTP-EQUIV="expires" CONTENT="0">
9
- <title>奥枫信息系统</title>
10
- <style media="screen">
11
- /*url(./static/newmainbg.jpg)*/
12
- body{width: 100%;background:#7f8eaf no-repeat center bottom; background-size: cover;}
13
- body .loginbg{ width:100%; height:100%; background:url(./static/loginbg.jpg) no-repeat center top;}
14
- </style>
15
- </head>
16
- <body>
17
- <!-- <script src="go_static/wasm_exec.js"></script>
18
- <script src="go_static/Functions.js"></script>
19
- <script src="go_static/init.js"></script>
20
- <script src="go_static/tools.js"></script>
21
- <script src="go_static/Jsons.js"></script>
22
- <script src="go_static/class.js"></script>-->
23
- <script>
24
- // loadWasm()
25
-
26
-
27
-
28
- /*
29
- var http = new XMLHttpRequest();
30
- //rul为后端接口,data是页面数据
31
- function saveResult(url,myjson)
32
- {
33
- http.open('post',url);
34
- http.setRequestHeader("Content-Type", "application/json");
35
- http.onreadystatechange=callback;
36
- http.send(myjson);
37
- }
38
- //保存之后
39
- function callback() {
40
- if(http.readyState==4){
41
- if(http.status==200){
42
- //发送成功
43
- }else{
44
- //发送失败
45
- }
46
- }
47
- }*/
48
- </script>
49
-
50
-
51
-
52
-
53
- <app></app>
54
- </body>
55
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="zh-CN">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
6
+ <META HTTP-EQUIV="pragma" CONTENT="no-cache">
7
+ <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate">
8
+ <META HTTP-EQUIV="expires" CONTENT="0">
9
+ <title>奥枫信息系统</title>
10
+ <style media="screen">
11
+ /*url(./static/newmainbg.jpg)*/
12
+ body{width: 100%;background:#7f8eaf no-repeat center bottom; background-size: cover;}
13
+ body .loginbg{ width:100%; height:100%; background:url(./static/loginbg.jpg) no-repeat center top;}
14
+ </style>
15
+ <link rel="stylesheet" href="./static/layui/css/layui.css">
16
+ </head>
17
+ <body>
18
+ <script src="./static/layui/layui.js"></script>
19
+ <app></app>
20
+ </body>
21
+ </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "system-phone",
3
- "version": "1.2.103",
3
+ "version": "1.2.104",
4
4
  "description": "手机模块 前端组件",
5
5
  "author": "何宁社 <524395609@qq.com>",
6
6
  "license": "ISC",
@@ -22,6 +22,7 @@
22
22
  "url": "https://github.com/DuBin1988/oa"
23
23
  },
24
24
  "dependencies": {
25
+ "layui": "^2.7.6",
25
26
  "less-loader": "^2.2.3",
26
27
  "pinyin-pro": "^1.2.3",
27
28
  "vue": "^1.0.17"
package/src/App.vue CHANGED
@@ -1,25 +1,25 @@
1
- <template>
2
- <!-- <app-base> -->
3
- <div id="android-app">
4
- <article>
5
- <route :comp="{name: 'login-app'}"></route>
6
- </article>
7
- <time-out></time-out>
8
- <message-box>
9
- </message-box>
10
- </div>
11
- <!-- </app-base> -->
12
- </template>
13
-
14
- <script>
15
- export default {
16
- ready () {
17
- if (!window.onerror) {
18
- window.onerror = function (message, file, line, col, error) {
19
- // HostApp.alert("网络故障,加载组件有误")
20
- return false
21
- }
22
- }
23
- }
24
- }
25
- </script>
1
+ <template>
2
+ <!-- <app-base> -->
3
+ <div id="android-app">
4
+ <article>
5
+ <route :comp="{name: 'gongdan-content-page'}"></route>
6
+ </article>
7
+ <time-out></time-out>
8
+ <message-box>
9
+ </message-box>
10
+ </div>
11
+ <!-- </app-base> -->
12
+ </template>
13
+
14
+ <script>
15
+ export default {
16
+ ready () {
17
+ if (!window.onerror) {
18
+ window.onerror = function (message, file, line, col, error) {
19
+ // HostApp.alert("网络故障,加载组件有误")
20
+ return false
21
+ }
22
+ }
23
+ }
24
+ }
25
+ </script>