|
@@ -545,7 +545,7 @@ export default {
|
545
|
545
|
const formDataEntries = [];
|
546
|
546
|
// 遍历 modifyForm,收集非空、非对象、非特定跳过的字段
|
547
|
547
|
for (let key in this.modifyForm) {
|
548
|
|
- if (key === 'contract' || key === 'partyA' || key === 'projectPlannerUser' || this.modifyForm[key] instanceof Object) {
|
|
548
|
+ if (key === 'contract' || key === 'partyA' || key.endsWith('User') || this.modifyForm[key] instanceof Object) {
|
549
|
549
|
continue;
|
550
|
550
|
}
|
551
|
551
|
|
|
@@ -764,6 +764,7 @@ export default {
|
764
|
764
|
/* line */
|
765
|
765
|
if (polylines.length != 0) {
|
766
|
766
|
let coords = polylines[0].getElementsByTagName('coordinates')[0].childNodes[0].nodeValue.trim();
|
|
767
|
+ console.log(coords);
|
767
|
768
|
let points = coords.split(" ");
|
768
|
769
|
let polylinesList = [];
|
769
|
770
|
for (const p of points) {
|