Blame view

src/views/ywbl/ywsq/javascript/cfdj.js 1.79 KB
1 2 3
/*
 * @Description: 
 * @Autor: renchao
4
 * @LastEditTime: 2023-07-14 16:59:26
5
 */
jiaozeping@pashanhoo.com committed
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',
任超 committed
20 21
        label: '全选',
        selectable: this.selected
jiaozeping@pashanhoo.com committed
22 23 24 25
      },
      {
        label: '序号',
        type: 'index',
任超 committed
26 27 28 29 30 31 32 33
        width: '50',
        render: (h, scope) => {
          return (
            <div>
              {(vm.pageData.currentPage - 1) * vm.pageData.pageSize + scope.$index + 1}
            </div>
          )
        }
jiaozeping@pashanhoo.com committed
34 35 36 37
      },
      {
        prop: "status",
        label: "状态",
38 39 40
        render: (h, scope) => {
          return (
            <div>
41 42
              <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
              <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
43 44 45
            </div>
          )
        }
jiaozeping@pashanhoo.com committed
46 47
      },
      {
田浩浩 committed
48 49
        prop: "ywh",
        label: "业务号",
jiaozeping@pashanhoo.com committed
50 51 52 53
      },
      {
        prop: "bdcdyh",
        label: "不动产单元号",
54
        minWidth: '150'
jiaozeping@pashanhoo.com committed
55 56
      },
      {
田浩浩 committed
57 58
        prop: "cfjg",
        label: "查封机关",
jiaozeping@pashanhoo.com committed
59 60
      },
      {
61 62 63 64
        prop: "cflxmc",
        label: "查封类型",
      },
      {
田浩浩 committed
65 66
        prop: "cfwh",
        label: "查封文号",
jiaozeping@pashanhoo.com committed
67 68
      },
      {
蔡俊立 committed
69
        prop: "qlrmc",
田浩浩 committed
70
        label: "被执行权利人",
jiaozeping@pashanhoo.com committed
71 72
      },
      {
田浩浩 committed
73 74
        prop: "cfqssj",
        label: "查封起始时间",
75
        width: '140'
任超 committed
76 77
      },
      {
田浩浩 committed
78 79
        prop: "cfjssj",
        label: "查封结束时间",
80
        width: '140'
jiaozeping@pashanhoo.com committed
81 82 83 84
      },
      {
        prop: "zl",
        label: "坐落",
85
        minWidth: '130'
任超 committed
86
      }
jiaozeping@pashanhoo.com committed
87 88 89 90 91 92 93 94
    ]
  }


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