|
|
|
@ -86,6 +86,7 @@
|
|
|
|
|
</el-table>
|
|
|
|
|
<el-pagination
|
|
|
|
|
:page-size="filterQuery.limit"
|
|
|
|
|
:current-page.sync="filterQuery.page"
|
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
:total="total"
|
|
|
|
@ -186,6 +187,7 @@
|
|
|
|
|
</el-table>
|
|
|
|
|
<el-pagination
|
|
|
|
|
:page-size="filterManufacturerQuery.limit"
|
|
|
|
|
:current-page.sync="filterManufacturerQuery.page"
|
|
|
|
|
@current-change="handleManuChange"
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
:total="manufacturerTotal"
|
|
|
|
@ -291,6 +293,7 @@
|
|
|
|
|
</el-table>
|
|
|
|
|
<el-pagination
|
|
|
|
|
:page-size="registrationQuery.limit"
|
|
|
|
|
:current-page.sync="registrationQuery.page"
|
|
|
|
|
@current-change="certHandleCurrentChange"
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
:total="certTotal"
|
|
|
|
@ -552,7 +555,7 @@ export default {
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.manufacturerLoading = false;
|
|
|
|
|
this.manufacturerList = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
this.manufacturerTotal = response.data.total || 0;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.manufacturerLoading = false;
|
|
|
|
@ -574,10 +577,15 @@ export default {
|
|
|
|
|
this.addInfoVisible = true;
|
|
|
|
|
},
|
|
|
|
|
closeManufacturerDialog(type) {
|
|
|
|
|
|
|
|
|
|
if(type==true){
|
|
|
|
|
this.addInfoVisible = false;
|
|
|
|
|
this.enterpriseId = null;
|
|
|
|
|
this.manufacturerList = [];
|
|
|
|
|
this.getManufacturerList();
|
|
|
|
|
}else{
|
|
|
|
|
this.getManufacturerList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
handleManuChange(val) {
|
|
|
|
@ -638,6 +646,8 @@ export default {
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.registrationLoading = false;
|
|
|
|
|
this.registrationList = response.data.list || [];
|
|
|
|
|
this.certTotal= response.data.total
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.registrationLoading = false;
|
|
|
|
@ -646,7 +656,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
certHandleCurrentChange(val) {
|
|
|
|
|
this.registrationQuery.page = val;
|
|
|
|
|
this.registrationList();
|
|
|
|
|
this.getRegistrationList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|