Blame view

src/views/ywbl/ywsq/javascript/cfdj.js 1.22 KB
jiaozeping@pashanhoo.com committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import filter from '@/utils/filter.js'
let vm = null

const sendThis = (_this) => {
  vm = _this
}
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        type: 'selection',
        label: '全选'
      },
      {
        label: '序号',
        type: 'index',
任超 committed
20 21 22 23 24 25 26 27
        width: '50',
        render: (h, scope) => {
          return (
            <div>
              {(vm.pageData.currentPage - 1) * vm.pageData.pageSize + scope.$index + 1}
            </div>
          )
        }
jiaozeping@pashanhoo.com committed
28 29 30 31 32 33
      },
      {
        prop: "status",
        label: "状态",
      },
      {
田浩浩 committed
34 35
        prop: "ywh",
        label: "业务号",
jiaozeping@pashanhoo.com committed
36 37 38 39 40 41
      },
      {
        prop: "bdcdyh",
        label: "不动产单元号",
      },
      {
田浩浩 committed
42 43
        prop: "cfjg",
        label: "查封机关",
jiaozeping@pashanhoo.com committed
44 45
      },
      {
田浩浩 committed
46 47
        prop: "cfwh",
        label: "查封文号",
jiaozeping@pashanhoo.com committed
48 49
      },
      {
蔡俊立 committed
50
        prop: "qlrmc",
田浩浩 committed
51
        label: "被执行权利人",
jiaozeping@pashanhoo.com committed
52 53
      },
      {
田浩浩 committed
54 55
        prop: "cfqssj",
        label: "查封起始时间",
任超 committed
56 57
      },
      {
田浩浩 committed
58 59
        prop: "cfjssj",
        label: "查封结束时间",
jiaozeping@pashanhoo.com committed
60 61 62 63
      },
      {
        prop: "zl",
        label: "坐落",
任超 committed
64
      }
jiaozeping@pashanhoo.com committed
65 66 67 68 69 70 71 72
    ]
  }


}
let datas = new data()
export {
  datas,
任超 committed
73
  sendThis
jiaozeping@pashanhoo.com committed
74
}