优化了“新增模型配置”

This commit is contained in:
CGD
2025-04-07 09:44:48 +08:00
parent 17bcaba026
commit d4f6e25f92
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ export default {
modelName: formData.modelName,
isDefault: formData.isDefault ? 1 : 0,
isEnabled: formData.isEnabled ? 1 : 0,
configJson: JSON.stringify(formData.configJson),
configJson: formData.configJson,
docLink: formData.docLink,
remark: formData.remark,
sort: formData.sort || 0
@@ -140,7 +140,7 @@ export default {
this.$emit('confirm', {
...this.formData,
provideType: this.formData.supplier,
provideCode: this.formData.supplier,
configJson: this.formData.configJson
});
this.$emit('update:visible', false);
+3 -2
View File
@@ -315,11 +315,12 @@ export default {
handleAddConfirm(newModel) {
const params = {
modelType: this.activeTab,
provideCode: newModel.supplier,
provideCode: newModel.provideCode,
formData: {
...newModel,
isDefault: newModel.isDefault ? 1 : 0,
isEnabled: newModel.isEnabled ? 1 : 0
isEnabled: newModel.isEnabled ? 1 : 0,
configJson: newModel.configJson
}
};