Blame view

src/views/system/validationRule/data/index.js 400 Bytes
任超 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
import filter from '@/utils/filter.js'
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        prop: "DATATABLE",
        label: "数据表名"
      },
      {
        prop: "CHINESETABLE",
        label: "中文名称"
      },
      {
        prop: "SOLEURL",
        label: "tab表头链接标识",
      },
    ]
  }
}
export default new data()