Merge branch 'dev' of github.com:jetlinks/jetlinks-ui-vue into dev

This commit is contained in:
JiangQiming 2023-03-20 17:36:48 +08:00
commit 6485265e3d
16 changed files with 238 additions and 168 deletions

View File

@ -33,7 +33,10 @@ export const defaultBranches = [
terms: [
{
column: undefined,
value: undefined,
value: {
source: 'fixed',
value: undefined
},
termType: undefined,
key: 'params_1',
type: 'and',
@ -89,6 +92,8 @@ export const useSceneStore = defineStore('scene', () => {
branches = cloneDeep(defaultBranches)
if (triggerType === 'device') {
branches.push(null)
} else {
branches[0].when.length = []
}
} else {
const branchesLength = branches.length;

View File

@ -13,16 +13,16 @@
</PermissionButton>
</template>
<j-descriptions-item label="设备ID">{{
instanceStore.current.id
instanceStore.current?.id
}}</j-descriptions-item>
<j-descriptions-item label="产品名称">{{
instanceStore.current.productName
instanceStore.current?.productName
}}</j-descriptions-item>
<j-descriptions-item label="产品分类">{{
instanceStore.current.classifiedName
instanceStore.current?.classifiedName
}}</j-descriptions-item>
<j-descriptions-item label="设备类型">{{
instanceStore.current.deviceType?.text
instanceStore.current?.deviceType?.text
}}</j-descriptions-item>
<j-descriptions-item label="固件版本">{{
instanceStore.current?.firmwareInfo?.version
@ -31,25 +31,25 @@
instanceStore.current?.transport
}}</j-descriptions-item>
<j-descriptions-item label="消息协议">{{
instanceStore.current.protocolName
instanceStore.current?.protocolName
}}</j-descriptions-item>
<j-descriptions-item label="创建时间">{{
instanceStore.current.createTime
? moment(instanceStore.current.createTime).format(
instanceStore.current?.createTime
? moment(instanceStore.current?.createTime).format(
'YYYY-MM-DD HH:mm:ss',
)
: ''
}}</j-descriptions-item>
<j-descriptions-item label="注册时间">{{
instanceStore.current.registerTime
? moment(instanceStore.current.registerTime).format(
instanceStore.current?.registerTime
? moment(instanceStore.current?.registerTime).format(
'YYYY-MM-DD HH:mm:ss',
)
: ''
}}</j-descriptions-item>
<j-descriptions-item label="最后上线时间">{{
instanceStore.current.onlineTime
? moment(instanceStore.current.onlineTime).format(
instanceStore.current?.onlineTime
? moment(instanceStore.current?.onlineTime).format(
'YYYY-MM-DD HH:mm:ss',
)
: ''
@ -57,12 +57,12 @@
<j-descriptions-item
label="父设备"
v-if="
instanceStore.current.deviceType?.value === 'childrenDevice'
instanceStore.current?.deviceType?.value === 'childrenDevice'
"
>{{ instanceStore.current.parentId }}</j-descriptions-item
>{{ instanceStore.current?.parentId }}</j-descriptions-item
>
<j-descriptions-item label="说明">{{
instanceStore.current.description
instanceStore.current?.description
}}</j-descriptions-item>
</j-descriptions>
<Config />

View File

@ -9,7 +9,7 @@
<div style="display: flex; align-items: center">
<!-- <j-button @click="onBack" size="small">返回</j-button> -->
<div style="font-size: 24px">
{{ instanceStore.current.name }}
{{ instanceStore.current?.name }}
</div>
<j-divider type="vertical" />
<j-space>
@ -20,15 +20,15 @@
<j-badge
:status="
statusMap.get(
instanceStore.current.state?.value,
instanceStore.current?.state?.value,
)
"
/>
{{ instanceStore.current.state?.text }}
{{ instanceStore.current?.state?.text }}
</span>
<PermissionButton
v-if="
instanceStore.current.state?.value ===
instanceStore.current?.state?.value ===
'notActive'
"
type="link"
@ -43,7 +43,7 @@
</PermissionButton>
<PermissionButton
v-if="
instanceStore.current.state?.value === 'online'
instanceStore.current?.state?.value === 'online'
"
type="link"
style="margin-top: -5px; padding: 0 20px"
@ -64,7 +64,7 @@
"
:title="
instanceStore.current?.features?.find(
(item) => item.id === 'selfManageState',
(item) => item?.id === 'selfManageState',
)
? '该设备的在线状态与父设备(网关设备)保持一致'
: '该设备在线状态由设备自身运行状态决定,不继承父设备(网关设备)的在线状态'
@ -80,7 +80,7 @@
<div style="padding-top: 24px">
<j-descriptions size="small" :column="4">
<j-descriptions-item label="ID">{{
instanceStore.current.id
instanceStore.current?.id
}}</j-descriptions-item>
<j-descriptions-item label="所属产品">
<PermissionButton
@ -89,7 +89,7 @@
@click="jumpProduct"
hasPermission="device/Product:view"
>
{{ instanceStore.current.productName }}
{{ instanceStore.current?.productName }}
</PermissionButton>
</j-descriptions-item>
</j-descriptions>
@ -192,11 +192,12 @@ const getStatus = (id: string) => {
};
watch(
() => route.params.id,
() => route.params?.id,
(newId) => {
if (newId) {
instanceStore.refresh(String(newId));
getStatus(String(newId));
instanceStore.tabActiveKey = 'Info'
}
},
{ immediate: true, deep: true },
@ -215,43 +216,43 @@ const onTabChange = (e: string) => {
};
const handleAction = async () => {
if (instanceStore.current.id) {
const resp = await _deploy(instanceStore.current.id);
if (instanceStore.current?.id) {
const resp = await _deploy(instanceStore.current?.id);
if (resp.status === 200) {
message.success('操作成功!');
instanceStore.refresh(instanceStore.current.id);
instanceStore.refresh(instanceStore.current?.id);
}
}
};
const handleDisconnect = async () => {
if (instanceStore.current.id) {
const resp = await _disconnect(instanceStore.current.id);
if (instanceStore.current?.id) {
const resp = await _disconnect(instanceStore.current?.id);
if (resp.status === 200) {
message.success('操作成功!');
instanceStore.refresh(instanceStore.current.id);
instanceStore.refresh(instanceStore.current?.id);
}
}
};
const handleRefresh = async () => {
if (instanceStore.current.id) {
await instanceStore.refresh(instanceStore.current.id);
if (instanceStore.current?.id) {
await instanceStore.refresh(instanceStore.current?.id);
message.success('操作成功');
}
};
const jumpProduct = () => {
menuStory.jumpPage('device/Product/Detail', {
id: instanceStore.current.productId,
id: instanceStore.current?.productId,
});
};
watchEffect(() => {
const keys = list.value.map((i) => i.key);
if (
instanceStore.current.protocol &&
!['modbus-tcp', 'opc-ua'].includes(instanceStore.current.protocol) &&
instanceStore.current?.protocol &&
!['modbus-tcp', 'opc-ua'].includes(instanceStore.current?.protocol) &&
!keys.includes('Diagnose')
) {
list.value.push({
@ -260,8 +261,8 @@ watchEffect(() => {
});
}
if (
instanceStore.current.features?.find(
(item: any) => item.id === 'transparentCodec',
instanceStore.current?.features?.find(
(item: any) => item?.id === 'transparentCodec',
) &&
!keys.includes('Parsing')
) {
@ -271,7 +272,7 @@ watchEffect(() => {
});
}
if (
instanceStore.current.protocol === 'modbus-tcp' &&
instanceStore.current?.protocol === 'modbus-tcp' &&
!keys.includes('Modbus')
) {
list.value.push({
@ -280,7 +281,7 @@ watchEffect(() => {
});
}
if (
instanceStore.current.protocol === 'opc-ua' &&
instanceStore.current?.protocol === 'opc-ua' &&
!keys.includes('OPCUA')
) {
list.value.push({
@ -289,7 +290,7 @@ watchEffect(() => {
});
}
if (
instanceStore.current.deviceType?.value === 'gateway' &&
instanceStore.current?.deviceType?.value === 'gateway' &&
!keys.includes('ChildDevice')
) {
//
@ -299,8 +300,8 @@ watchEffect(() => {
});
}
if (
instanceStore.current.accessProvider === 'edge-child-device' &&
instanceStore.current.parentId &&
instanceStore.current?.accessProvider === 'edge-child-device' &&
instanceStore.current?.parentId &&
!keys.includes('EdgeMap')
) {
list.value.push({

View File

@ -59,10 +59,12 @@ import { detail as deviceDetail } from '@/api/device/instance'
import Product from './Product.vue'
import DeviceSelect from './DeviceSelect.vue'
import Type from './Type.vue'
import {continuousValue, handleTimerOptions, timeUnitEnum} from '@/views/rule-engine/Scene/Save/components/Timer/util'
import { handleTimerOptions } from '@/views/rule-engine/Scene/Save/components/Timer/util'
import { Form } from 'jetlinks-ui-components'
type Emit = {
(e: 'cancel'): void
(e: 'change', data: TriggerDevice): void
(e: 'save', data: TriggerDevice, options: Record<string, any>): void
}
@ -76,6 +78,7 @@ interface AddModelType extends Omit<TriggerDevice, 'selectorValues'> {
metadata: metadataType,
operator: TriggerDeviceOptions
}
const formItemContext = Form.useInjectFormItemContext();
const emit = defineEmits<Emit>()
const typeRef = ref()
@ -165,26 +168,6 @@ const handleOptions = (data: TriggerDeviceOptions) => {
_options.when = when;
_options.time = time;
_options.extraTime = extraTime;
// if (_timer.trigger === 'cron') {
// _options.time = _timer.cron;
// } else {
// // console.log('continuousValue', continuousValue(_timer.when! || [], _timer!.trigger))
// let whenStr = '';
// if (_timer.when!.length) {
// whenStr = _timer!.trigger === 'week' ? '' : '';
// const whenStrArr = continuousValue(_timer.when! || [], _timer!.trigger);
// const whenStrArr3 = whenStrArr.splice(0, 3);
// whenStr += whenStrArr3.join('');
// whenStr += `${_timer.when!.length}`;
// }
// _options.when = whenStr;
// if (_timer.once) {
// _options.time = _timer.once.time + ' 1';
// } else if (_timer.period) {
// _options.time = _timer.period.from + '-' + _timer.period.to;
// _options.extraTime = `${_timer.period.every}${timeUnitEnum[_timer.period.unit]}1`;
// }
// }
}
if (data.operator === 'online') {
@ -263,6 +246,7 @@ const save = async (step?: number) => {
productId: addModel.productId
}
emit('save', data, _options)
formItemContext.onFieldChange()
}
}
}

View File

@ -75,7 +75,6 @@ type Emit = {
}
const params = ref({})
const context = inject('SceneDeviceAddModel')
const props = defineProps({
rowKeys: {
type: Array as PropType<SelectorValuesItem[]>,

View File

@ -2,7 +2,7 @@
<div class='device'>
<j-form-item
:rules='rules'
name='device'
:name='["trigger", "device"]'
>
<template #label>
<TitleComponent data='触发规则' style='font-size: 14px;' />
@ -13,9 +13,9 @@
>
<Title :options='data.options.trigger' />
</AddButton>
<AddModel v-if='visible' @cancel='visible = false' @save='save' :value='data.trigger.device' :options='data.options.trigger' />
</j-form-item>
<Terms />
<AddModel v-if='visible' @cancel='visible = false' @save='save' :value='data.trigger.device' :options='data.options.trigger' />
</div>
</template>
@ -28,6 +28,7 @@ import Title from '../components/Title.vue'
import Terms from '../components/Terms'
import type { TriggerDevice } from '@/views/rule-engine/Scene/typings'
const sceneStore = useSceneStore()
const { data } = storeToRefs(sceneStore)
@ -45,6 +46,7 @@ const rules = [{
const save = (device: TriggerDevice, options: Record<string, any>) => {
data.value.trigger!.device = device
data.value.options!.trigger = options
visible.value = false
}
</script>

View File

@ -79,6 +79,7 @@ const onActionUpdate = (_data: any, type: boolean) => {
const save = (_data: OperationTimer, options: Record<string, any>) => {
data.value.trigger!.timer = _data
data.value.options!.trigger = options
visible.value = false
}
</script>

View File

@ -172,7 +172,6 @@ const onDelete = () => {
const rules = [
{
validator(_: any, v?: Record<string, any>) {
console.log('-----v',v)
if (v !== undefined) {
if (!Object.keys(v).length) {
return Promise.reject(new Error('该数据已发生变更,请重新配置'))

View File

@ -349,7 +349,7 @@
/>
</div>
</template>
<div v-else class="filter-add-button">
<div v-else class="filter-add-button" @click='addFilterParams'>
<AIcon type="PlusOutlined" style="padding-right: 4px" />
<span>添加过滤条件</span>
</div>
@ -394,6 +394,7 @@ import { useSceneStore } from '@/store/scene';
import { storeToRefs } from 'pinia';
import { iconMap, itemNotifyIconMap, typeIconMap } from './util';
import FilterGroup from './FilterGroup.vue';
import { randomString } from '@/utils/utils'
const sceneStore = useSceneStore();
const { data: _data } = storeToRefs(sceneStore);
@ -471,6 +472,30 @@ const onSave = (data: ActionsType, options: any) => {
visible.value = false;
};
const addFilterParams = () => {
const item: any = {
type: 'and',
key: randomString(),
terms: [
{
column: undefined,
value: {
type: 'fixed',
value: undefined
},
termType: undefined,
type: 'and',
key: randomString()
}
]
}
if (_data.value.branches![props.branchesName].then[props.thenName].actions[props.name].terms) {
_data.value.branches![props.branchesName].then[props.thenName].actions[props.name].terms!.push(item)
} else {
_data.value.branches![props.branchesName].then[props.thenName].actions[props.name].terms = [item]
}
}
const onAdd = () => {
visible.value = true;
};

View File

@ -1,57 +1,57 @@
<template>
<div class="actions">
<div class="actions-title">
<div class='actions'>
<div class='actions-title'>
<span>执行</span>
<ShakeLimit
v-if="props.openShakeLimit"
v-model:value="FormModel.branches[name].shakeLimit"
v-if='props.openShakeLimit'
v-model:value='FormModel.branches[name].shakeLimit'
/>
</div>
<div class="actions-warp">
<j-collapse v-model:activeKey="activeKeys">
<j-collapse-panel key="1">
<div class='actions-warp'>
<j-collapse v-model:activeKey='activeKeys'>
<j-collapse-panel key='1'>
<template #header>
<span>
串行
<span class="panel-tip">
<span class='panel-tip'>
按顺序依次执行动作适用于基于动作输出参数判断是否执行后续动作的场景
</span>
</span>
</template>
<div class="actions-list">
<div class='actions-list'>
<List
type="serial"
:branchesName="name"
:parallel="false"
:actions="
type='serial'
:branchesName='name'
:parallel='false'
:actions='
serialArray.length ? serialArray[0].actions : []
"
@add="(_item) => onAdd(_item, false)"
@delete="(_key) => onDelete(_key, false)"
'
@add='(_item) => onAdd(_item, false)'
@delete='(_key) => onDelete(_key, false)'
/>
</div>
</j-collapse-panel>
<j-collapse-panel key="2">
<j-collapse-panel key='2'>
<template #header>
<span>
并行
<span class="panel-tip">
<span class='panel-tip'>
同时执行所有动作适用于不需要关注执行动作先后顺序和结果的场景
</span>
</span>
</template>
<div class="actions-list">
<div class='actions-list'>
<List
type="parallel"
:branchesName="name"
:parallel="true"
:actions="
type='parallel'
:branchesName='name'
:parallel='true'
:actions='
parallelArray.length
? parallelArray[0].actions
: []
"
@add="(_item) => onAdd(_item, true)"
@delete="(_key) => onDelete(_key, true)"
'
@add='(_item) => onAdd(_item, true)'
@delete='(_key) => onDelete(_key, true)'
/>
</div>
</j-collapse-panel>
@ -60,64 +60,66 @@
</div>
</template>
<script lang="ts" setup>
import ShakeLimit from '../components/ShakeLimit/index.vue';
import { List } from './ListItem';
<script lang='ts' setup>
import ShakeLimit from '../components/ShakeLimit/index.vue'
import { List } from './ListItem'
import { BranchesThen } from '../../typings'
import { PropType } from 'vue';
import { randomString } from '@/utils/utils';
import { storeToRefs } from 'pinia';
import { PropType } from 'vue'
import { randomString } from '@/utils/utils'
import { storeToRefs } from 'pinia'
import { useSceneStore } from 'store/scene'
import { Form } from 'jetlinks-ui-components'
const sceneStore = useSceneStore()
const { data: FormModel } = storeToRefs(sceneStore)
const formItemContext = Form.useInjectFormItemContext();
const props = defineProps({
name: {
type: Number,
default: 0
},
thenOptions: {
type: Array as PropType<BranchesThen[]>,
default: () => [],
},
openShakeLimit: {
type: Boolean,
default: false
},
});
name: {
type: Number,
default: 0
},
thenOptions: {
type: Array as PropType<BranchesThen[]>,
default: () => []
},
openShakeLimit: {
type: Boolean,
default: false
}
})
const emit = defineEmits(['update', 'add']);
const emit = defineEmits(['update', 'add'])
const activeKeys = ref<string[]>(['1']);
const parallelArray = ref<BranchesThen[]>([]);
const serialArray = ref<BranchesThen[]>([]);
const lock = ref<boolean>(false);
const activeKeys = ref<string[]>(['1'])
const parallelArray = ref<BranchesThen[]>([])
const serialArray = ref<BranchesThen[]>([])
const lock = ref<boolean>(false)
watch(
() => props.thenOptions,
(newVal) => {
parallelArray.value = newVal.filter((item) => item.parallel);
serialArray.value = newVal.filter((item) => !item.parallel);
() => props.thenOptions,
(newVal) => {
parallelArray.value = newVal.filter((item) => item.parallel)
serialArray.value = newVal.filter((item) => !item.parallel)
const isSerialActions = serialArray.value.some((item) => {
return !!item.actions.length;
});
const isSerialActions = serialArray.value.some((item) => {
return !!item.actions.length
})
if (
!lock.value &&
parallelArray.value.length &&
(!serialArray.value.length || !isSerialActions)
) {
activeKeys.value = ['2'];
lock.value = true;
}
},
{
deep: true,
immediate: true,
},
);
if (
!lock.value &&
parallelArray.value.length &&
(!serialArray.value.length || !isSerialActions)
) {
activeKeys.value = ['2']
lock.value = true
}
},
{
deep: true,
immediate: true
}
)
const onDelete = (_key: string, _parallel: boolean) => {
const thenName = props.thenOptions.findIndex(item => item.parallel === _parallel)
@ -125,7 +127,8 @@ const onDelete = (_key: string, _parallel: boolean) => {
if (actionIndex !== -1) {
FormModel.value.branches?.[props.name].then?.[thenName].actions.splice(actionIndex!, 1)
}
};
formItemContext.onFieldChange()
}
const onAdd = (actionItem: any, _parallel: boolean) => {
const thenName = props.thenOptions.findIndex(item => item.parallel === _parallel)
@ -146,30 +149,31 @@ const onAdd = (actionItem: any, _parallel: boolean) => {
}
FormModel.value.branches?.[props.name].then.push(newThenItem)
}
};
formItemContext.onFieldChange()
}
</script>
<style lang="less" scoped>
<style lang='less' scoped>
.actions {
.actions-title {
display: flex;
gap: 16px;
align-items: center;
margin-bottom: 16px;
font-weight: 800;
font-size: 14px;
line-height: 32px;
}
.actions-title {
display: flex;
gap: 16px;
align-items: center;
margin-bottom: 16px;
font-weight: 800;
font-size: 14px;
line-height: 32px;
}
.actions-warp {
.actions-list {
width: 100%;
}
.actions-warp {
.actions-list {
width: 100%;
}
}
.panel-tip {
padding-left: 8px;
color: rgba(#000, 0.45);
}
.panel-tip {
padding-left: 8px;
color: rgba(#000, 0.45);
}
}
</style>

View File

@ -56,7 +56,7 @@
<Action
:name='name'
:openShakeLimit="true"
:thenOptions='FormModel.branches[name].then'
:thenOptions='FormModel.branches[name]?.then'
/>
</j-form-item>
</div>
@ -64,7 +64,7 @@
</div>
</template>
<script lang='ts' setup name='Branchs'>
<script lang='ts' setup name='Branches'>
import type { PropType } from 'vue'
import type { ActionBranchesProps } from '@/views/rule-engine/Scene/typings'
import TermsItem from './TermsItem.vue'

View File

@ -44,6 +44,7 @@
:tabsOptions='tabsOptions'
v-model:value='paramsValue.value.value'
v-model:source='paramsValue.value.source'
@select='valueSelect'
/>
<ParamsDropdown
v-else
@ -54,6 +55,7 @@
:tabsOptions='tabsOptions'
v-model:value='paramsValue.value.value'
v-model:source='paramsValue.value.source'
@select='valueSelect'
/>
<j-popconfirm title='确认删除?' @confirm='onDelete'>
<div v-show='showDelete' class='button-delete'> <AIcon type='CloseOutlined' /></div>
@ -77,9 +79,11 @@ import { inject } from 'vue'
import { ContextKey } from './util'
import { useSceneStore } from 'store/scene'
import { storeToRefs } from 'pinia';
import { Form } from 'jetlinks-ui-components'
const sceneStore = useSceneStore()
const { data: formModel } = storeToRefs(sceneStore)
const formItemContext = Form.useInjectFormItemContext();
type Emit = {
(e: 'update:value', data: TermsType): void
@ -216,6 +220,7 @@ const columnSelect = () => {
value: undefined
}
emit('update:value', { ...paramsValue })
formItemContext.onFieldChange()
}
const termsTypeSelect = (e: { key: string }) => {
@ -225,6 +230,11 @@ const termsTypeSelect = (e: { key: string }) => {
value: value
}
emit('update:value', { ...paramsValue })
formItemContext.onFieldChange()
}
const valueSelect = () => {
formItemContext.onFieldChange()
}
const termAdd = () => {
@ -247,6 +257,7 @@ const onDelete = () => {
nextTick(() => {
Object.assign(paramsValue, props.value)
formItemContext.onFieldChange()
})
</script>

View File

@ -23,7 +23,7 @@
@deleteAll='branchesDeleteAll'
/>
<div v-else class='actions-terms-warp' :style='{ marginTop: data.branches.length === 2 ? 0 : 24 }'>
<div class='actions-terms-title' style='padding: 0'>
<div class='actions-terms-title' style='padding: 0;margin-bottom: 24px;'>
否则
</div>
<div class='actions-terms-options no-when'>
@ -43,11 +43,10 @@ import { provide } from 'vue'
import { ContextKey, handleParamsData } from './util'
import { getParseTerm } from '@/api/rule-engine/scene'
import type { FormModelType } from '@/views/rule-engine/Scene/typings'
import Branches from './Branchs.vue'
import Branches from './Branches.vue'
const sceneStore = useSceneStore()
const { data } = storeToRefs(sceneStore)
const open = ref(false)
const columnOptions = ref<any>([])
@ -96,7 +95,6 @@ const branchesDeleteAll = () => {
}
watchEffect(() => {
console.log(data.value.trigger, data.value.trigger?.device)
if (data.value.trigger?.device) {
queryColumn(data.value)
}

View File

@ -29,6 +29,7 @@
v-for='(item, index) in termsData'
:key='item.key'
:name='["branches", branchName, "when", whenName, "terms", index]'
:rules='rules'
>
<ParamsItem
v-model:value='formModel.branches[branchName].when[whenName].terms[index]'
@ -60,6 +61,7 @@ import DropdownButton from '../DropdownButton'
import { storeToRefs } from 'pinia';
import { useSceneStore } from 'store/scene'
import ParamsItem from './ParamsItem.vue'
import { isArray } from 'lodash-es'
const sceneStore = useSceneStore()
const { data: formModel } = storeToRefs(sceneStore)
@ -103,6 +105,41 @@ const props = defineProps({
}
})
const rules = [
{
validator(_: any, v: any) {
if (v !== undefined) {
if (!Object.keys(v).length) {
return Promise.reject(new Error('该数据已发生变更,请重新配置'));
}
if (!v.column) {
return Promise.reject(new Error('请选择参数'));
}
if (!v.termType) {
return Promise.reject(new Error('请选择操作符'));
}
if (v.value === undefined) {
return Promise.reject(new Error('请选择或输入参数值'));
} else {
if (
isArray(v.value.value) &&
v.value.value.some((_v: any) => _v === undefined)
) {
return Promise.reject(new Error('请选择或输入参数值'));
} else if (v.value.value === undefined) {
return Promise.reject(new Error('请选择或输入参数值'));
}
}
} else {
return Promise.reject(new Error('请选择参数'));
}
return Promise.resolve();
},
}
]
const showDelete = ref(false)
const termsData = computed(() => {

View File

@ -131,11 +131,15 @@
.ant-form-item {
margin-bottom: 8px;
&:not(:first-child) {
&:not(:nth-child(2)) {
.ant-form-item-explain-error {
padding-left: 80px !important;
}
}
&.ant-form-item-has-error {
margin-bottom: 0;
}
}
}

View File

@ -93,10 +93,10 @@ export default defineConfig(({ mode}) => {
// target: 'http://192.168.33.22:8800',
// target: 'http://192.168.32.244:8881',
// target: 'http://47.112.135.104:5096', // opcua
target: 'http://120.77.179.54:8844', // 120测试
target: 'http://192.168.33.46:8844', // 120测试
// target: 'http://47.108.63.174:8845', // 测试
// target: 'http://120.77.179.54:8844',
ws: 'ws://120.77.179.54:8844',
ws: 'ws://192.168.33.46:8844',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
}