|  |  |  | 
|---|
|  |  |  | <template> | 
|---|
|  |  |  | <ProDialog title="余额明细" v-model="visible" destroy-on-close draggable> | 
|---|
|  |  |  | <ProDialog title="余额明细" v-model="visible" destroy-on-close draggable width="1200px"> | 
|---|
|  |  |  | <ProDialogTableWrapper :height="500"> | 
|---|
|  |  |  | <ProTableQueryFilterBar @on-reset="reset"> | 
|---|
|  |  |  | <template #query> | 
|---|
|  |  |  | 
|---|
|  |  |  | clearable | 
|---|
|  |  |  | filterable | 
|---|
|  |  |  | placeholder="交易类型" | 
|---|
|  |  |  | @change="getList()" | 
|---|
|  |  |  | /> | 
|---|
|  |  |  | </QueryFilterItem> | 
|---|
|  |  |  | <QueryFilterItem tip-content="查询日期"> | 
|---|
|  |  |  | 
|---|
|  |  |  | () => visible.value, | 
|---|
|  |  |  | (value) => { | 
|---|
|  |  |  | if (value) { | 
|---|
|  |  |  | extraParamState.type = '' as any as EnumUserWalletTransactionType; | 
|---|
|  |  |  | extraParamState.creationTime = [] as unknown as ModelValueType; | 
|---|
|  |  |  | getList(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|