|
@@ -258,6 +258,7 @@ export class DataDictionaryComponent implements OnInit {
|
258
|
258
|
extra3: this.validateForm.value.extra3,
|
259
|
259
|
desc: this.validateForm.value.desc,
|
260
|
260
|
level: 2,
|
|
261
|
+ system: 0,
|
261
|
262
|
};
|
262
|
263
|
} else {
|
263
|
264
|
postData = {
|
|
@@ -271,6 +272,7 @@ export class DataDictionaryComponent implements OnInit {
|
271
|
272
|
desc: this.validateForm.value.desc,
|
272
|
273
|
id: this.dataEdit.id,
|
273
|
274
|
level: 2,
|
|
275
|
+ system: 0,
|
274
|
276
|
};
|
275
|
277
|
}
|
276
|
278
|
}else if(this.checkedDictionary.type === 'dictionary'){
|
|
@@ -281,6 +283,7 @@ export class DataDictionaryComponent implements OnInit {
|
281
|
283
|
value: this.validateForm.value.value,
|
282
|
284
|
orders: this.validateForm.value.orders,
|
283
|
285
|
desc: this.validateForm.value.desc,
|
|
286
|
+ system: 0,
|
284
|
287
|
};
|
285
|
288
|
} else {
|
286
|
289
|
postData = {
|
|
@@ -289,6 +292,7 @@ export class DataDictionaryComponent implements OnInit {
|
289
|
292
|
value: this.validateForm.value.value,
|
290
|
293
|
orders: this.validateForm.value.orders,
|
291
|
294
|
desc: this.validateForm.value.desc,
|
|
295
|
+ system: 0,
|
292
|
296
|
id: this.dataEdit.id,
|
293
|
297
|
};
|
294
|
298
|
}
|