Merge branch 'master' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web
Showing
1 changed file
with
13 additions
and
11 deletions
... | @@ -44,7 +44,7 @@ | ... | @@ -44,7 +44,7 @@ |
44 | <lb-table ref="table" @row-dblclick="handleRowClick" :pagination = false :page-size="pageData.pageSize" :calcHeight="300" | 44 | <lb-table ref="table" @row-dblclick="handleRowClick" :pagination = false :page-size="pageData.pageSize" :calcHeight="300" |
45 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | 45 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" |
46 | @p-current-change="handleCurrentChange" :column="tableData.columns" | 46 | @p-current-change="handleCurrentChange" :column="tableData.columns" |
47 | :data="tableData.data"> | 47 | :data="tableData.data" heightNumSetting :maxHeight="350" :minHeight="350" > |
48 | </lb-table> | 48 | </lb-table> |
49 | </div> | 49 | </div> |
50 | <div class="from-clues-content loadingtext">分割合并后宗地信息 | 50 | <div class="from-clues-content loadingtext">分割合并后宗地信息 |
... | @@ -85,7 +85,7 @@ | ... | @@ -85,7 +85,7 @@ |
85 | render: (h, scope) => { | 85 | render: (h, scope) => { |
86 | return ( | 86 | return ( |
87 | <div class="orgColumn"> | 87 | <div class="orgColumn"> |
88 | <el-radio v-model={this.radioVal} label={scope.row.bhqkbsm}> | 88 | <el-radio v-model={this.radioVal} label={scope.row.bsmQlxx}> |
89 |   | 89 |   |
90 | </el-radio> | 90 | </el-radio> |
91 | </div> | 91 | </div> |
... | @@ -114,18 +114,19 @@ | ... | @@ -114,18 +114,19 @@ |
114 | methods: { | 114 | methods: { |
115 | // 单选事件 | 115 | // 单选事件 |
116 | close(){ | 116 | close(){ |
117 | console.log("ddddd",this.radioVal); | 117 | this.tableData.data.forEach(e => { |
118 | console.log("...this.queryForm",this.queryForm); | 118 | if(e.bsmQlxx=this.radioVal){ |
119 | this.queryForm.bhqkbsm=this.radioVal | 119 | this.queryForm.bhqkbsm=e.bhqkbsm |
120 | // delete this.queryForm.sqywbm | 120 | // 获取分割合并后宗地信息 |
121 | selectZdjbxxSplitMergeLast({ ...this.queryForm,}).then((res) => { | 121 | selectZdjbxxSplitMergeLast({ ...this.queryForm}).then((res) => { |
122 | this.$endLoading(); | 122 | this.$endLoading(); |
123 | if (res.code === 200) { | 123 | if (res.code === 200) { |
124 | let { total, records } = res.result; | 124 | this.tableData.datastwo = res.result; |
125 | this.tableData.total = total; | 125 | } |
126 | this.tableData.datastwo = [...res.result,...res.result]; | 126 | }); |
127 | } | 127 | } |
128 | }); | 128 | }); |
129 | |||
129 | }, | 130 | }, |
130 | queryClick () { | 131 | queryClick () { |
131 | this.$startLoading(); | 132 | this.$startLoading(); |
... | @@ -135,7 +136,7 @@ | ... | @@ -135,7 +136,7 @@ |
135 | if (res.code === 200) { | 136 | if (res.code === 200) { |
136 | let { total, records } = res.result; | 137 | let { total, records } = res.result; |
137 | this.tableData.total = total; | 138 | this.tableData.total = total; |
138 | this.tableData.data = [...res.result,...res.result]; | 139 | this.tableData.data = res.result; |
139 | } | 140 | } |
140 | }); | 141 | }); |
141 | }, | 142 | }, |
... | @@ -170,6 +171,7 @@ | ... | @@ -170,6 +171,7 @@ |
170 | val.forEach((item, index) => { | 171 | val.forEach((item, index) => { |
171 | item.bsmSsql = item.bsmQlxx; | 172 | item.bsmSsql = item.bsmQlxx; |
172 | item.ybdcqzsh = item.bdcqzh; | 173 | item.ybdcqzsh = item.bdcqzh; |
174 | item.bglx="1"; | ||
173 | }); | 175 | }); |
174 | this.bdcdysz = val; | 176 | this.bdcdysz = val; |
175 | }, | 177 | }, | ... | ... |
-
Please register or sign in to post a comment