货无忧
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.

73 lines
1.3 KiB

import { detailsType } from './tips'
interface inpListItem {
/**
*/
title : string,
/**
*/
placeholder ?: string,
/**
*/
disabled ?: boolean,
/**
*/
type ?: string,
/**
*/
value : any,
/**
*/
minNum ?: number,
/**
*/
maxNum ?: number,
}
export interface tiplistType extends detailsType {
2 years ago
/**
* 1.
* 2.
* 3.+
2 years ago
* */
tipstate : number;
1 year ago
/**
2 years ago
* */
placeholder : string;
2 years ago
/**
* */
list : string[];
2 years ago
/**
* */
checklist : number[];
2 years ago
/**
* */
inputtext : string;
2 years ago
/**
* */
isonecheck : boolean;
2 years ago
/**
* */
imglist : string[];
2 years ago
/**
* */
maximglength : number;
/**
* */
checklength : number,
/**
* */
isChange : boolean,
/**
* */
changeImageList : string[],
/**
* */
ImagesRequiredFields : {}[],
/**
* */
showPreviewPicture : boolean,
/**
* */
inpList : inpListItem[];
2 years ago
}