apply-clients 3.3.43 → 3.3.44
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.
- package/package.json +2 -2
- package/src/AndroidApp.vue +35 -30
- package/src/components/android/AppServiceView.vue +1 -7
- package/src/components/android/Process/AppExplorationUser.vue +306 -306
- package/src/components/android/Process/AppServiceControl.vue +757 -757
- package/src/components/product/ServiceView.vue +1 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apply-clients",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.44",
|
|
4
4
|
"description": "报建前端模块",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"directories": {
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"style": "0.0.3",
|
|
94
94
|
"style-loader": "^0.20.3",
|
|
95
95
|
"system-clients": "3.1.87",
|
|
96
|
-
"system-phone": "1.
|
|
96
|
+
"system-phone": "1.2.80-49",
|
|
97
97
|
"url-loader": "^0.5.7",
|
|
98
98
|
"vue-client": "1.24.31",
|
|
99
99
|
"vue-hot-reload-api": "^1.2.0",
|
package/src/AndroidApp.vue
CHANGED
|
@@ -1,30 +1,35 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<!-- <app-base> -->
|
|
3
|
-
<div id="android-app">
|
|
4
|
-
<article>
|
|
5
|
-
<route :comp="{name: 'app-exploration-user'}" name="root"></route>
|
|
6
|
-
<!-- <route :comp="{name: 'app-process-supervisory'}" name="root"></route>-->
|
|
7
|
-
<!-- <route :comp="{name: 'apply-reserve'}" name="root"></route>-->
|
|
8
|
-
<!-- <route :comp="{name: 'task-graph'}" name="root"></route>-->
|
|
9
|
-
<!-- <route :comp="{name: 'app-istall-function'}" name="root"></route>-->
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
<
|
|
13
|
-
<
|
|
14
|
-
<alert-box
|
|
15
|
-
|
|
16
|
-
</
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<!-- <app-base> -->
|
|
3
|
+
<div id="android-app">
|
|
4
|
+
<article>
|
|
5
|
+
<route :comp="{name: 'app-exploration-user'}" name="root"></route>
|
|
6
|
+
<!-- <route :comp="{name: 'app-process-supervisory'}" name="root"></route>-->
|
|
7
|
+
<!-- <route :comp="{name: 'apply-reserve'}" name="root"></route>-->
|
|
8
|
+
<!-- <route :comp="{name: 'task-graph'}" name="root"></route>-->
|
|
9
|
+
<!-- <route :comp="{name: 'app-istall-function'}" name="root"></route>-->
|
|
10
|
+
<!-- <route :comp="{name: 'login-app'}" name="root"></route>-->
|
|
11
|
+
</article>
|
|
12
|
+
<time-out></time-out>
|
|
13
|
+
<message-box></message-box>
|
|
14
|
+
<alert-box></alert-box>
|
|
15
|
+
<alert-box-batch></alert-box-batch>
|
|
16
|
+
</div>
|
|
17
|
+
</template>
|
|
18
|
+
|
|
19
|
+
<script>
|
|
20
|
+
|
|
21
|
+
import AlertBox from "vue-client/src/components/AlertBox";
|
|
22
|
+
import AlertBoxBatch from "vue-client/src/components/AlertBoxBatch";
|
|
23
|
+
|
|
24
|
+
export default {
|
|
25
|
+
ready () {
|
|
26
|
+
if(!window.onerror) {
|
|
27
|
+
window.onerror = function (message, file, line, col, error) {
|
|
28
|
+
// HostApp.alert("Error occured: " + error.message)
|
|
29
|
+
return false
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
components: { AlertBox, AlertBoxBatch }
|
|
34
|
+
}
|
|
35
|
+
</script>
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<work-busy :is-busy="showWork" v-show="showWork"></work-busy>
|
|
3
|
-
|
|
4
2
|
<div class="form-horizontal select-overspread">
|
|
5
3
|
<div v-for="(index,item) in data.fields">
|
|
6
4
|
<!--input-->
|
|
@@ -279,8 +277,7 @@ export default {
|
|
|
279
277
|
model: {}, // 公司等属性
|
|
280
278
|
disable_button: true, // 控制按钮禁用
|
|
281
279
|
disable_modal_button: true, // 控制按钮禁用
|
|
282
|
-
showButModal: false
|
|
283
|
-
showWork: false
|
|
280
|
+
showButModal: false
|
|
284
281
|
}
|
|
285
282
|
},
|
|
286
283
|
watch: {
|
|
@@ -377,7 +374,6 @@ export default {
|
|
|
377
374
|
},
|
|
378
375
|
// 点击按钮组按钮
|
|
379
376
|
async click_but (button) {
|
|
380
|
-
this.showWork = true
|
|
381
377
|
this.disable_button = true
|
|
382
378
|
|
|
383
379
|
this.data.fields.forEach(item => {
|
|
@@ -388,7 +384,6 @@ export default {
|
|
|
388
384
|
|
|
389
385
|
if (button.button_fields && button.button_fields.length > 0) {
|
|
390
386
|
this.showButModal = true
|
|
391
|
-
this.showWork = false
|
|
392
387
|
return
|
|
393
388
|
}
|
|
394
389
|
|
|
@@ -399,7 +394,6 @@ export default {
|
|
|
399
394
|
}
|
|
400
395
|
},
|
|
401
396
|
confirmModal () {
|
|
402
|
-
this.showWork = true
|
|
403
397
|
this.closeModal()
|
|
404
398
|
|
|
405
399
|
this.data.button.button_fields.forEach(item => {
|