apply-clients 3.3.97 → 3.3.100
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
CHANGED
|
@@ -20,7 +20,7 @@ import Vue from "vue";
|
|
|
20
20
|
|
|
21
21
|
export default {
|
|
22
22
|
title: '签字',
|
|
23
|
-
props: ['filePath','blobid'],
|
|
23
|
+
props: ['filePath','blobid','type', 'defname'],
|
|
24
24
|
data () {
|
|
25
25
|
return {
|
|
26
26
|
f_sign_path: null,
|
|
@@ -38,6 +38,7 @@ export default {
|
|
|
38
38
|
},
|
|
39
39
|
sign () {
|
|
40
40
|
debugger
|
|
41
|
+
this.type='手机签字'
|
|
41
42
|
console.log('==============签字打印this============',this)
|
|
42
43
|
this.delAudioFile(this.f_sign_path)
|
|
43
44
|
this.fileName = guid() + '.jpg'
|
|
@@ -65,6 +66,8 @@ export default {
|
|
|
65
66
|
console.log('===================签字文件上传==============')
|
|
66
67
|
console.log('===================打印id==============',HostApp.__this__.blobid)
|
|
67
68
|
let data = {
|
|
69
|
+
defname:HostApp.__this__.defname,
|
|
70
|
+
type:HostApp.__this__.type,
|
|
68
71
|
blodid: HostApp.__this__.blobid,
|
|
69
72
|
username: Vue.user.name,
|
|
70
73
|
fremarks: '报装手机签字文件',
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<app-take-pic :blobid="selectdata.f_process_id" :defname="selectdata.defname" :isdelete="true" :istakepic="true" :istype="true"></app-take-pic>
|
|
9
9
|
</panel>
|
|
10
10
|
<panel header="签字" :is-open="false" type="primary" v-if="selectdata.f_process_id">
|
|
11
|
-
<app-sign :blobid="selectdata.f_process_id" @sign-success="signSuccess" :file-path="selectdata.f_process_id"
|
|
11
|
+
<app-sign :blobid="selectdata.f_process_id" :defname="selectdata.defname" @sign-success="signSuccess" :file-path="selectdata.f_process_id"@sign-clean="signClean"></app-sign>
|
|
12
12
|
</panel>
|
|
13
13
|
</accordion>
|
|
14
14
|
</div>
|