120 lines
3.1 KiB
Vue
120 lines
3.1 KiB
Vue
|
|
<template>
|
||
|
|
<BasicDrawer
|
||
|
|
v-bind="$attrs"
|
||
|
|
@register="registerDrawer"
|
||
|
|
:title="getTitle"
|
||
|
|
:width="adaptiveWidth"
|
||
|
|
@ok="handleSubmit"
|
||
|
|
:showFooter="showFooter"
|
||
|
|
destroyOnClose
|
||
|
|
>
|
||
|
|
<BasicForm @register="registerForm" >
|
||
|
|
<template #customInput="{ model, field }">
|
||
|
|
<a-button preIcon="ant-design:appstore-outlined" @click="readParameters(model)">读取</a-button>
|
||
|
|
</template>
|
||
|
|
</BasicForm>
|
||
|
|
</BasicDrawer>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" setup>
|
||
|
|
import {defineComponent, ref, computed, unref, useAttrs, createVNode, h} from 'vue';
|
||
|
|
import { BasicForm, useForm } from '/@/components/Form/index';
|
||
|
|
import { BasicDrawer, useDrawerInner } from '/@/components/Drawer';
|
||
|
|
import { useDrawerAdaptiveWidth } from '/@/hooks/jeecg/useAdaptiveWidth';
|
||
|
|
import {Modal} from "ant-design-vue";
|
||
|
|
import {ExclamationCircleOutlined} from "@ant-design/icons-vue";
|
||
|
|
import { formSchema } from "../humid.data";
|
||
|
|
import {insertDevice, updateDevice, getDeviceParameters} from '../humid.api';
|
||
|
|
import {getMultitransUrl} from "@/views/iot/tplink/camera/camera.api";
|
||
|
|
|
||
|
|
// 声明Emits
|
||
|
|
const emit = defineEmits(['success', 'register']);
|
||
|
|
const attrs = useAttrs();
|
||
|
|
const isUpdate = ref(true);
|
||
|
|
const rowId = ref('');
|
||
|
|
const departOptions = ref([]);
|
||
|
|
let isFormDepartUser = false;
|
||
|
|
//表单配置
|
||
|
|
const [registerForm, { setProps, resetFields, setFieldsValue, validate, updateSchema }] = useForm({
|
||
|
|
labelWidth: 90,
|
||
|
|
schemas: formSchema,
|
||
|
|
showActionButtonGroup: false,
|
||
|
|
});
|
||
|
|
const showFooter = ref(true);
|
||
|
|
//表单赋值
|
||
|
|
const [registerDrawer, { setDrawerProps, closeDrawer }] = useDrawerInner(async (data) => {
|
||
|
|
await resetFields();
|
||
|
|
showFooter.value = data?.showFooter ?? true;
|
||
|
|
setDrawerProps({ confirmLoading: false, showFooter: showFooter.value });
|
||
|
|
isUpdate.value = !!data?.isUpdate;
|
||
|
|
// 无论新增还是编辑,都可以设置表单值
|
||
|
|
if (typeof data.record === 'object') {
|
||
|
|
setFieldsValue({
|
||
|
|
...data.record,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
// 隐藏底部时禁用整个表单
|
||
|
|
setProps({ disabled: !showFooter.value });
|
||
|
|
});
|
||
|
|
//获取标题
|
||
|
|
const getTitle = computed(() => {
|
||
|
|
if (!unref(isUpdate)) {
|
||
|
|
return '新增温湿度';
|
||
|
|
} else {
|
||
|
|
return unref(showFooter) ? '编辑温湿度' : '温湿度详情';
|
||
|
|
}
|
||
|
|
});
|
||
|
|
const { adaptiveWidth } = useDrawerAdaptiveWidth();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 提交事件
|
||
|
|
*/
|
||
|
|
async function handleSubmit() {
|
||
|
|
try {
|
||
|
|
let values = await validate();
|
||
|
|
console.log('values==>',values);
|
||
|
|
setDrawerProps({ confirmLoading: true });
|
||
|
|
let params = values;
|
||
|
|
console.log('params==>',params);
|
||
|
|
if (!unref(isUpdate)) {
|
||
|
|
//新增
|
||
|
|
await insertDevice(params);
|
||
|
|
} else {
|
||
|
|
//修改
|
||
|
|
await updateDevice(params);
|
||
|
|
}
|
||
|
|
//关闭弹窗
|
||
|
|
closeDrawer();
|
||
|
|
//刷新列表
|
||
|
|
emit('success');
|
||
|
|
} finally {
|
||
|
|
setDrawerProps({ confirmLoading: false });
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 读取参数
|
||
|
|
* @param record
|
||
|
|
*/
|
||
|
|
function readParameters(record){
|
||
|
|
getDeviceParameters({
|
||
|
|
"sn":record.sn
|
||
|
|
}).then(res=> {
|
||
|
|
console.log(res);
|
||
|
|
if (typeof res === 'object') {
|
||
|
|
setFieldsValue({
|
||
|
|
...res,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
|
||
|
|
:deep(.ant-input-number) {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
</style>
|