15 lines
343 B
JavaScript
15 lines
343 B
JavaScript
import BaseRoute from '../base';
|
|
|
|
export default BaseRoute.extend({
|
|
perm: 'PERM_VIEW_SEQUENCE_CREATE',
|
|
breadcrumbs: [{route: 'sequence.list', text: '序号列表'}, {text: '创建序号'}],
|
|
model() {
|
|
return {
|
|
active: true,
|
|
initVal: 1,
|
|
length: 4,
|
|
step: 1
|
|
};
|
|
}
|
|
});
|