You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
162 lines
5.4 KiB
162 lines
5.4 KiB
<template>
|
|
<div>
|
|
<BasicForm @register="registerForm" ref="formRef"/>
|
|
<!-- 子表单区域 -->
|
|
<a-tabs v-model:activeKey="activeKey" animated @change="handleChangeTabs" v-show="false">
|
|
<a-tab-pane tab="设备传感器表" key="dtDeviceSensorInfo" :forceRender="true">
|
|
<JVxeTable
|
|
v-if="dtDeviceSensorInfoTable.show"
|
|
keep-source
|
|
resizable
|
|
ref="dtDeviceSensorInfo"
|
|
:loading="dtDeviceSensorInfoTable.loading"
|
|
:columns="dtDeviceSensorInfoTable.columns"
|
|
:dataSource="dtDeviceSensorInfoTable.dataSource"
|
|
:height="340"
|
|
:disabled="formDisabled"
|
|
:rowNumber="true"
|
|
:rowSelection="true"
|
|
:toolbar="true"
|
|
/>
|
|
</a-tab-pane>
|
|
<a-tab-pane tab="设备状态信息" key="dtDeviceStatus" :forceRender="true">
|
|
<JVxeTable
|
|
v-if="dtDeviceStatusTable.show"
|
|
keep-source
|
|
resizable
|
|
ref="dtDeviceStatus"
|
|
:loading="dtDeviceStatusTable.loading"
|
|
:columns="dtDeviceStatusTable.columns"
|
|
:dataSource="dtDeviceStatusTable.dataSource"
|
|
:height="340"
|
|
:disabled="formDisabled"
|
|
:rowNumber="true"
|
|
:rowSelection="true"
|
|
:toolbar="true"
|
|
/>
|
|
</a-tab-pane>
|
|
</a-tabs>
|
|
<div style="width: 100%;text-align: center;margin-top: 10px;" v-if="showFlowSubmitButton">
|
|
<a-button preIcon="ant-design:check-outlined" style="width: 126px" type="primary" @click="handleSubmit">提 交</a-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defHttp } from '/@/utils/http/axios';
|
|
import {ref, computed, unref,reactive, onMounted } from 'vue';
|
|
import {BasicForm, useForm} from '/@/components/Form/index';
|
|
import { JVxeTable } from '/@/components/jeecg/JVxeTable'
|
|
import { useJvxeMethod } from '/@/hooks/system/useJvxeMethods.ts'
|
|
import {formSchema,dtDeviceSensorInfoJVxeColumns,dtDeviceStatusJVxeColumns} from '../DtDeviceInfo.data';
|
|
import {saveOrUpdate,queryDtDeviceSensorInfo,queryDtDeviceStatus} from '../DtDeviceInfo.api';
|
|
import { VALIDATE_FAILED } from '/@/utils/common/vxeUtils'
|
|
const isUpdate = ref(true);
|
|
|
|
const refKeys = ref(['dtDeviceSensorInfo', 'dtDeviceStatus', ]);
|
|
const activeKey = ref('dtDeviceSensorInfo');
|
|
const dtDeviceSensorInfo = ref();
|
|
const dtDeviceStatus = ref();
|
|
const tableRefs = {dtDeviceSensorInfo, dtDeviceStatus, };
|
|
const dtDeviceSensorInfoTable = reactive({
|
|
loading: false,
|
|
dataSource: [],
|
|
columns:dtDeviceSensorInfoJVxeColumns,
|
|
show: false
|
|
})
|
|
const dtDeviceStatusTable = reactive({
|
|
loading: false,
|
|
dataSource: [],
|
|
columns:dtDeviceStatusJVxeColumns,
|
|
show: false
|
|
})
|
|
|
|
const props = defineProps({
|
|
formData: { type: Object, default: ()=>{} },
|
|
formBpm: { type: Boolean, default: true }
|
|
});
|
|
const formDisabled = computed(()=>{
|
|
if(props.formBpm === true){
|
|
if(props.formData.disabled === false){
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
});
|
|
// 是否显示提交按钮
|
|
const showFlowSubmitButton = computed(()=>{
|
|
if(props.formBpm === true){
|
|
if(props.formData.disabled === false){
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
});
|
|
|
|
//表单配置
|
|
const [registerForm, {setProps,resetFields, setFieldsValue, validate}] = useForm({
|
|
labelWidth: 150,
|
|
schemas: formSchema,
|
|
showActionButtonGroup: false,
|
|
baseColProps: {span: 8}
|
|
});
|
|
|
|
onMounted(()=>{
|
|
initFormData();
|
|
});
|
|
//渲染流程表单数据
|
|
const queryByIdUrl = '/military/dtDeviceInfo/queryById';
|
|
async function initFormData(){
|
|
if(props.formBpm === true){
|
|
await reset();
|
|
let params = {id: props.formData.dataId};
|
|
const data = await defHttp.get({url: queryByIdUrl, params});
|
|
//表单赋值
|
|
await setFieldsValue({
|
|
...data
|
|
});
|
|
requestSubTableData(queryDtDeviceSensorInfo, {id: data.id}, dtDeviceSensorInfoTable, ()=>{
|
|
dtDeviceSensorInfoTable.show = true;
|
|
});
|
|
requestSubTableData(queryDtDeviceStatus, {id: data.id}, dtDeviceStatusTable, ()=>{
|
|
dtDeviceStatusTable.show = true;
|
|
});
|
|
// 隐藏底部时禁用整个表单
|
|
setProps({ disabled: formDisabled.value })
|
|
}
|
|
}
|
|
|
|
//方法配置
|
|
const [handleChangeTabs,handleSubmit,requestSubTableData,formRef] = useJvxeMethod(requestAddOrEdit,classifyIntoFormData,tableRefs,activeKey,refKeys);
|
|
|
|
async function reset(){
|
|
await resetFields();
|
|
activeKey.value = 'dtDeviceSensorInfo';
|
|
dtDeviceSensorInfoTable.dataSource = [];
|
|
dtDeviceStatusTable.dataSource = [];
|
|
}
|
|
function classifyIntoFormData(allValues) {
|
|
let main = Object.assign({}, allValues.formValue)
|
|
return {
|
|
...main, // 展开
|
|
dtDeviceSensorInfoList: allValues.tablesValue[0].tableData,
|
|
dtDeviceStatusList: allValues.tablesValue[1].tableData,
|
|
}
|
|
}
|
|
//表单提交事件
|
|
async function requestAddOrEdit(values) {
|
|
//提交表单
|
|
await saveOrUpdate(values, true);
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
/** 时间和数字输入框样式 */
|
|
:deep(.ant-input-number){
|
|
width: 100%
|
|
}
|
|
|
|
:deep(.ant-calendar-picker){
|
|
width: 100%
|
|
}
|
|
</style>
|