|
|
@@ -3314,11 +3314,12 @@ export default {
|
|
|
this.agreementId = row.id;
|
|
|
this.operType = "EDIT";
|
|
|
this.dialogTitle = "协议编辑";
|
|
|
+ this.productFilterList=[]
|
|
|
this.$api.insCompany.agreementId(row.id).then((res) => {
|
|
|
if (res.code == "200") {
|
|
|
let scheme = res.data.scheme;
|
|
|
if (res.data.agreement.productsCode) {
|
|
|
- let productsCodeList = res.data.agreement.productsCode.split(",");
|
|
|
+ let productsCodeList =res.data.agreement.productsCode!=null? res.data.agreement.productsCode.split(","):[]
|
|
|
this.productFilterList = productsCodeList;
|
|
|
}
|
|
|
this.agreement = res.data.agreement; //协议信息
|