vue2-client 1.15.88 → 1.15.90
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
@@ -887,7 +887,7 @@ export default {
|
|
887
887
|
if (this.attr.showQueryFormItemFunc) {
|
888
888
|
this.debouncedShowQueryFormItemFunc = debounce(this.showQueryFormItemFunc, 100)
|
889
889
|
// 执行一次
|
890
|
-
this.
|
890
|
+
this.showQueryFormItemFunc()
|
891
891
|
}
|
892
892
|
// 人员联动框增加监听
|
893
893
|
if (this?.attr?.keyName?.toString()?.startsWith('search@根据表单项[') && this?.attr?.keyName?.toString().endsWith(']联动人员')) {
|
@@ -234,7 +234,13 @@ export default {
|
|
234
234
|
workflowId: this.workflowId,
|
235
235
|
uploadDate: date
|
236
236
|
})
|
237
|
-
.then(res =>
|
237
|
+
.then(res => {
|
238
|
+
res.files = [
|
239
|
+
...(res.images || []),
|
240
|
+
...(res.files || []),
|
241
|
+
]
|
242
|
+
callback(res)
|
243
|
+
})
|
238
244
|
.catch((e) => errorCallback(e))
|
239
245
|
},
|
240
246
|
async reload () {
|