在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:ng-x-table开源软件地址:https://gitee.com/xujz520/ng-x-table开源软件介绍:ng-x-table概述
文档与示例https://xujz520.gitee.io/ng-easy-mock/x-table/浏览器环境
安装npm i @ng-dms/x-table --save 如何使用导入模块在根模块 import { BrowserModule } from '@angular/platform-browser';import { BrowserAnimationsModule } from '@angular/platform-browser/animations';import { HttpClientModule } from '@angular/common/http';import { SharedModule } from './shared/shared.module';@NgModule({ declarations: [AppComponent], imports: [ BrowserModule, BrowserAnimationsModule, HttpClientModule, SharedModule, ], bootstrap: [AppComponent]})export class AppModule { } 在业务级模块 或 import { XTableModule } from '@ng-dms/x-table';@NgModule({ declarations: [], imports: [ SharedModule ]})export class SharedModule { } 组件代码import { Component, OnInit } from '@angular/core';import { XTableColumns } from '@ng-dms/x-table';@Component({ selector: 'x-table-base', template: ` <x-table [columns]="columns" [xData]="rows"></x-table> `, styles: []})export class XTableBaseComponent implements OnInit { columns: XTableColumns = [ { title: '学号', field: 'no' }, { title: '姓名', field: 'name' }, { title: '性别', field: 'sex' }, { title: '年龄', field: 'age' }, { title: '学院', field: 'college' }, { title: '专业', field: 'major' }, { title: '班级', field: 'class' }, ]; rows = [ { "id": 1, "no": 7107320614, "name": "黎勇", "sex": 0, "age": 28, "college": "外语外贸学院", "major": "国际邮轮乘务管理", "class": 1 }, { "id": 2, "no": 7107320615, "name": "黎秀兰", "sex": 1, "age": 26, "college": "外语外贸学院", "major": "国际贸易实务", "class": 1 }, { "id": 3, "no": 7107320616, "name": "董霞", "sex": 0, "age": 26, "college": "外语外贸学院", "major": "国际贸易实务", "class": 2 }, { "id": 4, "no": 7107320617, "name": "梁磊", "sex": 0, "age": 21, "college": "土木工程学院", "major": "建筑工程技术", "class": 1 }, { "id": 5, "no": 7107320618, "name": "潘娟", "sex": 0, "age": 24, "college": "外语外贸学院", "major": "国际邮轮乘务管理", "class": 1 } ]; constructor() { } ngOnInit() { }} |
请发表评论