apply-clients 3.3.66 → 3.3.71
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/.project +17 -0
- package/build/dev-server.js +133 -133
- package/package.json +1 -1
- package/src/AndroidApp.vue +35 -35
- package/src/apply.js +92 -89
- package/src/applyAndroid.js +31 -31
- package/src/components/android/AppOnetomany.vue +301 -301
- package/src/components/android/AppServiceView.vue +595 -566
- package/src/components/android/AppSign.vue +142 -142
- package/src/components/android/Function/AppInstallFunction.vue +366 -366
- package/src/components/android/Process/AppExplorationUser.vue +396 -340
- package/src/components/android/Process/AppServiceControl.vue +865 -865
- package/src/components/android/Process/Processes/AppBuildSign.vue +46 -46
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +4 -2
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +300 -300
- package/src/components/android/Supervisory/AppSupervisoryCart.vue +119 -119
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +382 -382
- package/src/components/product/Business/BusinessApply.vue +242 -242
- package/src/components/product/Function/InstallFunction.vue +132 -132
- package/src/components/product/Function/InstallInfoSelect.vue +320 -320
- package/src/components/product/Function/Service/FunctionServiceControl.vue +445 -445
- package/src/components/product/Material/MaterialDetailed.vue +252 -235
- package/src/components/product/OldApply/Monitor/MonitorApply.vue +329 -329
- package/src/components/product/OldApply/OldApply.vue +150 -150
- package/src/components/product/Onetomany.vue +377 -377
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +264 -264
- package/src/components/product/Print/BuildOrder/printBuildOrder.vue +153 -153
- package/src/components/product/Print/IgnitionBill/IgnitionBill.vue +259 -0
- package/src/components/product/Print/IgnitionBill/printIgnitionBill.vue +168 -0
- package/src/components/product/Process/ExplorationSelect.vue +452 -457
- package/src/components/product/Process/ExplorationUser.vue +189 -147
- package/src/components/product/Process/Processes/Print/printCharge.vue +142 -142
- package/src/components/product/Process/Processes/Print/printRefund.vue +196 -196
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +211 -211
- package/src/components/product/Process/Service/ServiceControl.vue +1362 -1362
- package/src/components/product/ServiceView.vue +631 -631
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +863 -863
- package/src/components/product/Supervisory/SupervisoryControl.vue +137 -137
- package/src/components/product/Supervisory/SupervisoryhCart.vue +130 -130
- package/src/components/product/VueUtils/ApplyUpload.vue +273 -273
- package/src/components/product/VueUtils/HighMeter.vue +208 -208
- package/src/main.js +3 -0
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<app-sign @sign-success="signSuccess" :file-path="selectdata.f_construction_sign" @sign-clean="signClean"></app-sign>
|
|
3
|
-
</template>
|
|
4
|
-
<script>
|
|
5
|
-
import {getNowDate,isEmpty} from '../../../Util'
|
|
6
|
-
import {HttpResetClass} from 'vue-client'
|
|
7
|
-
import Vue from "vue";
|
|
8
|
-
|
|
9
|
-
export default {
|
|
10
|
-
title: '施工签字',
|
|
11
|
-
props: {
|
|
12
|
-
selectdata: {
|
|
13
|
-
type: Object
|
|
14
|
-
},
|
|
15
|
-
mark: {
|
|
16
|
-
type: Number,
|
|
17
|
-
default: 0
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
data () {
|
|
21
|
-
return {
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
ready () {
|
|
25
|
-
console.log('===========施工签字================')
|
|
26
|
-
},
|
|
27
|
-
methods: {
|
|
28
|
-
signClean () {
|
|
29
|
-
this.selectdata.f_construction_sign = null
|
|
30
|
-
},
|
|
31
|
-
signSuccess (fileUrl) {
|
|
32
|
-
console.log('==============签字回调==================')
|
|
33
|
-
console.log(fileUrl)
|
|
34
|
-
this.selectdata.f_construction_sign = fileUrl
|
|
35
|
-
}
|
|
36
|
-
},
|
|
37
|
-
events: {
|
|
38
|
-
},
|
|
39
|
-
computed: {
|
|
40
|
-
},
|
|
41
|
-
watch: {
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
</script>
|
|
45
|
-
<style scoped lang="less">
|
|
46
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<app-sign @sign-success="signSuccess" :file-path="selectdata.f_construction_sign" @sign-clean="signClean"></app-sign>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
import {getNowDate,isEmpty} from '../../../Util'
|
|
6
|
+
import {HttpResetClass} from 'vue-client'
|
|
7
|
+
import Vue from "vue";
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: '施工签字',
|
|
11
|
+
props: {
|
|
12
|
+
selectdata: {
|
|
13
|
+
type: Object
|
|
14
|
+
},
|
|
15
|
+
mark: {
|
|
16
|
+
type: Number,
|
|
17
|
+
default: 0
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
data () {
|
|
21
|
+
return {
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
ready () {
|
|
25
|
+
console.log('===========施工签字================')
|
|
26
|
+
},
|
|
27
|
+
methods: {
|
|
28
|
+
signClean () {
|
|
29
|
+
this.selectdata.f_construction_sign = null
|
|
30
|
+
},
|
|
31
|
+
signSuccess (fileUrl) {
|
|
32
|
+
console.log('==============签字回调==================')
|
|
33
|
+
console.log(fileUrl)
|
|
34
|
+
this.selectdata.f_construction_sign = fileUrl
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
events: {
|
|
38
|
+
},
|
|
39
|
+
computed: {
|
|
40
|
+
},
|
|
41
|
+
watch: {
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
</script>
|
|
45
|
+
<style scoped lang="less">
|
|
46
|
+
</style>
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
</div>
|
|
35
35
|
</list>
|
|
36
36
|
|
|
37
|
-
<modal v-if="showUserFile" :show.sync="showUserFile" v-ref:modal :large="true" :backdrop="false" title="安装明细">
|
|
37
|
+
<modal v-if="showUserFile" :show.sync="showUserFile" v-ref:modal :large="true" :backdrop="false" title="安装明细" width="100%">
|
|
38
38
|
<header slot="modal-header" class="modal-header">
|
|
39
39
|
<button type="button" class="close" @click="closeUserFile"><span>×</span></button>
|
|
40
40
|
<h4 class="modal-title">安装明细</h4>
|
|
@@ -108,6 +108,7 @@
|
|
|
108
108
|
<label class="col-xs-4 control-label">表 读 数:</label>
|
|
109
109
|
<div class="col-xs-8">
|
|
110
110
|
<input class="form-control input_view" style=""
|
|
111
|
+
onkeyup="if(this.value.length==1){this.value=this.value.replace(/[^1-9]/g,'')}else{this.value=this.value.replace(/\D/g,'')}" onafterpaste="if(this.value.length==1){this.value=this.value.replace(/[^1-9]/g,'')}else{this.value=this.value.replace(/\D/g,'')}"
|
|
111
112
|
type="number"
|
|
112
113
|
placeholder="表读数"
|
|
113
114
|
v-model="item.f_meter_base"
|
|
@@ -119,6 +120,7 @@
|
|
|
119
120
|
<label class="col-xs-4 control-label">初始底数:</label>
|
|
120
121
|
<div class="col-xs-8">
|
|
121
122
|
<input class="form-control input_view" style=""
|
|
123
|
+
onkeyup="if(this.value.length==1){this.value=this.value.replace(/[^1-9]/g,'')}else{this.value=this.value.replace(/\D/g,'')}" onafterpaste="if(this.value.length==1){this.value=this.value.replace(/[^1-9]/g,'')}else{this.value=this.value.replace(/\D/g,'')}"
|
|
122
124
|
type="number"
|
|
123
125
|
v-model="item.f_initial_base"
|
|
124
126
|
:value="item.f_initial_base"
|
|
@@ -387,7 +389,7 @@ export default {
|
|
|
387
389
|
condition: `ua.f_process_id = '${this.selectdata.f_process_id}'`
|
|
388
390
|
}
|
|
389
391
|
|
|
390
|
-
if (this.selectdata.f_apply_type === '团购转散户') {
|
|
392
|
+
if (this.selectdata.f_apply_type === '团购转散户' || this.selectdata.f_apply_type === '改管报建' || this.selectdata.f_apply_type === '增容报建') {
|
|
391
393
|
data.condition = `ui.f_userinfo_id = '${this.selectdata.f_userinfo_id}'`
|
|
392
394
|
}
|
|
393
395
|
let res = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/getAddresAndUserinfoAndUserfilesAmount`, {data:data}, {
|