|
@@ -1444,9 +1444,10 @@ export default {
|
|
|
this.$refs.addFromRef
|
|
|
.getData()
|
|
|
.then(async (values) => {
|
|
|
- // console.log("dragForm", values);
|
|
|
-
|
|
|
- // return;
|
|
|
+ for (const key of Object.keys(values)) {
|
|
|
+ values[key] =
|
|
|
+ typeof values[key] == "undefined" ? "" : values[key];
|
|
|
+ }
|
|
|
let data = {
|
|
|
basicMap: {
|
|
|
tableName: this.tableName,
|