|
@@ -491,6 +491,7 @@ export default defineComponent({
|
|
|
onUpdate:model-value={(text: string) => (state.search = text)}
|
|
|
showAction
|
|
|
onSearch={this.onSearch}
|
|
|
+ // @ts-ignore
|
|
|
vSlots={{
|
|
|
'left-icon': () => (
|
|
|
<img class={styles.iconSearch} src={iconSearch} />
|
|
@@ -536,6 +537,7 @@ export default defineComponent({
|
|
|
onLoad={() => {
|
|
|
if (!this.firstLoading) this.FetchList();
|
|
|
}}
|
|
|
+ // @ts-ignore
|
|
|
vSlots={{
|
|
|
error: () => (
|
|
|
<span onClick={this.FetchList}>加载失败,请点击重试</span>
|
|
@@ -547,6 +549,7 @@ export default defineComponent({
|
|
|
style={{ display: item.id ? '' : 'none' }}
|
|
|
size="large"
|
|
|
onClick={() => this.toDetail(item)}
|
|
|
+ // @ts-ignore
|
|
|
vSlots={{
|
|
|
icon: () => (
|
|
|
<div class={styles['icon-status']}>
|