Merge branch 'dev' of github.com:jetlinks/jetlinks-ui-vue into dev
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
|
@ -10,7 +10,10 @@
|
||||||
:maxCount="1"
|
:maxCount="1"
|
||||||
:showUploadList="false"
|
:showUploadList="false"
|
||||||
@change="uploadChange"
|
@change="uploadChange"
|
||||||
:accept="props?.file?.fileType ? `.${props?.file?.fileType}` : '.xlsx'"
|
:accept="
|
||||||
|
props?.file?.fileType ? `.${props?.file?.fileType}` : '.xlsx'
|
||||||
|
"
|
||||||
|
:before-upload="beforeUpload"
|
||||||
>
|
>
|
||||||
<j-button>
|
<j-button>
|
||||||
<template #icon><AIcon type="UploadOutlined" /></template>
|
<template #icon><AIcon type="UploadOutlined" /></template>
|
||||||
|
@ -36,7 +39,7 @@
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { FILE_UPLOAD } from '@/api/comm';
|
import { FILE_UPLOAD } from '@/api/comm';
|
||||||
import { TOKEN_KEY } from '@/utils/variable';
|
import { TOKEN_KEY } from '@/utils/variable';
|
||||||
import { LocalStore } from '@/utils/comm';
|
import { LocalStore, onlyMessage } from '@/utils/comm';
|
||||||
import { downloadFile, downloadFileByUrl } from '@/utils/utils';
|
import { downloadFile, downloadFileByUrl } from '@/utils/utils';
|
||||||
import {
|
import {
|
||||||
deviceImport,
|
deviceImport,
|
||||||
|
@ -87,6 +90,19 @@ const downFile = async (type: string) => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const beforeUpload = (_file: any) => {
|
||||||
|
const fileType = props?.file?.fileType === 'csv' ? 'csv' : 'xlsx';
|
||||||
|
const isCsv = _file.type === 'text/csv';
|
||||||
|
const isXlsx = _file.type === 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
|
||||||
|
if (!isCsv && fileType !== 'xlsx') {
|
||||||
|
onlyMessage('请上传.csv格式文件', 'warning');
|
||||||
|
}
|
||||||
|
if (!isXlsx && fileType !== 'csv') {
|
||||||
|
onlyMessage('请上传.xlsx格式文件', 'warning');
|
||||||
|
}
|
||||||
|
return (isCsv && fileType !== 'xlsx') || (isXlsx && fileType !== 'csv');
|
||||||
|
};
|
||||||
|
|
||||||
const submitData = async (fileUrl: string) => {
|
const submitData = async (fileUrl: string) => {
|
||||||
if (!!fileUrl) {
|
if (!!fileUrl) {
|
||||||
count.value = 0;
|
count.value = 0;
|
||||||
|
|
|
@ -203,7 +203,7 @@ const Status = defineComponent({
|
||||||
}, time);
|
}, time);
|
||||||
} else {
|
} else {
|
||||||
let _item: ListProps | undefined = undefined
|
let _item: ListProps | undefined = undefined
|
||||||
if (!unref(gateway)) {
|
if (!unref(gateway)?.id) {
|
||||||
const accessId = unref(device)?.accessId
|
const accessId = unref(device)?.accessId
|
||||||
if (accessId) {
|
if (accessId) {
|
||||||
const response: Record<string, any> = await queryGatewayState(accessId)
|
const response: Record<string, any> = await queryGatewayState(accessId)
|
||||||
|
@ -463,7 +463,7 @@ const Status = defineComponent({
|
||||||
})
|
})
|
||||||
|
|
||||||
// 网关父设备
|
// 网关父设备
|
||||||
const diagnoseParentDevice = new Promise(async (resolve) => {
|
const diagnoseParentDevice = () => new Promise(async (resolve) => {
|
||||||
if (unref(device).state.value === 'online') {
|
if (unref(device).state.value === 'online') {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
list.value = modifyArrayList(unref(list), {
|
list.value = modifyArrayList(unref(list), {
|
||||||
|
|
|
@ -78,13 +78,15 @@
|
||||||
<template v-if="!first">
|
<template v-if="!first">
|
||||||
<Message v-show="activeKey === 'message'" />
|
<Message v-show="activeKey === 'message'" />
|
||||||
</template>
|
</template>
|
||||||
<Status
|
<template v-if="flag">
|
||||||
v-show="activeKey !== 'message'"
|
<Status
|
||||||
:providerType="providerType"
|
v-show="activeKey !== 'message'"
|
||||||
@countChange="countChange"
|
:providerType="providerType"
|
||||||
@percentChange="percentChange"
|
@countChange="countChange"
|
||||||
@stateChange="stateChange"
|
@percentChange="percentChange"
|
||||||
/>
|
@stateChange="stateChange"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</j-card>
|
</j-card>
|
||||||
|
@ -127,13 +129,15 @@ const providerType = ref();
|
||||||
|
|
||||||
const first = ref<boolean>(true);
|
const first = ref<boolean>(true);
|
||||||
|
|
||||||
|
const flag = ref<boolean>(false); // 处理数据不更新的情况
|
||||||
|
|
||||||
provide('topState', topState);
|
provide('topState', topState);
|
||||||
|
|
||||||
const onTabChange = (key: 'status' | 'message') => {
|
const onTabChange = (key: 'status' | 'message') => {
|
||||||
if (topState.value === 'success') {
|
if (topState.value === 'success') {
|
||||||
activeKey.value = key;
|
activeKey.value = key;
|
||||||
}
|
}
|
||||||
first.value = false
|
first.value = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
const percentChange = (num: number) => {
|
const percentChange = (num: number) => {
|
||||||
|
@ -154,7 +158,9 @@ const countChange = (num: number) => {
|
||||||
count.value = num;
|
count.value = num;
|
||||||
};
|
};
|
||||||
|
|
||||||
onMounted(() => {
|
const init = () => {
|
||||||
|
flag.value = true
|
||||||
|
activeKey.value = 'status';
|
||||||
const provider = instanceStore.current?.accessProvider;
|
const provider = instanceStore.current?.accessProvider;
|
||||||
if (provider === 'fixed-media' || provider === 'gb28181-2016') {
|
if (provider === 'fixed-media' || provider === 'gb28181-2016') {
|
||||||
providerType.value = 'media';
|
providerType.value = 'media';
|
||||||
|
@ -168,11 +174,22 @@ onMounted(() => {
|
||||||
providerType.value = 'network';
|
providerType.value = 'network';
|
||||||
}
|
}
|
||||||
topState.value = 'loading';
|
topState.value = 'loading';
|
||||||
|
}
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
setTimeout(() => {
|
||||||
|
init()
|
||||||
|
}, 500)
|
||||||
|
});
|
||||||
|
|
||||||
|
onUnmounted(() => {
|
||||||
|
flag.value = false
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.diagnose {
|
.diagnose {
|
||||||
|
min-height: 600px;
|
||||||
.diagnose-header {
|
.diagnose-header {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -8,7 +8,11 @@
|
||||||
</j-space>
|
</j-space>
|
||||||
</template>
|
</template>
|
||||||
<j-form ref="formRef" :model="modelRef">
|
<j-form ref="formRef" :model="modelRef">
|
||||||
<j-table :dataSource="modelRef.dataSource" :columns="columns">
|
<j-table
|
||||||
|
:dataSource="modelRef.dataSource"
|
||||||
|
:columns="columns"
|
||||||
|
:pagination="false"
|
||||||
|
>
|
||||||
<template #headerCell="{ column }">
|
<template #headerCell="{ column }">
|
||||||
<template v-if="column.key === 'collectorId'">
|
<template v-if="column.key === 'collectorId'">
|
||||||
采集器
|
采集器
|
||||||
|
@ -136,6 +140,14 @@
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
</j-table>
|
</j-table>
|
||||||
|
<div class="pagination">
|
||||||
|
<j-pagination
|
||||||
|
@change="onPageChange"
|
||||||
|
v-model:pageSize="pageSize"
|
||||||
|
v-model:current="current"
|
||||||
|
:total="metadata?.properties?.length || 0"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</j-form>
|
</j-form>
|
||||||
</j-card>
|
</j-card>
|
||||||
<PatchMapping
|
<PatchMapping
|
||||||
|
@ -202,6 +214,9 @@ const columns = [
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const current = ref<number>(1);
|
||||||
|
const pageSize = ref<number>(10);
|
||||||
|
|
||||||
const filterOption = (input: string, option: any) => {
|
const filterOption = (input: string, option: any) => {
|
||||||
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
||||||
};
|
};
|
||||||
|
@ -211,7 +226,11 @@ const metadata = JSON.parse(instanceStore.current?.metadata || '{}');
|
||||||
const loading = ref<boolean>(false);
|
const loading = ref<boolean>(false);
|
||||||
const channelList = ref<any[]>([]);
|
const channelList = ref<any[]>([]);
|
||||||
|
|
||||||
const modelRef = reactive({
|
const _properties = ref<any[]>([]);
|
||||||
|
|
||||||
|
const modelRef = reactive<{
|
||||||
|
dataSource: any[];
|
||||||
|
}>({
|
||||||
dataSource: [],
|
dataSource: [],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -231,16 +250,23 @@ const getChannel = async () => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleSearch = async () => {
|
const queryData = (cur: number) => {
|
||||||
|
_properties.value = metadata.properties.slice(
|
||||||
|
(cur > 0 ? cur - 1 : 0) * 10,
|
||||||
|
cur * 10,
|
||||||
|
);
|
||||||
|
handleSearch(_properties.value)
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSearch = async (array: any[]) => {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
getChannel();
|
getChannel();
|
||||||
const _metadata = metadata.properties.map((item: any) => ({
|
const _metadata: any[] = array.map((item: any) => ({
|
||||||
metadataId: item.id,
|
metadataId: item.id,
|
||||||
metadataName: `${item.name}(${item.id})`,
|
metadataName: `${item.name}(${item.id})`,
|
||||||
metadataType: 'property',
|
metadataType: 'property',
|
||||||
name: item.name,
|
name: item.name,
|
||||||
}));
|
}));
|
||||||
console.log(metadata);
|
|
||||||
if (_metadata && _metadata.length) {
|
if (_metadata && _metadata.length) {
|
||||||
const resp: any = await getEdgeMap(
|
const resp: any = await getEdgeMap(
|
||||||
instanceStore.current?.parentId || '',
|
instanceStore.current?.parentId || '',
|
||||||
|
@ -281,18 +307,23 @@ const unbind = async (id: string) => {
|
||||||
);
|
);
|
||||||
if (resp.status === 200) {
|
if (resp.status === 200) {
|
||||||
onlyMessage('操作成功!', 'success');
|
onlyMessage('操作成功!', 'success');
|
||||||
handleSearch();
|
handleSearch(_properties.value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const onPatchBind = () => {
|
const onPatchBind = () => {
|
||||||
visible.value = false;
|
visible.value = false;
|
||||||
handleSearch();
|
handleSearch(_properties.value);
|
||||||
|
};
|
||||||
|
|
||||||
|
const onPageChange = (page: any) => {
|
||||||
|
queryData(page)
|
||||||
};
|
};
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
handleSearch();
|
_properties.value = metadata.properties.slice(0, 10);
|
||||||
|
handleSearch(_properties.value);
|
||||||
});
|
});
|
||||||
|
|
||||||
const onSave = () => {
|
const onSave = () => {
|
||||||
|
@ -314,7 +345,7 @@ const onSave = () => {
|
||||||
);
|
);
|
||||||
if (resp.status === 200) {
|
if (resp.status === 200) {
|
||||||
onlyMessage('操作成功!', 'success');
|
onlyMessage('操作成功!', 'success');
|
||||||
handleSearch();
|
handleSearch(_properties.value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -343,7 +374,7 @@ const onAction = async (record: any) => {
|
||||||
);
|
);
|
||||||
if (resp.status === 200) {
|
if (resp.status === 200) {
|
||||||
onlyMessage('操作成功!', 'success');
|
onlyMessage('操作成功!', 'success');
|
||||||
handleSearch();
|
handleSearch(_properties.value);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -352,4 +383,11 @@ const onAction = async (record: any) => {
|
||||||
:deep(.ant-form-item) {
|
:deep(.ant-form-item) {
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pagination {
|
||||||
|
display: flex;
|
||||||
|
margin-top: 20px;
|
||||||
|
width: 100%;
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
|
@ -7,7 +7,9 @@
|
||||||
>
|
>
|
||||||
<template #title>
|
<template #title>
|
||||||
<div style="display: flex; align-items: center">
|
<div style="display: flex; align-items: center">
|
||||||
{{ instanceStore.current?.name }}
|
<j-tooltip :title="instanceStore.current?.name">
|
||||||
|
<div class="deviceDetailHead">{{ instanceStore.current?.name }}</div>
|
||||||
|
</j-tooltip>
|
||||||
<j-divider type="vertical" />
|
<j-divider type="vertical" />
|
||||||
<j-space>
|
<j-space>
|
||||||
<span style="font-size: 14px; color: rgba(0, 0, 0, 0.85)">
|
<span style="font-size: 14px; color: rgba(0, 0, 0, 0.85)">
|
||||||
|
@ -323,3 +325,13 @@ onUnmounted(() => {
|
||||||
statusRef.value && statusRef.value.unsubscribe();
|
statusRef.value && statusRef.value.unsubscribe();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.deviceDetailHead {
|
||||||
|
max-width: 400px;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -13,7 +13,7 @@
|
||||||
<j-row type="flex">
|
<j-row type="flex">
|
||||||
<j-col flex="180px">
|
<j-col flex="180px">
|
||||||
<j-form-item name="photoUrl">
|
<j-form-item name="photoUrl">
|
||||||
<JProUpload accept="image/jpg,image/png,image/jfif,image/pjp,image/pjpeg,image/jpeg" v-model="modelRef.photoUrl" />
|
<JProUpload accept="image/jpeg,image/png" v-model="modelRef.photoUrl" />
|
||||||
</j-form-item>
|
</j-form-item>
|
||||||
</j-col>
|
</j-col>
|
||||||
<j-col flex="auto">
|
<j-col flex="auto">
|
||||||
|
|
|
@ -1020,7 +1020,8 @@ nextTick(() => {
|
||||||
getData();
|
getData();
|
||||||
});
|
});
|
||||||
watch(()=>productStore.current,()=>{
|
watch(()=>productStore.current,()=>{
|
||||||
getData()
|
getData();
|
||||||
|
formData.data = productStore.current?.configuration || {}
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
|
|
@ -77,6 +77,7 @@
|
||||||
type="primary"
|
type="primary"
|
||||||
:popConfirm="{
|
:popConfirm="{
|
||||||
title: `确定应用配置?`,
|
title: `确定应用配置?`,
|
||||||
|
placement: 'bottomRight',
|
||||||
onConfirm: handleDeploy,
|
onConfirm: handleDeploy,
|
||||||
}"
|
}"
|
||||||
:disabled="productStore.current?.state === 0"
|
:disabled="productStore.current?.state === 0"
|
||||||
|
@ -111,16 +112,16 @@ import {
|
||||||
getProtocolDetail,
|
getProtocolDetail,
|
||||||
} from '@/api/device/product';
|
} from '@/api/device/product';
|
||||||
import { message } from 'jetlinks-ui-components';
|
import { message } from 'jetlinks-ui-components';
|
||||||
import { getImage, handleParamsToString } from '@/utils/comm'
|
import { getImage, handleParamsToString } from '@/utils/comm';
|
||||||
import encodeQuery from '@/utils/encodeQuery';
|
import encodeQuery from '@/utils/encodeQuery';
|
||||||
import { useMenuStore } from '@/store/menu';
|
import { useMenuStore } from '@/store/menu';
|
||||||
import {useRouterParams} from "@/utils/hooks/useParams";
|
import { useRouterParams } from '@/utils/hooks/useParams';
|
||||||
|
|
||||||
const menuStory = useMenuStore();
|
const menuStory = useMenuStore();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const checked = ref<boolean>(true);
|
const checked = ref<boolean>(true);
|
||||||
const productStore = useProductStore();
|
const productStore = useProductStore();
|
||||||
const routerParams = useRouterParams()
|
const routerParams = useRouterParams();
|
||||||
const searchParams = ref({
|
const searchParams = ref({
|
||||||
terms1: [
|
terms1: [
|
||||||
{
|
{
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
<j-row type="flex">
|
<j-row type="flex">
|
||||||
<j-col flex="180px">
|
<j-col flex="180px">
|
||||||
<j-form-item name="photoUrl">
|
<j-form-item name="photoUrl">
|
||||||
<JProUpload accept="image/jpg,image/png,image/jfif,image/pjp,image/pjpeg,image/jpeg" v-model="modelRef.photoUrl" />
|
<JProUpload accept="image/jpeg,image/png" v-model="modelRef.photoUrl" />
|
||||||
</j-form-item>
|
</j-form-item>
|
||||||
</j-col>
|
</j-col>
|
||||||
<j-col flex="auto">
|
<j-col flex="auto">
|
||||||
|
|
|
@ -123,6 +123,7 @@ const columns = [
|
||||||
search: {
|
search: {
|
||||||
type: 'select',
|
type: 'select',
|
||||||
rename: 'productId',
|
rename: 'productId',
|
||||||
|
first: true,
|
||||||
options: () =>
|
options: () =>
|
||||||
new Promise((resolve) => {
|
new Promise((resolve) => {
|
||||||
queryNoPagingPost({ paging: false }).then((resp: any) => {
|
queryNoPagingPost({ paging: false }).then((resp: any) => {
|
||||||
|
@ -141,6 +142,9 @@ const columns = [
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
key: 'name',
|
key: 'name',
|
||||||
|
search: {
|
||||||
|
type: 'string',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '注册时间',
|
title: '注册时间',
|
||||||
|
|
|
@ -193,31 +193,31 @@ const opsStepDetails: recommendList[] = [
|
||||||
title: '协议管理',
|
title: '协议管理',
|
||||||
details:
|
details:
|
||||||
'根据业务需求自定义开发对应的产品(设备模型)接入协议,并上传到平台。',
|
'根据业务需求自定义开发对应的产品(设备模型)接入协议,并上传到平台。',
|
||||||
iconUrl: '/images/home/Frame 4528.png',
|
iconUrl: '/images/home/Frame4528.png',
|
||||||
linkUrl: 'link/Protocol',
|
linkUrl: 'link/Protocol',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '证书管理',
|
title: '证书管理',
|
||||||
details: '统一维护平台内的证书,用于数据通信加密。',
|
details: '统一维护平台内的证书,用于数据通信加密。',
|
||||||
iconUrl: '/images/home/Frame 4528.png',
|
iconUrl: '/images/home/Frame4528.png',
|
||||||
linkUrl: 'link/Certificate',
|
linkUrl: 'link/Certificate',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '网络组件',
|
title: '网络组件',
|
||||||
details: '根据不同的传输类型配置平台底层网络组件相关参数。',
|
details: '根据不同的传输类型配置平台底层网络组件相关参数。',
|
||||||
iconUrl: '/images/home/Frame 4529.png',
|
iconUrl: '/images/home/Frame4528.png',
|
||||||
linkUrl: 'link/Type',
|
linkUrl: 'link/Type',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '设备接入网关',
|
title: '设备接入网关',
|
||||||
details: '根据不同的传输类型,关联消息协议,配置设备接入网关相关参数。',
|
details: '根据不同的传输类型,关联消息协议,配置设备接入网关相关参数。',
|
||||||
iconUrl: '/images/home/Frame 4528(1).png',
|
iconUrl: '/images/home/Frame4528(1).png',
|
||||||
linkUrl: 'link/AccessConfig',
|
linkUrl: 'link/AccessConfig',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '日志管理',
|
title: '日志管理',
|
||||||
details: '监控系统日志,及时处理系统异常。',
|
details: '监控系统日志,及时处理系统异常。',
|
||||||
iconUrl: '/images/home/Frame 4528.png',
|
iconUrl: '/images/home/Frame4528.png',
|
||||||
linkUrl: 'Log',
|
linkUrl: 'Log',
|
||||||
params: {
|
params: {
|
||||||
tab: 'system',
|
tab: 'system',
|
||||||
|
|
|
@ -53,31 +53,31 @@ const opsStepDetails: recommendList[] = [
|
||||||
title: '协议管理',
|
title: '协议管理',
|
||||||
details:
|
details:
|
||||||
'根据业务需求自定义开发对应的产品(设备模型)接入协议,并上传到平台。',
|
'根据业务需求自定义开发对应的产品(设备模型)接入协议,并上传到平台。',
|
||||||
iconUrl: '/images/home/Frame 4528.png',
|
iconUrl: '/images/home/Frame4528.png',
|
||||||
linkUrl: 'link/Protocol',
|
linkUrl: 'link/Protocol',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '证书管理',
|
title: '证书管理',
|
||||||
details: '统一维护平台内的证书,用于数据通信加密。',
|
details: '统一维护平台内的证书,用于数据通信加密。',
|
||||||
iconUrl: '/images/home/Frame 4528.png',
|
iconUrl: '/images/home/Frame4528.png',
|
||||||
linkUrl: 'link/Certificate',
|
linkUrl: 'link/Certificate',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '网络组件',
|
title: '网络组件',
|
||||||
details: '根据不同的传输类型配置平台底层网络组件相关参数。',
|
details: '根据不同的传输类型配置平台底层网络组件相关参数。',
|
||||||
iconUrl: '/images/home/Frame 4529.png',
|
iconUrl: '/images/home/Frame4528.png',
|
||||||
linkUrl: 'link/Type',
|
linkUrl: 'link/Type',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '设备接入网关',
|
title: '设备接入网关',
|
||||||
details: '根据不同的传输类型,关联消息协议,配置设备接入网关相关参数。',
|
details: '根据不同的传输类型,关联消息协议,配置设备接入网关相关参数。',
|
||||||
iconUrl: '/images/home/Frame 4528(1).png',
|
iconUrl: '/images/home/Frame4528(1).png',
|
||||||
linkUrl: 'link/AccessConfig',
|
linkUrl: 'link/AccessConfig',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '日志管理',
|
title: '日志管理',
|
||||||
details: '监控系统日志,及时处理系统异常。',
|
details: '监控系统日志,及时处理系统异常。',
|
||||||
iconUrl: '/images/home/Frame 4528.png',
|
iconUrl: '/images/home/Frame4528.png',
|
||||||
linkUrl: 'Log',
|
linkUrl: 'Log',
|
||||||
params: {
|
params: {
|
||||||
tab: 'system',
|
tab: 'system',
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
<template>
|
<template>
|
||||||
<span class="status-label-container">
|
<!-- <span class="status-label-container">
|
||||||
<i class="circle" :style="{ background: bjColor }"></i>
|
<i class="circle" :style="{ background: bjColor }"></i>
|
||||||
<span>{{ props.statusLabel }}</span>
|
<span>{{ props.statusLabel }}</span>
|
||||||
</span>
|
</span> -->
|
||||||
|
<j-badge :text="statusLabel" :status="status" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
@ -11,14 +12,14 @@ const props = defineProps<{
|
||||||
statusLabel: string;
|
statusLabel: string;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
const bjColor = computed(() => {
|
const status = computed(() => {
|
||||||
switch (props.statusValue) {
|
switch (props.statusValue) {
|
||||||
case 'online':
|
case 'online':
|
||||||
return '#52c41a';
|
return 'processing';
|
||||||
case 'offline':
|
case 'offline':
|
||||||
return '#ff4d4f';
|
return 'error';
|
||||||
case 'notActive':
|
case 'notActive':
|
||||||
return '#1890ff';
|
return 'warning';
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -105,12 +105,13 @@
|
||||||
</j-select>
|
</j-select>
|
||||||
</j-col>
|
</j-col>
|
||||||
<j-col :span="2" v-if="!route.query.id">
|
<j-col :span="2" v-if="!route.query.id">
|
||||||
<j-button
|
<PermissionButton
|
||||||
type="link"
|
type="link"
|
||||||
@click="saveProductVis = true"
|
@click="saveProductVis = true"
|
||||||
|
hasPermission="device/Product:add"
|
||||||
>
|
>
|
||||||
<AIcon type="PlusOutlined" />
|
<AIcon type="PlusOutlined" />
|
||||||
</j-button>
|
</PermissionButton>
|
||||||
</j-col>
|
</j-col>
|
||||||
</j-row>
|
</j-row>
|
||||||
</j-form-item>
|
</j-form-item>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<j-card>
|
<j-card>
|
||||||
<j-tabs :activeKey="activeKey" @change="changeTabs">
|
<j-tabs :activeKey="activeKey" @change="changeTabs">
|
||||||
<j-tab-pane key="1" tab="基础配置">
|
<j-tab-pane key="1" tab="基础配置">
|
||||||
<Base />
|
<Base v-if="activeKey === '1'" />
|
||||||
</j-tab-pane>
|
</j-tab-pane>
|
||||||
<j-tab-pane key="2" tab="关联场景联动">
|
<j-tab-pane key="2" tab="关联场景联动">
|
||||||
<Scene></Scene>
|
<Scene></Scene>
|
||||||
|
|
|
@ -1,269 +1,292 @@
|
||||||
<template>
|
<template>
|
||||||
<pro-search
|
<pro-search
|
||||||
:columns='columns'
|
:columns="columns"
|
||||||
type='simple'
|
type="simple"
|
||||||
@search='handleSearch'
|
@search="handleSearch"
|
||||||
class='scene-search'
|
class="scene-search"
|
||||||
target='scene-trigger-device-product'
|
target="scene-trigger-device-product"
|
||||||
/>
|
/>
|
||||||
<j-divider style='margin: 0' />
|
<j-divider style="margin: 0" />
|
||||||
<j-pro-table
|
<j-pro-table
|
||||||
ref='actionRef'
|
ref="actionRef"
|
||||||
model='CARD'
|
model="CARD"
|
||||||
:columns='columns'
|
:columns="columns"
|
||||||
:params='params'
|
:params="params"
|
||||||
:request='productQuery'
|
:request="productQuery"
|
||||||
:gridColumn='2'
|
:gridColumn="2"
|
||||||
:bodyStyle='{
|
:bodyStyle="{
|
||||||
paddingRight: 0,
|
paddingRight: 0,
|
||||||
paddingLeft: 0,
|
paddingLeft: 0,
|
||||||
}'
|
}"
|
||||||
>
|
>
|
||||||
<template #card='slotProps'>
|
<template #card="slotProps">
|
||||||
<CardBox
|
<CardBox
|
||||||
:value='slotProps'
|
:value="slotProps"
|
||||||
:active='rowKey === slotProps.id'
|
:active="rowKey === slotProps.id"
|
||||||
:status='String(slotProps.state)'
|
:status="String(slotProps.state)"
|
||||||
:statusText="slotProps.state === 1 ? '正常' : '禁用'"
|
:statusText="slotProps.state === 1 ? '正常' : '禁用'"
|
||||||
:statusNames="{ '1': 'processing', '0': 'error' }"
|
:statusNames="{ '1': 'processing', '0': 'error' }"
|
||||||
@click='handleClick(slotProps)'
|
@click="handleClick(slotProps)"
|
||||||
>
|
>
|
||||||
<template #img>
|
<template #img>
|
||||||
<slot name='img'>
|
<slot name="img">
|
||||||
<img
|
<img
|
||||||
:width='88'
|
:width="88"
|
||||||
:height='88'
|
:height="88"
|
||||||
:src="
|
:src="
|
||||||
slotProps.photoUrl ||
|
slotProps.photoUrl ||
|
||||||
getImage('/device-product.png')
|
getImage('/device-product.png')
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
</slot>
|
</slot>
|
||||||
</template>
|
</template>
|
||||||
<template #content>
|
<template #content>
|
||||||
<div style='width: calc(100% - 100px)'>
|
<div style="width: calc(100% - 100px)">
|
||||||
<Ellipsis>
|
<Ellipsis>
|
||||||
<span style='font-size: 16px; font-weight: 600'>
|
<span style="font-size: 16px; font-weight: 600">
|
||||||
{{ slotProps.name }}
|
{{ slotProps.name }}
|
||||||
</span>
|
</span>
|
||||||
</Ellipsis>
|
</Ellipsis>
|
||||||
</div>
|
</div>
|
||||||
<j-row>
|
<j-row>
|
||||||
<j-col :span='12'>
|
<j-col :span="12">
|
||||||
<div class='card-item-content-text'>设备类型</div>
|
<div class="card-item-content-text">设备类型</div>
|
||||||
<Ellipsis>{{ slotProps.deviceType?.text }}</Ellipsis>
|
<Ellipsis>{{
|
||||||
</j-col>
|
slotProps.deviceType?.text
|
||||||
<j-col :span='12'>
|
}}</Ellipsis>
|
||||||
<div class='card-item-content-text'>接入方式</div>
|
</j-col>
|
||||||
<Ellipsis>{{ slotProps?.accessName || '未接入' }}</Ellipsis>
|
<j-col :span="12">
|
||||||
</j-col>
|
<div class="card-item-content-text">接入方式</div>
|
||||||
</j-row>
|
<Ellipsis>{{
|
||||||
|
slotProps?.accessName || '未接入'
|
||||||
|
}}</Ellipsis>
|
||||||
|
</j-col>
|
||||||
|
</j-row>
|
||||||
|
</template>
|
||||||
|
</CardBox>
|
||||||
</template>
|
</template>
|
||||||
</CardBox>
|
</j-pro-table>
|
||||||
</template>
|
|
||||||
</j-pro-table>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang='ts' name='Product'>
|
<script setup lang='ts' name='Product'>
|
||||||
import {
|
import {
|
||||||
getProviders,
|
getProviders,
|
||||||
queryGatewayList,
|
queryGatewayList,
|
||||||
queryProductList
|
queryProductList,
|
||||||
} from '@/api/device/product'
|
detail
|
||||||
import { queryTree } from '@/api/device/category'
|
} from '@/api/device/product';
|
||||||
import { getTreeData_api } from '@/api/system/department'
|
import { queryTree } from '@/api/device/category';
|
||||||
import { isNoCommunity } from '@/utils/utils'
|
import { getTreeData_api } from '@/api/system/department';
|
||||||
import { getImage } from '@/utils/comm'
|
import { isNoCommunity } from '@/utils/utils';
|
||||||
import { accessConfigTypeFilter } from '@/utils/setting'
|
import { getImage } from '@/utils/comm';
|
||||||
|
import { accessConfigTypeFilter } from '@/utils/setting';
|
||||||
|
|
||||||
type Emit = {
|
type Emit = {
|
||||||
(e: 'update:rowKey', data: string): void;
|
(e: 'update:rowKey', data: string): void;
|
||||||
(e: 'update:detail', data: string): void;
|
(e: 'update:detail', data: any): void;
|
||||||
(e: 'change', data: string): void;
|
(e: 'change', data: any, bol?: boolean): void;
|
||||||
};
|
}; // bol判断是否为第一次
|
||||||
|
|
||||||
const actionRef = ref()
|
const actionRef = ref();
|
||||||
const params = ref({})
|
const params = ref({});
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
rowKey: {
|
rowKey: {
|
||||||
type: String,
|
type: String,
|
||||||
default: ''
|
default: '',
|
||||||
},
|
},
|
||||||
detail: {
|
detail: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default: () => ({})
|
default: () => ({}),
|
||||||
}
|
},
|
||||||
})
|
});
|
||||||
|
|
||||||
const emit = defineEmits<Emit>()
|
const emit = defineEmits<Emit>();
|
||||||
|
|
||||||
const columns = [
|
const columns = [
|
||||||
{
|
{
|
||||||
title: 'ID',
|
title: 'ID',
|
||||||
dataIndex: 'id',
|
dataIndex: 'id',
|
||||||
width: 300,
|
width: 300,
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
fixed: 'left',
|
fixed: 'left',
|
||||||
search: {
|
search: {
|
||||||
type: 'string'
|
type: 'string',
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '名称',
|
title: '名称',
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
width: 200,
|
width: 200,
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
search: {
|
search: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
first: true
|
first: true,
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '网关类型',
|
title: '网关类型',
|
||||||
dataIndex: 'accessProvider',
|
dataIndex: 'accessProvider',
|
||||||
width: 150,
|
width: 150,
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
hideInTable: true,
|
hideInTable: true,
|
||||||
search: {
|
search: {
|
||||||
type: 'select',
|
type: 'select',
|
||||||
options: () =>
|
options: () =>
|
||||||
getProviders().then((resp: any) => {
|
getProviders().then((resp: any) => {
|
||||||
const data = resp.result || []
|
const data = resp.result || [];
|
||||||
return accessConfigTypeFilter(data)
|
return accessConfigTypeFilter(data);
|
||||||
})
|
}),
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '接入方式',
|
title: '接入方式',
|
||||||
dataIndex: 'accessName',
|
dataIndex: 'accessName',
|
||||||
width: 150,
|
width: 150,
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
search: {
|
search: {
|
||||||
type: 'select',
|
type: 'select',
|
||||||
options: () =>
|
options: () =>
|
||||||
queryGatewayList().then((resp: any) =>
|
queryGatewayList().then((resp: any) =>
|
||||||
resp.result.map((item: any) => ({
|
resp.result.map((item: any) => ({
|
||||||
label: item.name,
|
label: item.name,
|
||||||
value: item.id
|
value: item.id,
|
||||||
}))
|
})),
|
||||||
)
|
),
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '设备类型',
|
title: '设备类型',
|
||||||
dataIndex: 'deviceType',
|
dataIndex: 'deviceType',
|
||||||
width: 150,
|
width: 150,
|
||||||
search: {
|
search: {
|
||||||
type: 'select',
|
type: 'select',
|
||||||
options: [
|
options: [
|
||||||
{ label: '直连设备', value: 'device' },
|
{ label: '直连设备', value: 'device' },
|
||||||
{ label: '网关子设备', value: 'childrenDevice' },
|
{ label: '网关子设备', value: 'childrenDevice' },
|
||||||
{ label: '网关设备', value: 'gateway' }
|
{ label: '网关设备', value: 'gateway' },
|
||||||
]
|
],
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '状态',
|
title: '状态',
|
||||||
dataIndex: 'state',
|
dataIndex: 'state',
|
||||||
width: '90px',
|
width: '90px',
|
||||||
search: {
|
search: {
|
||||||
type: 'select',
|
type: 'select',
|
||||||
options: [
|
options: [
|
||||||
{ label: '禁用', value: 0 },
|
{ label: '禁用', value: 0 },
|
||||||
{ label: '正常', value: 1 }
|
{ label: '正常', value: 1 },
|
||||||
]
|
],
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '说明',
|
title: '说明',
|
||||||
dataIndex: 'describe',
|
dataIndex: 'describe',
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
width: 300
|
width: 300,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
dataIndex: 'classifiedId',
|
dataIndex: 'classifiedId',
|
||||||
title: '分类',
|
title: '分类',
|
||||||
hideInTable: true,
|
hideInTable: true,
|
||||||
search: {
|
search: {
|
||||||
type: 'treeSelect',
|
type: 'treeSelect',
|
||||||
options: () => {
|
options: () => {
|
||||||
return new Promise((res => {
|
return new Promise((res) => {
|
||||||
queryTree({ paging: false }).then(resp => {
|
queryTree({ paging: false }).then((resp) => {
|
||||||
res(resp.result)
|
res(resp.result);
|
||||||
})
|
});
|
||||||
}))
|
});
|
||||||
},
|
},
|
||||||
componentProps: {
|
componentProps: {
|
||||||
fieldNames: {
|
fieldNames: {
|
||||||
label: 'name',
|
label: 'name',
|
||||||
value: 'id'
|
value: 'id',
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
dataIndex: 'id$dim-assets',
|
dataIndex: 'id$dim-assets',
|
||||||
title: '所属组织',
|
title: '所属组织',
|
||||||
hideInTable: true,
|
hideInTable: true,
|
||||||
search: {
|
search: {
|
||||||
type: 'treeSelect',
|
type: 'treeSelect',
|
||||||
options: () => new Promise((resolve) => {
|
options: () =>
|
||||||
getTreeData_api({ paging: false }).then((resp: any) => {
|
new Promise((resolve) => {
|
||||||
const formatValue = (list: any[]) => {
|
getTreeData_api({ paging: false }).then((resp: any) => {
|
||||||
return list.map((item: any) => {
|
const formatValue = (list: any[]) => {
|
||||||
if (item.children) {
|
return list.map((item: any) => {
|
||||||
item.children = formatValue(item.children)
|
if (item.children) {
|
||||||
}
|
item.children = formatValue(item.children);
|
||||||
return {
|
}
|
||||||
...item,
|
return {
|
||||||
value: JSON.stringify({
|
...item,
|
||||||
assetType: 'product',
|
value: JSON.stringify({
|
||||||
targets: [
|
assetType: 'product',
|
||||||
{
|
targets: [
|
||||||
type: 'org',
|
{
|
||||||
id: item.id
|
type: 'org',
|
||||||
}
|
id: item.id,
|
||||||
]
|
},
|
||||||
})
|
],
|
||||||
}
|
}),
|
||||||
})
|
};
|
||||||
}
|
});
|
||||||
resolve(formatValue(resp.result) || [])
|
};
|
||||||
})
|
resolve(formatValue(resp.result) || []);
|
||||||
})
|
});
|
||||||
}
|
}),
|
||||||
}
|
},
|
||||||
]
|
},
|
||||||
|
];
|
||||||
|
|
||||||
const handleSearch = (p: any) => {
|
const handleSearch = (p: any) => {
|
||||||
params.value = p
|
params.value = p;
|
||||||
}
|
};
|
||||||
|
|
||||||
const productQuery = (p: any) => {
|
const productQuery = (p: any) => {
|
||||||
const sorts: any = []
|
const sorts: any = [];
|
||||||
|
|
||||||
if (props.rowKey) {
|
if (props.rowKey) {
|
||||||
sorts.push({
|
sorts.push({
|
||||||
name: 'id',
|
name: 'id',
|
||||||
value: props.rowKey
|
value: props.rowKey,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
sorts.push({ name: 'createTime', order: 'desc' });
|
||||||
|
p.sorts = sorts;
|
||||||
|
return queryProductList(p);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleClick = (_detail: any) => {
|
||||||
|
if (props?.rowKey === _detail.id) {
|
||||||
|
emit('update:rowKey', '');
|
||||||
|
emit('update:detail', {});
|
||||||
|
emit('change', {});
|
||||||
|
} else {
|
||||||
|
emit('update:rowKey', _detail.id);
|
||||||
|
emit('update:detail', _detail);
|
||||||
|
emit('change', _detail);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
if(props.rowKey){
|
||||||
|
detail(props.rowKey).then(resp => {
|
||||||
|
if(resp.status === 200){
|
||||||
|
emit('update:detail', resp.result);
|
||||||
|
emit('change', resp.result, true);
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
sorts.push({ name: 'createTime', order: 'desc' })
|
})
|
||||||
p.sorts = sorts
|
|
||||||
return queryProductList(p)
|
|
||||||
}
|
|
||||||
|
|
||||||
const handleClick = (detail: any) => {
|
|
||||||
emit('update:rowKey', detail.id)
|
|
||||||
emit('update:detail', detail)
|
|
||||||
emit('change', detail)
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang='less'>
|
<style scoped lang='less'>
|
||||||
.search {
|
.search {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding-right: 0px;
|
padding-right: 0px;
|
||||||
padding-left: 0px;
|
padding-left: 0px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -173,7 +173,7 @@ const onValueChange = () => {
|
||||||
const newValue = _data.map((item: any) => {
|
const newValue = _data.map((item: any) => {
|
||||||
return {
|
return {
|
||||||
column: item.id,
|
column: item.id,
|
||||||
type: item?.type,
|
type: item?.valueType,
|
||||||
value: item?.value,
|
value: item?.value,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
@ -165,16 +165,20 @@ const onSave = (_data: any) => {
|
||||||
_options.propertiesValue =
|
_options.propertiesValue =
|
||||||
(typeof _options?.propertiesValue === 'object'
|
(typeof _options?.propertiesValue === 'object'
|
||||||
? JSON.stringify(_options?.propertiesValue)
|
? JSON.stringify(_options?.propertiesValue)
|
||||||
: `${_options?.propertiesValue}`) || DeviceModel?.selectorValues?.[0]?.value;
|
: `${_options?.propertiesValue}`) ||
|
||||||
|
DeviceModel?.selectorValues?.[0]?.value;
|
||||||
}
|
}
|
||||||
emit('save', item, _options);
|
emit('save', item, _options);
|
||||||
};
|
};
|
||||||
|
|
||||||
const onProductChange = (_val: any) => {
|
const onProductChange = (_val: any, bol: boolean) => {
|
||||||
DeviceModel.selectorValues = undefined;
|
if (!bol) {
|
||||||
DeviceModel.message = {
|
DeviceModel.selectorValues = undefined;
|
||||||
messageType: 'INVOKE_FUNCTION',
|
DeviceModel.message = {
|
||||||
};
|
messageType: 'INVOKE_FUNCTION',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
productDetail.value = _val
|
||||||
DeviceOptions.value.productName = _val?.name;
|
DeviceOptions.value.productName = _val?.name;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -231,14 +235,7 @@ const saveClick = () => save();
|
||||||
watch(
|
watch(
|
||||||
() => props.value,
|
() => props.value,
|
||||||
(newValue) => {
|
(newValue) => {
|
||||||
Object.assign(DeviceModel, {...newValue});
|
Object.assign(DeviceModel, newValue);
|
||||||
if (newValue?.productId) {
|
|
||||||
detail(newValue.productId).then((resp) => {
|
|
||||||
if (resp.status === 200) {
|
|
||||||
productDetail.value = resp.result;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{ immediate: true },
|
{ immediate: true },
|
||||||
);
|
);
|
||||||
|
|
|
@ -1675,9 +1675,23 @@ function init() {
|
||||||
if (!form.data.id) {
|
if (!form.data.id) {
|
||||||
// 新增时, 切换应用类型, 清空公用字段的值
|
// 新增时, 切换应用类型, 清空公用字段的值
|
||||||
form.data.page.baseUrl = '';
|
form.data.page.baseUrl = '';
|
||||||
form.data.page.parameters = [];
|
|
||||||
form.data.apiClient.baseUrl = '';
|
form.data.apiClient.baseUrl = '';
|
||||||
|
form.data.page.parameters = [];
|
||||||
form.data.apiClient.parameters = [];
|
form.data.apiClient.parameters = [];
|
||||||
|
form.data.apiClient.authConfig.oauth2.authorizationUrl = '';
|
||||||
|
form.data.sso.configuration.oauth2.authorizationUrl = '';
|
||||||
|
form.data.apiClient.authConfig.oauth2.clientId = '';
|
||||||
|
form.data.sso.configuration.oauth2.clientId = '';
|
||||||
|
form.data.apiClient.authConfig.oauth2.clientSecret = '';
|
||||||
|
form.data.sso.configuration.oauth2.clientSecret = '';
|
||||||
|
form.data.apiClient.headers = [];
|
||||||
|
form.data.apiServer.roleIdList = [];
|
||||||
|
form.data.apiServer.orgIdList = [];
|
||||||
|
form.data.description = '';
|
||||||
|
form.data.apiServer.redirectUri = '';
|
||||||
|
form.data.sso.configuration.appSecret = '';
|
||||||
|
|
||||||
|
// formRef.value?.resetFields();
|
||||||
}
|
}
|
||||||
emit('changeApplyType', n);
|
emit('changeApplyType', n);
|
||||||
if (routeQuery.id) return;
|
if (routeQuery.id) return;
|
||||||
|
|