apply-clients 3.3.213 → 3.3.214
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 +1 -1
- package/src/applyAndroid.js +8 -0
- package/src/components/android/Process/Processes/AppBuildSign.vue +1 -1
- package/src/components/android/Process/Processes/AppjiaASign.vue +47 -0
- package/src/components/android/Process/Processes/AppjiaSign.vue +47 -0
- package/src/components/android/Process/Processes/ApptechnologySign.vue +47 -0
package/package.json
CHANGED
package/src/applyAndroid.js
CHANGED
|
@@ -18,7 +18,15 @@ export default function (filiale) {
|
|
|
18
18
|
Vue.component('app-function-service-control', (resolve) => { require(['./components/android/Function/AppFunctionServiceControl'], resolve) })
|
|
19
19
|
//签字
|
|
20
20
|
Vue.component('app-sign', (resolve) => { require(['./components/android/AppSign'], resolve) })
|
|
21
|
+
//市场部负责人签字
|
|
21
22
|
Vue.component('app-build-sign', (resolve) => { require(['./components/android/Process/Processes/AppBuildSign'], resolve) })
|
|
23
|
+
//技术部负责人签字
|
|
24
|
+
Vue.component('app-technology-sign', (resolve) => { require(['./components/android/Process/Processes/ApptechnologySign'], resolve) })
|
|
25
|
+
//调研表甲方负责人签字:
|
|
26
|
+
Vue.component('app-jiaA-sign', (resolve) => { require(['./components/android/Process/Processes/AppjiaASign'], resolve) })
|
|
27
|
+
//告知单甲方负责人签字:
|
|
28
|
+
Vue.component('app-jia-sign', (resolve) => { require(['./components/android/Process/Processes/AppjiaSign'], resolve) })
|
|
29
|
+
|
|
22
30
|
Vue.component('app-take-pic', (resolve) => { require(['./components/android/AppTakePic'], resolve) })
|
|
23
31
|
Vue.component('app-service-view', (resolve) => { require(['./components/android/AppServiceView'], resolve) })
|
|
24
32
|
Vue.component('app-onetomany', (resolve) => { require(['./components/android/AppOnetomany'], resolve) })
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<h3>调研表甲方负责人签字:</h3>
|
|
3
|
+
<app-sign @sign-success="signSuccess" :file-path="selectdata.f_jiaA_sign" @sign-clean="signClean"></app-sign>
|
|
4
|
+
</template>
|
|
5
|
+
<script>
|
|
6
|
+
import {getNowDate,isEmpty} from '../../../Util'
|
|
7
|
+
import {HttpResetClass} from 'vue-client'
|
|
8
|
+
import Vue from "vue";
|
|
9
|
+
|
|
10
|
+
export default {
|
|
11
|
+
title: '调研表甲方负责人签字',
|
|
12
|
+
props: {
|
|
13
|
+
selectdata: {
|
|
14
|
+
type: Object
|
|
15
|
+
},
|
|
16
|
+
mark: {
|
|
17
|
+
type: Number,
|
|
18
|
+
default: 0
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
data () {
|
|
22
|
+
return {
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
ready () {
|
|
26
|
+
console.log('===========调研表甲方负责人签字================')
|
|
27
|
+
},
|
|
28
|
+
methods: {
|
|
29
|
+
signClean () {
|
|
30
|
+
this.selectdata.f_jiaA_sign = null
|
|
31
|
+
},
|
|
32
|
+
signSuccess (fileUrl) {
|
|
33
|
+
console.log('==============告知单和调研表回调==================')
|
|
34
|
+
console.log(fileUrl)
|
|
35
|
+
this.selectdata.f_jiaA_sign = fileUrl
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
events: {
|
|
39
|
+
},
|
|
40
|
+
computed: {
|
|
41
|
+
},
|
|
42
|
+
watch: {
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
</script>
|
|
46
|
+
<style scoped lang="less">
|
|
47
|
+
</style>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<h3>告知单甲方负责人签字:</h3>
|
|
3
|
+
<app-sign @sign-success="signSuccess" :file-path="selectdata.f_jia_sign" @sign-clean="signClean"></app-sign>
|
|
4
|
+
</template>
|
|
5
|
+
<script>
|
|
6
|
+
import {getNowDate,isEmpty} from '../../../Util'
|
|
7
|
+
import {HttpResetClass} from 'vue-client'
|
|
8
|
+
import Vue from "vue";
|
|
9
|
+
|
|
10
|
+
export default {
|
|
11
|
+
title: '告知单甲方负责人签字',
|
|
12
|
+
props: {
|
|
13
|
+
selectdata: {
|
|
14
|
+
type: Object
|
|
15
|
+
},
|
|
16
|
+
mark: {
|
|
17
|
+
type: Number,
|
|
18
|
+
default: 0
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
data () {
|
|
22
|
+
return {
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
ready () {
|
|
26
|
+
console.log('===========告知单甲方负责人签字================')
|
|
27
|
+
},
|
|
28
|
+
methods: {
|
|
29
|
+
signClean () {
|
|
30
|
+
this.selectdata.f_jia_sign = null
|
|
31
|
+
},
|
|
32
|
+
signSuccess (fileUrl) {
|
|
33
|
+
console.log('==============告知单和调研表回调==================')
|
|
34
|
+
console.log(fileUrl)
|
|
35
|
+
this.selectdata.f_jia_sign = fileUrl
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
events: {
|
|
39
|
+
},
|
|
40
|
+
computed: {
|
|
41
|
+
},
|
|
42
|
+
watch: {
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
</script>
|
|
46
|
+
<style scoped lang="less">
|
|
47
|
+
</style>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<h3>技术部负责人签字:</h3>
|
|
3
|
+
<app-sign @sign-success="signSuccess" :file-path="selectdata.f_technology_sign" @sign-clean="signClean"></app-sign>
|
|
4
|
+
</template>
|
|
5
|
+
<script>
|
|
6
|
+
import {getNowDate,isEmpty} from '../../../Util'
|
|
7
|
+
import {HttpResetClass} from 'vue-client'
|
|
8
|
+
import Vue from "vue";
|
|
9
|
+
|
|
10
|
+
export default {
|
|
11
|
+
title: '技术部负责人签字',
|
|
12
|
+
props: {
|
|
13
|
+
selectdata: {
|
|
14
|
+
type: Object
|
|
15
|
+
},
|
|
16
|
+
mark: {
|
|
17
|
+
type: Number,
|
|
18
|
+
default: 0
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
data () {
|
|
22
|
+
return {
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
ready () {
|
|
26
|
+
console.log('===========技术部负责人签字================')
|
|
27
|
+
},
|
|
28
|
+
methods: {
|
|
29
|
+
signClean () {
|
|
30
|
+
this.selectdata.f_technology_sign = null
|
|
31
|
+
},
|
|
32
|
+
signSuccess (fileUrl) {
|
|
33
|
+
console.log('==============回调==================')
|
|
34
|
+
console.log(fileUrl)
|
|
35
|
+
this.selectdata.f_technology_sign = fileUrl
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
events: {
|
|
39
|
+
},
|
|
40
|
+
computed: {
|
|
41
|
+
},
|
|
42
|
+
watch: {
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
</script>
|
|
46
|
+
<style scoped lang="less">
|
|
47
|
+
</style>
|