apply-clients 3.3.103 → 3.3.106

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.
@@ -108,6 +108,13 @@ export default {
108
108
  this.f_sign_path = fileUrl
109
109
 
110
110
  this.$emit('sign-success', fileUrl)
111
+
112
+
113
+ HostApp.__this__.getFiles()
114
+ console.log('----------------查询回调结束-------------------')
115
+
116
+ HostApp.__callback__ = null
117
+ HostApp.__this__ = null
111
118
  },
112
119
  delAudioFile (signPath) {
113
120
  if (!signPath) {
@@ -34,6 +34,7 @@
34
34
  </div>
35
35
  <div class="row text-right">
36
36
  <button
37
+ type="button"
37
38
  class="btn btn-info"
38
39
  @click="$parent.$parent.openDevicesModal(row)"
39
40
  >
@@ -425,18 +426,18 @@ export default {
425
426
  this.userfile = row
426
427
 
427
428
  let data = {
428
- // tablename: 't_devices',
429
+ tablename: 't_devices',
429
430
  condition: `f_userfiles_id = '${this.userfile.f_userfiles_id}'`
430
431
  }
431
- let res = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/singleTable`, {data:data}, {
432
- resolveMsg: null,
433
- rejectMsg: '设备查询失败!!!'
434
- })
435
- // let res = await this.$resetpost(
436
- // `${this.$androidUtil.getProxyUrl()}/rs/sql/singleTable`,
437
- // {data: data},
438
- // {resolveMsg: null, rejectMsg: '设备查询失败!!!'}
439
- // )
432
+ // let res = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/singleTable`, {data:data}, {
433
+ // resolveMsg: null,
434
+ // rejectMsg: '设备查询失败!!!'
435
+ // })
436
+ let res = await this.$resetpost(
437
+ `${this.$androidUtil.getProxyUrl()}/rs/sql/singleTable`,
438
+ {data: data},
439
+ {resolveMsg: null, rejectMsg: '设备查询失败!!!'}
440
+ )
440
441
 
441
442
  Vue.set(this.userfile, 'devicesinfo', res.data)
442
443