|
@@ -7,7 +7,7 @@ import Pagination from "@components/pagination";
|
|
|
import PushConfigEdit from "@views/message/message-config/push/modal/push-config-edit";
|
|
|
import TheTooltip from "@components/TheTooltip";
|
|
|
import {getMapValueByKey, getSelectDataFromObj} from "@/utils/objectUtil";
|
|
|
-import {appKey, clientType} from "@/utils/constant";
|
|
|
+import {appKey, clientType, deviceType} from "@/utils/constant";
|
|
|
import deepClone from "@/utils/deep.clone";
|
|
|
import {sysApplicationPage} from "@views/menu-manage/api";
|
|
|
import {appSendConfigPage, appSendConfigRemove, appSendConfigStatus} from "@views/message/api";
|
|
@@ -165,7 +165,14 @@ export default defineComponent({
|
|
|
},
|
|
|
{
|
|
|
title: '设备类型',
|
|
|
- key: 'deviceType'
|
|
|
+ key: 'deviceType',
|
|
|
+ render(row: any) {
|
|
|
+ return (
|
|
|
+ <div>
|
|
|
+ {getMapValueByKey(row.deviceType, new Map(Object.entries(deviceType)))}
|
|
|
+ </div>
|
|
|
+ )
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: '接入地址',
|
|
@@ -217,6 +224,7 @@ export default defineComponent({
|
|
|
title: '操作',
|
|
|
key: 'operation',
|
|
|
fixed: 'right',
|
|
|
+ minWidth:'180px',
|
|
|
render(row: any) {
|
|
|
return (
|
|
|
<NSpace>
|