index.js 895 Bytes
import filter from '@/utils/filter.js'
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        prop: "xzqdm",
        label: "行政区代码",
      },
      {
        prop: "bdcdyh",
        label: "不动产单元号",
      },
      {
        prop: "xzqmc",
        label: "行政区名称",
      },
      {
        prop: "ywbm",
        label: "业务编码",
      },
      {
        prop: "sbsj",
        label: "上报时间",
      },
      {
        prop: 'sbjg',
        label: '上报结果',
        render: (h, scope) => {
          return (
            <div>
              {
                scope.row.sbjg
                  ? <el-tag type='success'>通过</el-tag>
                  : <el-tag type='primary'>通过1</el-tag>
              }
            </div>
          )
        }
      },
    ]
  }
}
export default new data()