175 lines
4.1 KiB
Vue
175 lines
4.1 KiB
Vue
|
<template>
|
||
|
<div class="p-2">
|
||
|
<!--查询区域-->
|
||
|
<div class="jeecg-basic-table-form-container">
|
||
|
<a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
|
||
|
<a-row :gutter="24">
|
||
|
</a-row>
|
||
|
</a-form>
|
||
|
</div>
|
||
|
<!--引用表格-->
|
||
|
<BasicTable @register="registerTable" >
|
||
|
<!--插槽:table标题-->
|
||
|
<template #tableTitle>
|
||
|
</template>
|
||
|
<!--操作栏-->
|
||
|
<template #action="{ record }">
|
||
|
<TableAction :actions="getTableAction(record)" />
|
||
|
</template>
|
||
|
<template v-slot:bodyCell="{ column, record, index, text }">
|
||
|
</template>
|
||
|
</BasicTable>
|
||
|
<!-- 表单区域 -->
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" name="departUtils-sysDepart" setup>
|
||
|
import { ref, reactive } from 'vue';
|
||
|
import { BasicTable, useTable, TableAction } from '/@/components/Table';
|
||
|
import { useListPage } from '/@/hooks/system/useListPage';
|
||
|
import { columns, superQuerySchema } from './HldyUtils.data';
|
||
|
import { list } from './HldyUtils.api';
|
||
|
import { downloadFile } from '/@/utils/common/renderUtils';
|
||
|
import SysDepartModal from './components/SysDepartModal.vue'
|
||
|
import { useUserStore } from '/@/store/modules/user';
|
||
|
import { e } from 'unocss';
|
||
|
|
||
|
const formRef = ref();
|
||
|
const queryParam = reactive<any>({});
|
||
|
const toggleSearchStatus = ref<boolean>(false);
|
||
|
const departInfo = ref<any>({});
|
||
|
const userStore = useUserStore();
|
||
|
const emit = defineEmits(['register', 'ok']);
|
||
|
//注册table数据
|
||
|
const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
||
|
tableProps: {
|
||
|
title: 'sys_depart',
|
||
|
api: list,
|
||
|
columns,
|
||
|
canResize:false,
|
||
|
useSearchForm: false,
|
||
|
immediate: false,
|
||
|
actionColumn: {
|
||
|
width: 120,
|
||
|
fixed: 'right',
|
||
|
},
|
||
|
beforeFetch: async (params) => {
|
||
|
return Object.assign(params, queryParam);
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] = tableContext;
|
||
|
const labelCol = reactive({
|
||
|
xs:24,
|
||
|
sm:4,
|
||
|
xl:6,
|
||
|
xxl:4
|
||
|
});
|
||
|
const wrapperCol = reactive({
|
||
|
xs: 24,
|
||
|
sm: 20,
|
||
|
});
|
||
|
|
||
|
// 高级查询配置
|
||
|
const superQueryConfig = reactive(superQuerySchema);
|
||
|
|
||
|
/**
|
||
|
* 高级查询事件
|
||
|
*/
|
||
|
function handleSuperQuery(params) {
|
||
|
Object.keys(params).map((k) => {
|
||
|
queryParam[k] = params[k];
|
||
|
});
|
||
|
searchQuery();
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 编辑事件
|
||
|
*/
|
||
|
function handleEdit(record: Recordable) {
|
||
|
console.log("🚀 ~ handleEdit ~ record:", record)
|
||
|
departInfo.value.nuId = record.id;
|
||
|
departInfo.value.nuName = record.nuName;
|
||
|
console.log("🚀 ~ handleEdit ~ departInfo.value:", departInfo.value)
|
||
|
emit("ok",departInfo);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 成功回调
|
||
|
*/
|
||
|
function handleSuccess() {
|
||
|
(selectedRowKeys.value = []) && reload();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 操作栏
|
||
|
*/
|
||
|
function getTableAction(record) {
|
||
|
return [
|
||
|
{
|
||
|
label: '选择',
|
||
|
onClick: handleEdit.bind(null, record),
|
||
|
},
|
||
|
];
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 查询
|
||
|
*/
|
||
|
function searchQuery() {
|
||
|
reload();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 重置
|
||
|
*/
|
||
|
function searchReset() {
|
||
|
formRef.value.resetFields();
|
||
|
selectedRowKeys.value = [];
|
||
|
//刷新数据
|
||
|
reload();
|
||
|
}
|
||
|
|
||
|
|
||
|
function edit(record) {
|
||
|
console.log("🚀 ~ edit ~ record:", record.departServerUrl)
|
||
|
departInfo.value = record;
|
||
|
queryParam.sysOrgCode = record.departServerUrl;
|
||
|
reload();
|
||
|
}
|
||
|
|
||
|
defineExpose({
|
||
|
edit,
|
||
|
});
|
||
|
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
.jeecg-basic-table-form-container {
|
||
|
padding: 0;
|
||
|
.table-page-search-submitButtons {
|
||
|
display: block;
|
||
|
margin-bottom: 24px;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
.query-group-cust{
|
||
|
min-width: 100px !important;
|
||
|
}
|
||
|
.query-group-split-cust{
|
||
|
width: 30px;
|
||
|
display: inline-block;
|
||
|
text-align: center
|
||
|
}
|
||
|
.ant-form-item:not(.ant-form-item-with-help){
|
||
|
margin-bottom: 16px;
|
||
|
height: 32px;
|
||
|
}
|
||
|
:deep(.ant-picker),:deep(.ant-input-number){
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
</style>
|