You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
749 B
46 lines
749 B
export interface tiplistType{ |
|
/** 弹窗的类型 |
|
* 1.文本输入框类型 |
|
* 2.数组列表展示类型 |
|
* */ |
|
tipstate:number; |
|
/** 标题 |
|
* */ |
|
title:string; |
|
/** 提示文字 |
|
* */ |
|
placeholder:string; |
|
/** 是否显示取消按钮 |
|
* */ |
|
isshowcancel:boolean; |
|
/** 确认按钮文字 |
|
* */ |
|
confirmTxt:string; |
|
/** 取消按钮文字 |
|
* */ |
|
cancelTxt:string; |
|
/** 确认按钮事件 |
|
* */ |
|
success:any; |
|
/** 取消按钮时间 |
|
* */ |
|
cancel:any; |
|
/** 关闭事件 |
|
* */ |
|
close:any; |
|
/** 是否显示弹窗 |
|
* */ |
|
isshow:boolean; |
|
/** 显示的数组下标 |
|
* */ |
|
list:string[]; |
|
/** 选中的数组下标 |
|
* */ |
|
checklist:number[]; |
|
/** 输入的文本 |
|
* */ |
|
inputtext:string; |
|
/** 是否单选 |
|
* */ |
|
isonecheck:boolean; |
|
} |