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.
@@ -119,6 +119,7 @@ export default {
119
119
  tableRef: 'table-m1',
120
120
  tableName: 'report_datasource_dialog-m1',
121
121
  path: USER_PREFIX + '/extend_datasource/listPage',
122
+ aes: true,
122
123
  param: () => {
123
124
  return {
124
125
  enabled: true,
@@ -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,
@@ -106,6 +106,7 @@ export default {
106
106
  tableRef: 'table-m1',
107
107
  tableName: 'user_report_datasource_list-m1',
108
108
  path: USER_PREFIX + '/extend_datasource/listPage',
109
+ aes: true,
109
110
  param: () => {
110
111
  return this.formData;
111
112
  },