safecheck-client 3.0.35-gongyi-14 → 3.0.35-gongyi-16
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +3 -3
- package/src/App.vue +17 -27
- package/src/components/android/SafecheckOrderV.vue +18 -0
- package/src/components/defect/DefectListWeixiu.vue +469 -469
- package/src/components/pc/CheckBookManage.vue +1004 -998
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "safecheck-client",
|
3
3
|
"//": "主分支版本别乱升,测试包的版本直接发包(建议使用1.XX.XX-XXX格式作为测试包,不要频繁升级第三位版本号),别提交版本号。切了分支切记把主分支版本升了,保证主分支始终是最高版本!!!!!",
|
4
|
-
"version": "3.0.35-gongyi-
|
4
|
+
"version": "3.0.35-gongyi-16",
|
5
5
|
"description": "安检模块 前端组件",
|
6
6
|
"author": "丁新 <417755458@qq.com>",
|
7
7
|
"license": "ISC",
|
@@ -92,11 +92,11 @@
|
|
92
92
|
"sinon-chai": "^2.8.0",
|
93
93
|
"style": "0.0.3",
|
94
94
|
"style-loader": "^0.20.3",
|
95
|
-
"system-clients": "3.2.
|
95
|
+
"system-clients": "3.2.61",
|
96
96
|
"system-phone": "1.2.80-35",
|
97
97
|
"telephone-clients": "1.1.27",
|
98
98
|
"url-loader": "^0.5.7",
|
99
|
-
"vue-client": "1.24.
|
99
|
+
"vue-client": "1.24.72",
|
100
100
|
"vue-hot-reload-api": "^1.2.0",
|
101
101
|
"vue-html-loader": "^1.0.0",
|
102
102
|
"vue-loader": "^8.2.1",
|
package/src/App.vue
CHANGED
@@ -1,27 +1,17 @@
|
|
1
|
-
<template>
|
2
|
-
|
3
|
-
<div class='flex'>
|
4
|
-
<article
|
5
|
-
<route :comp="{name: '
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
ready () {
|
19
|
-
if(!window.onerror) {
|
20
|
-
window.onerror = function (message, file, line, col, error) {
|
21
|
-
//window.alert("Error occured: " + error.message)
|
22
|
-
return false
|
23
|
-
}
|
24
|
-
}
|
25
|
-
}
|
26
|
-
}
|
27
|
-
</script>
|
1
|
+
<template>
|
2
|
+
<app-base class="bg">
|
3
|
+
<div class='flex'>
|
4
|
+
<article>
|
5
|
+
<route :comp="{name: 'login'}"></route>
|
6
|
+
</article>
|
7
|
+
</div>
|
8
|
+
</app-base>
|
9
|
+
</template>
|
10
|
+
|
11
|
+
<script>
|
12
|
+
import Test from './components/Test'
|
13
|
+
|
14
|
+
export default {
|
15
|
+
components: { Test }
|
16
|
+
}
|
17
|
+
</script>
|
@@ -1757,6 +1757,15 @@ export default {
|
|
1757
1757
|
f_item_value: this.item.f_plan_meters[i].f_prior_reading,
|
1758
1758
|
f_path: "",
|
1759
1759
|
type: "number"
|
1760
|
+
},
|
1761
|
+
{
|
1762
|
+
f_defect_level: null,
|
1763
|
+
f_device_id: "",
|
1764
|
+
f_is_defect: "",
|
1765
|
+
f_item_name: "表封号",
|
1766
|
+
f_item_value: this.item.f_plan_meters[i].f_metertitles,
|
1767
|
+
f_path: "",
|
1768
|
+
type: "number"
|
1760
1769
|
}
|
1761
1770
|
]
|
1762
1771
|
})
|
@@ -1810,6 +1819,15 @@ export default {
|
|
1810
1819
|
f_item_value: this.item.f_plan_meters[i].f_prior_reading,
|
1811
1820
|
f_path: "",
|
1812
1821
|
type: "number"
|
1822
|
+
},
|
1823
|
+
{
|
1824
|
+
f_defect_level: null,
|
1825
|
+
f_device_id: "",
|
1826
|
+
f_is_defect: "",
|
1827
|
+
f_item_name: "表封号",
|
1828
|
+
f_item_value: this.item.f_plan_meters[i].f_metertitles,
|
1829
|
+
f_path: "",
|
1830
|
+
type: "number"
|
1813
1831
|
}
|
1814
1832
|
]
|
1815
1833
|
})
|