新增、编辑图形确认按钮给postFigureName多加参数
This commit is contained in:
parent
188f216179
commit
c116840922
|
@ -2125,6 +2125,7 @@ export default {
|
|||
this.numberNew +
|
||||
',' +
|
||||
form.Direction
|
||||
+',add'
|
||||
)
|
||||
);
|
||||
} else {
|
||||
|
@ -2132,7 +2133,7 @@ export default {
|
|||
.getElementById('mapModule')
|
||||
.contentWindow.postFigureName(
|
||||
JSON.stringify(
|
||||
res.data.data + ',' + form.name + ',' + this.startFigureName + ',' + this.numberNew + ','
|
||||
res.data.data + ',' + form.name + ',' + this.startFigureName + ',' + this.numberNew + ', '+',add'
|
||||
)
|
||||
);
|
||||
}
|
||||
|
@ -2235,14 +2236,14 @@ export default {
|
|||
.getElementById('mapModule')
|
||||
.contentWindow.postFigureName(
|
||||
JSON.stringify(
|
||||
form.id + ',' + form.name + ',' + this.startFigureName + ',' + this.numberNew + ',' + form.Direction
|
||||
form.id + ',' + form.name + ',' + this.startFigureName + ',' + this.numberNew + ',' + form.Direction+',edit'
|
||||
)
|
||||
);
|
||||
} else {
|
||||
document
|
||||
.getElementById('mapModule')
|
||||
.contentWindow.postFigureName(
|
||||
JSON.stringify(form.id + ',' + form.name + ',' + this.startFigureName + ',' + this.numberNew + ',')
|
||||
JSON.stringify(form.id + ',' + form.name + ',' + this.startFigureName + ',' + this.numberNew + ', '+',edit')
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue