|
@@ -613,16 +613,16 @@ export default {
|
|
|
//生成要修改字段列表
|
|
|
change.map(item => {
|
|
|
let key = item[1].split(".")[0]
|
|
|
+ if (key == "flowBuild" && keyList.indexOf(key) == -1) {
|
|
|
+ keyList.push("BuildingId","FloorId")
|
|
|
+ param.Projection.push("BuildingId","FloorId")
|
|
|
+ }
|
|
|
if (item[1] && keyList.indexOf(key) == -1) {
|
|
|
keyList.push(key)
|
|
|
}
|
|
|
if (item[1] && item[3] == "" && param.Projection.indexOf(key) == -1) {
|
|
|
param.Projection.push(key)
|
|
|
}
|
|
|
- if (key == "flowBuild" && keyList.indexOf(key) == -1) {
|
|
|
- keyList.push("BuildingId","FloorId")
|
|
|
- param.Projection.push("BuildingId","FloorId")
|
|
|
- }
|
|
|
})
|
|
|
//生成对应修改数据
|
|
|
data.map((item, index) => {
|