Blame view

src/views/system/dymbgl/dymbgl.js 1.19 KB
1 2 3 4 5
/*
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-04-12 08:58:29
 */
任超 committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
import filter from '@/utils/filter.js'
let vm = null

const sendThis = (_this) => {
  vm = _this
}
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        label: '序号',
        type: 'index',
        width: '50',
        render: (h, scope) => {
          return (
            <div>
              {(vm.pageData.currentPage - 1) * vm.pageData.pageSize + scope.$index + 1}
            </div>
          )
        }
      },
      {
蔡俊立 committed
31
        prop: "tmpno",
任超 committed
32 33 34
        label: "模板编码",
      },
      {
蔡俊立 committed
35 36
        prop: "tmpname",
        label: "模板名称",
任超 committed
37 38
      },
      {
蔡俊立 committed
39
        prop: "updatetime",
任超 committed
40 41 42
        label: "最近操作时间",
      },
      {
蔡俊立 committed
43
        prop: "updater",
任超 committed
44 45 46 47 48
        label: "最近操作人",
      },
      {
        label: '操作',
        align: 'center',
49
        width: '80',
任超 committed
50 51
        render: (h, scope) => {
          return (
52
            <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openEditDialog(scope.row) }}>编辑</el-button>
任超 committed
53 54 55 56 57 58 59 60 61 62 63
          )
        }
      }
    ]
  }
}
let datas = new data()
export {
  datas,
  sendThis
}