|
|
@ -116,7 +116,7 @@
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<p class="form-title">生产企业资质设置</p>
|
|
|
|
<p class="form-title">生产企业资质设置</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style=" float: right;
|
|
|
|
<div style="float: right;
|
|
|
|
text-align: right;
|
|
|
|
text-align: right;
|
|
|
|
margin-bottom: 8px;"
|
|
|
|
margin-bottom: 8px;"
|
|
|
|
>
|
|
|
|
>
|
|
|
@ -160,10 +160,10 @@
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-table>
|
|
|
|
<el-pagination
|
|
|
|
<el-pagination
|
|
|
|
:page-size="query.limit"
|
|
|
|
:page-size="manufacturerQuery.limit"
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
@current-change="handleManufacturerChange"
|
|
|
|
layout="prev, pager, next"
|
|
|
|
layout="prev, pager, next"
|
|
|
|
:total="total"
|
|
|
|
:total="manufacturerTotal"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
</el-pagination>
|
|
|
|
</el-pagination>
|
|
|
|
<el-dialog
|
|
|
|
<el-dialog
|
|
|
@ -252,7 +252,7 @@
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<p class="form-title">产品资质设置</p>
|
|
|
|
<p class="form-title">产品资质设置</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style=" float: right;
|
|
|
|
<div style="float: right;
|
|
|
|
text-align: right;
|
|
|
|
text-align: right;
|
|
|
|
margin-bottom: 8px;"
|
|
|
|
margin-bottom: 8px;"
|
|
|
|
>
|
|
|
|
>
|
|
|
@ -305,10 +305,10 @@
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-table>
|
|
|
|
<el-pagination
|
|
|
|
<el-pagination
|
|
|
|
:page-size="query.limit"
|
|
|
|
:page-size="productQuery.limit"
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
@current-change="handleProductChange"
|
|
|
|
layout="prev, pager, next"
|
|
|
|
layout="prev, pager, next"
|
|
|
|
:total="total"
|
|
|
|
:total="productTotal"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
</el-pagination>
|
|
|
|
</el-pagination>
|
|
|
|
|
|
|
|
|
|
|
@ -641,6 +641,9 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
cancelDialog() {
|
|
|
|
cancelDialog() {
|
|
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
this.getManufacturerList();
|
|
|
|
|
|
|
|
this.getProductList();
|
|
|
|
this.addDialogVisible = false;
|
|
|
|
this.addDialogVisible = false;
|
|
|
|
this.addManufacturerDialogVisible = false;
|
|
|
|
this.addManufacturerDialogVisible = false;
|
|
|
|
this.addProductDialogVisible = false;
|
|
|
|
this.addProductDialogVisible = false;
|
|
|
@ -648,6 +651,10 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**--------生产企业资质设置--------------*/
|
|
|
|
/**--------生产企业资质设置--------------*/
|
|
|
|
|
|
|
|
handleManufacturerChange(val) {
|
|
|
|
|
|
|
|
this.manufacturerQuery.page = val;
|
|
|
|
|
|
|
|
this.getManufacturerList();
|
|
|
|
|
|
|
|
},
|
|
|
|
getManufacturerList() {
|
|
|
|
getManufacturerList() {
|
|
|
|
this.manufacturerLoading = true;
|
|
|
|
this.manufacturerLoading = true;
|
|
|
|
filterCertSet(this.manufacturerQuery)
|
|
|
|
filterCertSet(this.manufacturerQuery)
|
|
|
@ -720,6 +727,10 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**--------产品资质设置--------------*/
|
|
|
|
/**--------产品资质设置--------------*/
|
|
|
|
|
|
|
|
handleProductChange(val) {
|
|
|
|
|
|
|
|
this.productQuery.page = val;
|
|
|
|
|
|
|
|
this.getProductList();
|
|
|
|
|
|
|
|
},
|
|
|
|
getProductList() {
|
|
|
|
getProductList() {
|
|
|
|
this.productLoading = true;
|
|
|
|
this.productLoading = true;
|
|
|
|
filterCertSet(this.productQuery)
|
|
|
|
filterCertSet(this.productQuery)
|
|
|
|