Commit ddf0e6f 1 parent bcd558a commit ddf0e6f Copy full SHA for ddf0e6f
File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -484,7 +484,7 @@ const requestHandle = async () => {
484
484
} else {
485
485
console.error(`ma-crud error:crud.api not is Function.`)
486
486
}
487
- isFunction(options.value.afterRequest) && options.value.afterRequest(tableData.value)
487
+ isFunction(options.value.afterRequest) && (tableData.value = options.value.afterRequest(tableData.value) )
488
488
loading.value = false
489
489
}
490
490
Original file line number Diff line number Diff line change 36
36
@focus="rv('onFocus')"
37
37
@blur="rv('onBlur')"
38
38
>
39
+ <template #prepend v-if="props.component.openPrepend">
40
+ <slot :name="`inputPrepend-${props.component.dataIndex}`" />
41
+ </template>
42
+ <template #append v-if="props.component.openAppend">
43
+ <slot :name="`inputAppend-${props.component.dataIndex}`" />
44
+ </template>
39
45
<template #suffix v-if="props.component.openSuffix">
40
46
<slot :name="`inputSuffix-${props.component.dataIndex}`" />
41
47
</template>
You can’t perform that action at this time.
0 commit comments