cloud-web-corejs 1.0.37 → 1.0.39

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.
@@ -19,7 +19,8 @@
19
19
  <tableForm :formData.sync="formData" :advancedFormData.sync="advancedFormData"
20
20
  @searchEvent="searchEvent" @resetEvent="resetEvent">
21
21
  <template #buttonLeft>
22
- <vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog">{{ $t1('新增') }}
22
+ <vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog">
23
+ {{ $t1('新增') }}
23
24
  </vxe-button>
24
25
  <base-table-export :option="{ title: $t1('账户导出'), targetRef: 'table-m1'}" :parent-target="_self"/>
25
26
  </template>
@@ -27,7 +28,8 @@
27
28
  <vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
28
29
  plain>{{ $t1('重置') }}
29
30
  </vxe-button>
30
- <vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">{{ $t1('搜索') }}
31
+ <vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
32
+ {{ $t1('搜索') }}
31
33
  </vxe-button>
32
34
  </template>
33
35
  </tableForm>
@@ -102,6 +104,7 @@ export default {
102
104
  vue: this,
103
105
  tableRef: 'table-m1',
104
106
  tableName: 'basic_user_list-m11',
107
+ aes: true,
105
108
  path: USER_PREFIX + '/user/listAllPage',
106
109
  param: () => {
107
110
  let formData = {
@@ -203,7 +206,7 @@ export default {
203
206
  {label: this.$t1('禁用'), value: false}
204
207
  ]
205
208
  },
206
- {
209
+ ...(this.$store.getters.userFlag !== 8 ? [{
207
210
  title: this.$t1('用户组'),
208
211
  field: "groupCode",
209
212
  type: "select",
@@ -213,7 +216,8 @@ export default {
213
216
  syncHandle: () => {
214
217
  return this.getUserGroups()
215
218
  }
216
- },
219
+ }] : [])
220
+
217
221
  ],
218
222
  config: {
219
223
  pagerConfig: {