|
@@ -265,10 +265,12 @@ export default {
|
|
|
const typeL = this.filter.type.toString().split('101');
|
|
|
const typeId = [];
|
|
|
typeId[0] = +typeL[1];
|
|
|
+ const relationIds = []
|
|
|
+ relationIds.push(this.relationId)
|
|
|
const param = {
|
|
|
"conceptId": row.conceptId,
|
|
|
// "isDeleted": row.isDeleted=== 'N'?'Y':'N',
|
|
|
- "relationIds":[17],//9-20新增
|
|
|
+ "relationIds":relationIds,//9-20新增
|
|
|
"typeIds":typeId
|
|
|
}
|
|
|
api.delConceptRelation(param).then((res)=>{
|