|
@@ -28,7 +28,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" width="160px" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button size="mini" type="primary" @click="dialogCheck(2,scope.row)" v-if="!scope.row.areaDutyNme">查看</el-button>
|
|
|
+ <el-button size="mini" type="primary" @click="dialogCheck(2,scope.row,1)" v-if="!scope.row.areaDutyNme">查看</el-button>
|
|
|
<el-button size="mini" type="danger">催办</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -37,6 +37,7 @@
|
|
|
:total="total">
|
|
|
</el-pagination>
|
|
|
</div>
|
|
|
+
|
|
|
</div>
|
|
|
</fullscreen>
|
|
|
|
|
@@ -80,6 +81,7 @@
|
|
|
loading:false,
|
|
|
loadinged:false,
|
|
|
companyFlag:'',
|
|
|
+ secParams:{}
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -140,16 +142,18 @@
|
|
|
// 分页
|
|
|
currchange(v) {
|
|
|
this.pageSize = v;
|
|
|
- this.getList(this.params, this.pageSize);
|
|
|
+ // this.getList(this.params, this.pageSize);
|
|
|
+ this.dialogCheck(2, this.secParams, this.pageSize);
|
|
|
},
|
|
|
//申请
|
|
|
- dialogCheck(v, n) {
|
|
|
+ dialogCheck(v, n, page) {
|
|
|
+ this.secParams = n
|
|
|
this.$http({
|
|
|
url: '/market/cMemberWo/queryProgressByAreaPage',
|
|
|
method: "post",
|
|
|
headers: {
|
|
|
"Content-Type": "application/json",
|
|
|
- "page": '{"pageNo":"' + 1 + '","pageSize":"10"}'
|
|
|
+ "page": '{"pageNo":"' + page + '","pageSize":"10"}'
|
|
|
},
|
|
|
data: {regionName:n.regionName},
|
|
|
}).then((res) => {
|