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.
|
|
|
import {detailsType} from './tips'
|
|
|
|
export interface tiplistType extends detailsType{
|
|
|
|
/** 弹窗的类型
|
|
|
|
* 1.文本输入框类型
|
|
|
|
* 2.数组列表展示类型
|
|
|
|
* 3.上传图片+输入框
|
|
|
|
* */
|
|
|
|
tipstate:number;
|
|
|
|
/** 输入框提示文本
|
|
|
|
* */
|
|
|
|
placeholder:string;
|
|
|
|
/** 显示的数组下标
|
|
|
|
* */
|
|
|
|
list:string[];
|
|
|
|
/** 选中的数组下标
|
|
|
|
* */
|
|
|
|
checklist:number[];
|
|
|
|
/** 输入的文本
|
|
|
|
* */
|
|
|
|
inputtext:string;
|
|
|
|
/** 是否单选
|
|
|
|
* */
|
|
|
|
isonecheck:boolean;
|
|
|
|
/** 图片数组
|
|
|
|
* */
|
|
|
|
imglist:string[];
|
|
|
|
/** 图片长度
|
|
|
|
* */
|
|
|
|
maximglength:number;
|
|
|
|
}
|