import { Injectable } from '@angular/core'; @Injectable() export class NaMessageService { success(content: string, options?: any): any { throw new Error(`请导入NaMessageService实现类, 错误信息: ${content}`); } error(content: string, options?: any): any { throw new Error(`请导入NaMessageService实现类, 错误信息: ${content}`); } info(content: string, options?: any): any { throw new Error(`请导入NaMessageService实现类, 错误信息: ${content}`); } warning(content: string, options?: any): any { throw new Error(`请导入NaMessageService实现类, 错误信息: ${content}`); } loading(content: string, options?: any): any { throw new Error(`请导入NaMessageService实现类, 错误信息: ${content}`); } hide(): void { } }