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; /** 选中的长度 * */ checklength:number }