Explorar el Código

Merge branch 'master' of http://10.1.235.20:3000/asiainfo/static

# Conflicts:
#	2022/aiot-evaluate/src/views/settings/ApiResourceManagement.vue
zhaozy25 %!s(int64=3) %!d(string=hace) años
padre
commit
b7211dcdda

+ 3 - 1
2022/aiot-evaluate/src/views/settings/ApiResourceManagement.vue

@ -276,11 +276,12 @@ const dialogData = ref({
276 276
277 277
// 搜索
278 278
const search = (data) => {
279
  console.log(data);
280 279
  const params = {
281 280
    ...data
282 281
  };
282
  console.log(data);
283 283
  getPermissionData(params);
284
  // queryByType({ type: 1 });
284 285
  console.log('开始搜索');
285 286
};
286 287
// 清除搜索
@ -376,6 +377,7 @@ const changePermission = async (params) => {
376 377
};
377 378
378 379
// 删除API资源
380
379 381
const deletePermission = async(code) => {
380 382
  await proxy
381 383
    .$reqPost(`${proxy.$api.managementPermissionApi.deletePermission}?code=${code}`)

+ 5 - 4
2022/aiot-evaluate/src/views/settings/ApplicationManagement.vue

@ -60,23 +60,24 @@ const pageData = ref({
60 60
  tableHeader: [{
61 61
    label: '应用标识',
62 62
    name: 'clientId',
63
    width: '193'
63
    'min-width': '193'
64 64
  },
65 65
  {
66 66
    label: '应用名称',
67 67
    name: 'clientName',
68
    width: '193'
68
    'min-width': '193'
69 69
  },
70 70
  {
71 71
    label: '有效时长(秒)',
72 72
    name: 'accessTokenValidity',
73
    width: '193'
73
    'min-width': '193'
74 74
  },
75 75
  {
76 76
    label: '操作',
77 77
    type: 'custom',
78 78
    name: 'custom',
79
    width: '217'
79
    width: '217',
80
    fixed: 'right'
80 81
  }],
81 82
  tableData: [],
82 83
  tableBtns: [{