apply-clients 3.3.69 → 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/applyAndroid.js +31 -31
- package/src/components/android/AppOnetomany.vue +301 -301
- 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 -402
- package/src/components/android/Process/AppServiceControl.vue +865 -865
- package/src/components/android/Process/Processes/AppBuildSign.vue +46 -46
- 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/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/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
|
@@ -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>
|