apply-clients 3.3.110-8 → 3.3.110-9
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/build/dev-server.js +2 -2
- package/package.json +1 -1
- package/src/App.vue +29 -20
- package/src/components/android/AppServiceView.vue +3 -3
- package/src/components/android/Process/AppExplorationUser.vue +499 -498
- package/src/components/android/Process/AppServiceControl.vue +1484 -1469
- package/src/components/android/Process/Processes/AppChargeManagement.vue +138 -48
- package/src/main.js +8 -6
package/build/dev-server.js
CHANGED
|
@@ -8,8 +8,8 @@ var compiler = webpack(config)
|
|
|
8
8
|
// var proxy = httpProxy.createProxyServer()
|
|
9
9
|
// var ldap = 'http://121.36.79.201:8400'
|
|
10
10
|
// var applyinstall = 'http://121.36.79.201:8400'
|
|
11
|
-
var ldap = 'http://192.168.20.
|
|
12
|
-
var applyinstall = 'http://192.168.20.
|
|
11
|
+
var ldap = 'http://192.168.20.28:8556'
|
|
12
|
+
var applyinstall = 'http://192.168.20.28:8556'
|
|
13
13
|
var proxyTable = {
|
|
14
14
|
'/wx': {
|
|
15
15
|
target: ldap
|
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -1,20 +1,29 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div>
|
|
3
|
-
<app-base class="bg">
|
|
4
|
-
<div class='flex'>
|
|
5
|
-
<article>
|
|
6
|
-
<route :comp="{name: 'login'}"></route>
|
|
7
|
-
</article>
|
|
8
|
-
</div>
|
|
9
|
-
</app-base>
|
|
10
|
-
</div>
|
|
11
|
-
</template>
|
|
12
|
-
|
|
13
|
-
<script>
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<app-base class="bg">
|
|
4
|
+
<div class='flex'>
|
|
5
|
+
<article>
|
|
6
|
+
<route :comp="{name: 'login-app'}"></route>
|
|
7
|
+
</article>
|
|
8
|
+
</div>
|
|
9
|
+
</app-base>
|
|
10
|
+
</div>
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script>
|
|
14
|
+
|
|
15
|
+
import AlertBox from "vue-client/src/components/AlertBox";
|
|
16
|
+
import AlertBoxBatch from "vue-client/src/components/AlertBoxBatch";
|
|
17
|
+
|
|
18
|
+
export default {
|
|
19
|
+
ready () {
|
|
20
|
+
if(!window.onerror) {
|
|
21
|
+
window.onerror = function (message, file, line, col, error) {
|
|
22
|
+
// HostApp.alert("Error occured: " + error.message)
|
|
23
|
+
return false
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
components: { AlertBox, AlertBoxBatch }
|
|
28
|
+
}
|
|
29
|
+
</script>
|
|
@@ -365,6 +365,7 @@ export default {
|
|
|
365
365
|
sjvalue:'',
|
|
366
366
|
xianvalue:'',
|
|
367
367
|
sqvalue:'',
|
|
368
|
+
mapvalue:'',
|
|
368
369
|
}
|
|
369
370
|
}
|
|
370
371
|
},
|
|
@@ -437,7 +438,6 @@ export default {
|
|
|
437
438
|
flag = true
|
|
438
439
|
}
|
|
439
440
|
}
|
|
440
|
-
|
|
441
441
|
//区域下拉框必选 流程模式为报警器报建
|
|
442
442
|
if ((this.data.f_apply_type === '报警器报建' || this.data.f_apply_type === '工商业报警器报建') && this.data.defname === '工程施工' && this.data.title === '工程施工' && this.data.f_sub_state !='完工'){
|
|
443
443
|
if (!flag){
|
|
@@ -446,8 +446,8 @@ export default {
|
|
|
446
446
|
console.log("区域为空禁止提交:",this.areaData)
|
|
447
447
|
flag = true
|
|
448
448
|
}
|
|
449
|
-
if (this.
|
|
450
|
-
console.log("坐标为空禁止提交:",this.
|
|
449
|
+
if (this.areaData.mapvalue ==null){
|
|
450
|
+
console.log("坐标为空禁止提交:",this.areaData.mapvalue)
|
|
451
451
|
flag = true
|
|
452
452
|
}
|
|
453
453
|
}
|