Commit 157af0db authored by yht15023815643's avatar yht15023815643

修改

parent feae2406
...@@ -582,15 +582,9 @@ ...@@ -582,15 +582,9 @@
}, },
computed: { computed: {
checkJskBidQueryDto() { checkJskBidQueryDto() {
let arr = []; let arr = [];
let flag = false; let flag = false;
let data = {}; let data = {};
if (this.domicile.length > 0) { if (this.domicile.length > 0) {
data = { data = {
title: "行政区划:", title: "行政区划:",
...@@ -649,9 +643,9 @@ ...@@ -649,9 +643,9 @@
for (var i in arr) { for (var i in arr) {
if (arr[i].parent) { if (arr[i].parent) {
if (!arr[i].parent.checked) { if (!arr[i].parent.checked) {
arr[i].hasChildren && cityIds.push(arr[i].value); arr[i].hasChildren && cityIds.push(arr[i].value)&&provinceIds.push(arr[i].parent.value);
arr[i].hasChildren && this.domicile.push(arr[i].label); arr[i].hasChildren && this.domicile.push(arr[i].label);
!arr[i].hasChildren && areaIds.push(arr[i].value); !arr[i].hasChildren && areaIds.push(arr[i].value)&& cityIds.push(arr[i].parent.value)&&provinceIds.push(arr[i].parent.parent.value);
!arr[i].hasChildren && this.domicile.push(arr[i].label); !arr[i].hasChildren && this.domicile.push(arr[i].label);
} }
} else { } else {
......
...@@ -135,6 +135,16 @@ ...@@ -135,6 +135,16 @@
<el-table-column prop="isUsedCapital" label="是否资本金" width="200" :formatter="formatStatus"/> <el-table-column prop="isUsedCapital" label="是否资本金" width="200" :formatter="formatStatus"/>
</el-table> </el-table>
</div> </div>
<div class="pagination clearfix" v-show="tableDataTotal>0">
<el-pagination
background
:page-size="pageSize"
:current-page="pageIndex"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="tableDataTotal">
</el-pagination>
</div>
</div> </div>
</div> </div>
</template> </template>
...@@ -166,6 +176,10 @@ export default { ...@@ -166,6 +176,10 @@ export default {
this.getData() this.getData()
}) })
}, },
handleCurrentChange(pageNum) {
this.pageIndex = pageNum;
this.getData();
},
getData(){ getData(){
// const params = { pageNum: this.pageIndex, pageSize: this.pageSize,specialBondUuid:'2e59fca0-21a6-47db-975d-5481e1c52f45_74'} // const params = { pageNum: this.pageIndex, pageSize: this.pageSize,specialBondUuid:'2e59fca0-21a6-47db-975d-5481e1c52f45_74'}
const params = { pageNum: this.pageIndex, pageSize: this.pageSize,specialBondUuid:this.details.specialBondUuid} const params = { pageNum: this.pageIndex, pageSize: this.pageSize,specialBondUuid:this.details.specialBondUuid}
...@@ -210,6 +224,12 @@ export default { ...@@ -210,6 +224,12 @@ export default {
background: #FFFFFF; background: #FFFFFF;
padding: 16px; padding: 16px;
border-radius: 4px; border-radius: 4px;
.pagination{
padding: 14px ;
.el-pagination{
float: right ;
}
}
} }
.common-title{ .common-title{
margin-bottom: 8px; margin-bottom: 8px;
......
...@@ -364,6 +364,7 @@ export default { ...@@ -364,6 +364,7 @@ export default {
this.addressListfn(); this.addressListfn();
this.search(); this.search();
this.getComdtion(); this.getComdtion();
this.getImportantSelect();
}, },
methods: { methods: {
getComdtion(){ getComdtion(){
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</div> </div>
</div> </div>
<div class="content_item "> <div class="content_item ">
<div class="label">项目主体</div> <div class="label">项目当事人</div>
<div class="content_right"> <div class="content_right">
<div class="item_ckquery_list" > <div class="item_ckquery_list" >
<div class="ckquery_list_right"> <div class="ckquery_list_right">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment