cloud-web-corejs 1.0.54-dev.61 → 1.0.54-dev.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -168,6 +168,7 @@ export default {
|
|
168
168
|
if (this.dataId && !isNaN(this.dataId)) {
|
169
169
|
this.isEdit = true;
|
170
170
|
this.$http({
|
171
|
+
aes: true,
|
171
172
|
url: USER_PREFIX + `/extend_datasource/get`,
|
172
173
|
method: `post`,
|
173
174
|
data: {
|
@@ -189,6 +190,7 @@ export default {
|
|
189
190
|
if (valid) {
|
190
191
|
this.$baseConfirm(this.$t1('您确定要测试数据库链接吗?')).then(() => {
|
191
192
|
this.$http({
|
193
|
+
aes: true,
|
192
194
|
url: USER_PREFIX + '/extend_datasource/dblinktest',
|
193
195
|
method: `post`,
|
194
196
|
data: this.dataSource,
|
@@ -211,6 +213,7 @@ export default {
|
|
211
213
|
this.$baseConfirm(this.$t1('您确定要保存吗?')).then(() => {
|
212
214
|
var url = USER_PREFIX + (this.isEdit ? `/extend_datasource/update` : `/extend_datasource/save`);
|
213
215
|
this.$http({
|
216
|
+
aes: true,
|
214
217
|
url: url,
|
215
218
|
method: `post`,
|
216
219
|
data: this.dataSource,
|