Commit 157af0db authored by yht15023815643's avatar yht15023815643

修改

parent feae2406
......@@ -582,15 +582,9 @@
},
computed: {
checkJskBidQueryDto() {
let arr = [];
let flag = false;
let data = {};
let arr = [];
let flag = false;
let data = {};
if (this.domicile.length > 0) {
data = {
title: "行政区划:",
......@@ -649,9 +643,9 @@
for (var i in arr) {
if (arr[i].parent) {
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 && 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);
}
} else {
......
......@@ -135,6 +135,16 @@
<el-table-column prop="isUsedCapital" label="是否资本金" width="200" :formatter="formatStatus"/>
</el-table>
</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>
</template>
......@@ -166,6 +176,10 @@ export default {
this.getData()
})
},
handleCurrentChange(pageNum) {
this.pageIndex = pageNum;
this.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:this.details.specialBondUuid}
......@@ -210,6 +224,12 @@ export default {
background: #FFFFFF;
padding: 16px;
border-radius: 4px;
.pagination{
padding: 14px ;
.el-pagination{
float: right ;
}
}
}
.common-title{
margin-bottom: 8px;
......
......@@ -364,6 +364,7 @@ export default {
this.addressListfn();
this.search();
this.getComdtion();
this.getImportantSelect();
},
methods: {
getComdtion(){
......
......@@ -14,7 +14,7 @@
</div>
</div>
<div class="content_item ">
<div class="label">项目主体</div>
<div class="label">项目当事人</div>
<div class="content_right">
<div class="item_ckquery_list" >
<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