优化网站导航模块

This commit is contained in:
2024-08-23 22:28:24 +08:00
parent 1d81fa9270
commit 13832d9de0
964 changed files with 90774 additions and 31362 deletions

View File

@@ -0,0 +1,35 @@
import type { PageParam } from '@/api';
/**
*
*/
export interface ThinkCarousel {
//
id?: number;
// 轮播图标题
title?: string;
// 轮播图
img?: string;
// 轮播图链接
link?: string;
// 小程序APPID
appid?: string;
// 排序
sort?: number;
// 1显示2不显示
status?: string;
// 类型1资讯2商城3小程序
type?: string;
//
createTime?: number;
//
updateTime?: number;
}
/**
* 搜索条件
*/
export interface ThinkCarouselParam extends PageParam {
id?: number;
keywords?: string;
}