ng-yunzai-mobile
Version:
1. 修改wechat.micro.ts
16 lines (15 loc) • 442 B
TypeScript
export interface NavigationBar {
showMenu: boolean;
shareFlag: boolean;
items: Array<MyNavigationBar>;
onClick: (clickId: string) => void;
success?: (msg: string) => void;
fial?: (err: string) => void;
complete?: (msg: string) => void;
}
export interface MyNavigationBar {
type: string;
title: string;
icon: 'add' | 'edit' | 'delete' | 'search' | 'done' | 'send';
clickId: string;
}