import Ember from 'ember'; import BaseListRoute from './../base-list'; export default BaseListRoute.extend({ breadcrumbs: [{text: 'Customer Application'}], // model(params) { // return this.get('store').ajaxGet('customer-property/app-list', params); // } actions: { showContent(app) { this.get('dialog').dialog({ title: app.name, message: `
${app.content}
`, buttons: { ok: { label: 'OK', className: 'btn-info' } } }); } } });