import { Http,Util,Errorlog } from '@/utils'; import ControlService from '@/widgets/control-service'; import IBIZOrderService from '@/service/ibizorder/ibizorder-service'; import TabExpViewtabexppanelModel from './tab-exp-viewtabexppanel-tabexppanel-model'; /** * TabExpViewtabexppanel 部件服务对象 * * @export * @class TabExpViewtabexppanelService */ export default class TabExpViewtabexppanelService extends ControlService { /** * 订单服务对象 * * @type {IBIZOrderService} * @memberof TabExpViewtabexppanelService */ public appEntityService: IBIZOrderService = new IBIZOrderService(); /** * 设置从数据模式 * * @type {boolean} * @memberof TabExpViewtabexppanelService */ public setTempMode(){ this.isTempMode = false; } /** * Creates an instance of TabExpViewtabexppanelService. * * @param {*} [opts={}] * @memberof TabExpViewtabexppanelService */ constructor(opts: any = {}) { super(opts); this.model = new TabExpViewtabexppanelModel(); } }