林权转移变更注销数据列修改
Showing
2 changed files
with
115 additions
and
2 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-10 16:30:18 | 4 | * @LastEditTime: 2023-08-29 08:52:44 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -58,7 +58,7 @@ | ... | @@ -58,7 +58,7 @@ |
58 | import { ywPopupDialog } from "@/utils/popup.js"; | 58 | import { ywPopupDialog } from "@/utils/popup.js"; |
59 | import { selectLq } from "@/api/ywsq.js"; | 59 | import { selectLq } from "@/api/ywsq.js"; |
60 | import { startBusinessFlow } from "@/api/workFlow.js"; | 60 | import { startBusinessFlow } from "@/api/workFlow.js"; |
61 | import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; | 61 | import { datas, sendThis } from "../javascript/selectQjlqxx.js"; |
62 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 62 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
63 | export default { | 63 | export default { |
64 | mixins: [table, jump], | 64 | mixins: [table, jump], | ... | ... |
1 | /* | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-08-29 09:05:44 | ||
5 | */ | ||
6 | import filter from '@/utils/filter.js' | ||
7 | let vm = null | ||
8 | |||
9 | const sendThis = (_this) => { | ||
10 | vm = _this | ||
11 | } | ||
12 | class data extends filter { | ||
13 | constructor() { | ||
14 | super() | ||
15 | } | ||
16 | columns () { | ||
17 | return [ | ||
18 | { | ||
19 | type: 'selection', | ||
20 | label: '全选', | ||
21 | selectable: this.selected | ||
22 | }, | ||
23 | { | ||
24 | label: '序号', | ||
25 | type: 'index', | ||
26 | width: '50', | ||
27 | render: (h, scope) => { | ||
28 | return ( | ||
29 | <div> | ||
30 | {(vm.pageData.currentPage - 1) * vm.pageData.pageSize + scope.$index + 1} | ||
31 | </div> | ||
32 | ) | ||
33 | } | ||
34 | }, | ||
35 | { | ||
36 | label: "状态", | ||
37 | width: '130', | ||
38 | render: (h, scope) => { | ||
39 | return ( | ||
40 | <div> | ||
41 | <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a> | ||
42 | <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span> | ||
43 | </div> | ||
44 | ) | ||
45 | } | ||
46 | }, | ||
47 | { | ||
48 | prop: "qllxmc", | ||
49 | label: "权利类型", | ||
50 | }, | ||
51 | { | ||
52 | prop: "bdcdyh", | ||
53 | label: "不动产单元号", | ||
54 | minWidth: '150' | ||
55 | }, | ||
56 | { | ||
57 | prop: "bdcqzh", | ||
58 | label: "不动产权证号", | ||
59 | render: (h, scope) => { | ||
60 | return ( | ||
61 | <el-tooltip effect="dark" content={scope.row.bdcqzh} placement="top" popper-class="tooltip-width "> | ||
62 | <span class="ellipsis-table"> {scope.row.bdcqzh}</span> | ||
63 | </el-tooltip> | ||
64 | ) | ||
65 | }, | ||
66 | width: '150' | ||
67 | }, | ||
68 | { | ||
69 | prop: "gyqk", | ||
70 | label: "共有方式", | ||
71 | }, | ||
72 | { | ||
73 | prop: "qlrmc", | ||
74 | label: "使用权人", | ||
75 | }, | ||
76 | { | ||
77 | prop: "qlrzjhm", | ||
78 | label: "证件号", | ||
79 | }, | ||
80 | { | ||
81 | prop: "qlxzmc", | ||
82 | width: '80', | ||
83 | label: "权利性质", | ||
84 | }, | ||
85 | { | ||
86 | prop: "qlmjmc", | ||
87 | width: '100', | ||
88 | label: "使用权面积", | ||
89 | }, | ||
90 | { | ||
91 | prop: "qlytmc", | ||
92 | label: "土地用途", | ||
93 | }, | ||
94 | { | ||
95 | prop: "qdjgmc", | ||
96 | width: '100', | ||
97 | label: "取得价格", | ||
98 | }, | ||
99 | { | ||
100 | prop: "zl", | ||
101 | label: "坐落", | ||
102 | minWidth: '150' | ||
103 | }, | ||
104 | ] | ||
105 | } | ||
106 | |||
107 | |||
108 | } | ||
109 | let datas = new data() | ||
110 | export { | ||
111 | datas, | ||
112 | sendThis | ||
113 | } |
-
Please register or sign in to post a comment