Blame view

src/views/system/roles/data/roles.js 404 Bytes
xiaomiao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
import filter from '@/utils/filter.js'
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        prop: "name",
        label: "角色名称",
        width: 330
      },
      {
        prop: "type",
        label: "类别",
        width: 400
      },
      {
        prop: "address",
        label: "备注"
      }
    ]
  }
}
export default new data()