123
Showing
1 changed file
with
0 additions
and
74 deletions
src/views/ywbl/ywsq/ywsqdata.js
deleted
100644 → 0
1 | import filter from '@/utils/filter.js' | ||
2 | let vm = null | ||
3 | |||
4 | const sendThis = (_this) => { | ||
5 | vm = _this | ||
6 | } | ||
7 | class data extends filter { | ||
8 | constructor() { | ||
9 | super() | ||
10 | } | ||
11 | columns () { | ||
12 | return [ | ||
13 | { | ||
14 | type: 'selection', | ||
15 | label: '全选' | ||
16 | }, | ||
17 | { | ||
18 | label: '序号', | ||
19 | type: 'index', | ||
20 | width: '50', | ||
21 | render: (h, scope) => { | ||
22 | return ( | ||
23 | <div> | ||
24 | {(vm.pageData.currentPage - 1) * vm.pageData.pageSize + scope.$index + 1} | ||
25 | </div> | ||
26 | ) | ||
27 | } | ||
28 | }, | ||
29 | { | ||
30 | prop: "status", | ||
31 | label: "状态", | ||
32 | }, | ||
33 | { | ||
34 | prop: "qllx", | ||
35 | label: "权利类型", | ||
36 | }, | ||
37 | { | ||
38 | prop: "zddm", | ||
39 | label: "宗地代码", | ||
40 | }, | ||
41 | { | ||
42 | prop: "bdcdyh", | ||
43 | label: "不动产单元号", | ||
44 | }, | ||
45 | { | ||
46 | prop: "qlxz", | ||
47 | label: "权利性质", | ||
48 | }, | ||
49 | { | ||
50 | prop: "zdmj", | ||
51 | label: "宗地面积", | ||
52 | }, | ||
53 | { | ||
54 | prop: "qlsdfs", | ||
55 | label: "权利设定方式", | ||
56 | }, | ||
57 | { | ||
58 | prop: "tdyt", | ||
59 | label: "土地用途", | ||
60 | }, | ||
61 | { | ||
62 | prop: "zl", | ||
63 | label: "坐落", | ||
64 | }, | ||
65 | ] | ||
66 | } | ||
67 | |||
68 | |||
69 | } | ||
70 | let datas = new data() | ||
71 | export { | ||
72 | datas, | ||
73 | sendThis | ||
74 | } |
-
Please register or sign in to post a comment