apply-clients 3.4.88-99 → 3.4.89-1
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
|
@@ -15,15 +15,16 @@
|
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
ready () {
|
|
18
|
+
this.searchshow()
|
|
18
19
|
},
|
|
19
20
|
methods: {
|
|
20
|
-
searchshow () {
|
|
21
|
+
async searchshow () {
|
|
21
22
|
let data = {
|
|
22
23
|
tablename: 't_backcause',
|
|
23
24
|
condition: `actid = '${this.selectdata.actid}' and f_process_id = '${this.selectdata.f_process_id}'`
|
|
24
25
|
}
|
|
25
|
-
let http =
|
|
26
|
-
http.load('POST', 'rs/sql/apply_singleTable', {data: data}, {resolveMsg: null, rejectMsg: '退回原因查询失败!!!'}).then(res => {
|
|
26
|
+
let http = new HttpResetClass()
|
|
27
|
+
await http.load('POST', 'rs/sql/apply_singleTable', {data: data}, {resolveMsg: null, rejectMsg: '退回原因查询失败!!!'}).then(res => {
|
|
27
28
|
if (res.data.length > 0) {
|
|
28
29
|
this.data = res.data[0]
|
|
29
30
|
}
|