diff --git a/packages/conv/AppDeviceConfig/components/eyeList.vue b/packages/conv/AppDeviceConfig/components/eyeList.vue index 4d34f319..f991e7d3 100644 --- a/packages/conv/AppDeviceConfig/components/eyeList.vue +++ b/packages/conv/AppDeviceConfig/components/eyeList.vue @@ -111,18 +111,18 @@ colConfigs() { return [ {type: "selection"}, - { prop: 'corpId', label: 'CorpId' }, - { prop: 'flag', align: 'center', label: '状态' }, - { prop: 'appId', align: 'center', label: 'AppId' }, - { prop: 'rsa', align: 'center', label: 'RSA' }, - { prop: 'secret', align: 'center', label: 'SECRET' }, - { prop: 'token', align: 'center', label: 'TOKEN' }, - { prop: 'orgIds', align: 'center', label: '结点ids' }, - { prop: 'version', align: 'center', label: '版本号' }, - { prop: 'dlbName', align: 'center', label: '大喇叭账号' }, - { prop: 'dlbPwd', align: 'center', label: '大喇叭密码' }, - { prop: 'dlbToken', align: 'center', label: '大喇叭Token' }, - { prop: 'createTime', align: 'center', label: '创建时间' }, + { prop: 'corpId', label: 'CorpId', fixed: 'left', width: 220 }, + { prop: 'flag', align: 'center', label: '状态', fixed: 'left', width: 120 }, + { prop: 'appId', align: 'center', label: 'AppId', width: 240 }, + { prop: 'rsa', align: 'center', label: 'RSA', width: 240 }, + { prop: 'secret', align: 'center', label: 'SECRET', width: 180 }, + { prop: 'token', align: 'center', label: 'TOKEN', width: 120 }, + { prop: 'orgIds', align: 'center', label: '结点ids', width: 120 }, + { prop: 'version', align: 'center', label: '版本号', width: 120 }, + { prop: 'dlbName', align: 'center', label: '大喇叭账号', width: 140 }, + { prop: 'dlbPwd', align: 'center', label: '大喇叭密码', width: 140 }, + { prop: 'dlbToken', align: 'center', label: '大喇叭Token', width: 180 }, + { prop: 'createTime', align: 'center', label: '创建时间', fixed: 'right', width: 180 }, { slot: 'options'}, ] } diff --git a/packages/conv/AppDeviceConfig/components/videoList.vue b/packages/conv/AppDeviceConfig/components/videoList.vue index 420022bf..8998a684 100644 --- a/packages/conv/AppDeviceConfig/components/videoList.vue +++ b/packages/conv/AppDeviceConfig/components/videoList.vue @@ -102,15 +102,15 @@ colConfigs() { return [ {type: "selection"}, - { prop: 'corpId', label: 'CorpId' }, - { prop: 'flag', align: 'center', label: '状态' }, - { prop: 'slwUserId', align: 'center', label: '用户ID' }, - { prop: 'slwAreaId', align: 'center', label: '地区编码' }, - { prop: 'slwToken', align: 'center', label: 'TOKEN' }, - { prop: 'dlbName', align: 'center', label: '大喇叭账号' }, - { prop: 'dlbPwd', align: 'center', label: '大喇叭密码' }, - { prop: 'dlbToken', align: 'center', label: '大喇叭Token' }, - { prop: 'createTime', align: 'center', label: '创建时间' }, + { prop: 'corpId', label: 'CorpId', fixed: 'left', width: 220 }, + { prop: 'flag', align: 'center', label: '状态', fixed: 'left', width: 120 }, + { prop: 'slwUserId', align: 'center', label: '用户ID', width: 180 }, + { prop: 'slwAreaId', align: 'center', label: '地区编码', width: 180 }, + { prop: 'slwToken', align: 'center', label: 'TOKEN', width: 220 }, + { prop: 'dlbName', align: 'center', label: '大喇叭账号', width: 140 }, + { prop: 'dlbPwd', align: 'center', label: '大喇叭密码', width: 140 }, + { prop: 'dlbToken', align: 'center', label: '大喇叭Token', width: 180 }, + { prop: 'createTime', align: 'center', label: '创建时间', width: 180 }, { slot: 'options'}, ] }