feat:优化

This commit is contained in:
wangzenghua 2025-03-25 07:53:09 +01:00
parent 6fc598e35e
commit a7a9d4eead
7 changed files with 100 additions and 95 deletions

View File

@ -27,7 +27,7 @@ import { reactive, ref, watch } from 'vue';
const props = defineProps({ const props = defineProps({
title: { type: String, default: '' }, title: { type: String, default: '' },
shadow: { type: Boolean, default: true }, shadow: { type: Boolean, default: false },
filter: { type: Boolean, default: false }, filter: { type: Boolean, default: false },
data: { type: Array, default: () => [] }, data: { type: Array, default: () => [] },
option: { option: {

View File

@ -30,6 +30,7 @@
"pinia": "^2.1.7", "pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1", "pinia-plugin-persistedstate": "^3.2.1",
"screenfull": "^6.0.2", "screenfull": "^6.0.2",
"splitpanes": "^4.0.3",
"vue": "^3.3.11", "vue": "^3.3.11",
"vue-router": "^4.2.5" "vue-router": "^4.2.5"
}, },

View File

@ -19,10 +19,12 @@ import { registerDirective } from './directives';
import { registerGlobalComponents } from './plugins/globalComponents'; import { registerGlobalComponents } from './plugins/globalComponents';
import { registerElIcons } from './plugins/icon'; import { registerElIcons } from './plugins/icon';
import { registerMicroApps } from './plugins/micro'; import { registerMicroApps } from './plugins/micro';
import { registerSplitpanes } from './plugins/splitpanes';
const app = createApp(App); const app = createApp(App);
app.use(pinia).use(router).use(ElementPlus).use(Avue); app.use(pinia).use(router).use(ElementPlus).use(Avue);
registerGlobalComponents(app); registerGlobalComponents(app);
registerElIcons(app); registerElIcons(app);
registerSplitpanes(app);
registerDirective(app); registerDirective(app);
registerMicroApps(app); registerMicroApps(app);

View File

@ -0,0 +1,7 @@
import { Splitpanes, Pane } from 'splitpanes';
import 'splitpanes/dist/splitpanes.css';
export const registerSplitpanes = (app) => {
app.component('Splitpanes', Splitpanes);
app.component('Pane', Pane);
};

View File

@ -15,3 +15,7 @@
height: auto; height: auto;
max-height: calc(100vh - 130px); max-height: calc(100vh - 130px);
} }
.splitpanes.default-theme .splitpanes__pane {
background-color: #fff !important;
}

View File

@ -1,7 +1,9 @@
<template> <template>
<div class="custom-page"> <div class="custom-page">
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="4"> <splitpanes class="default-theme">
<pane size="16">
<el-col>
<custom-table-tree title="土地用途分类信息" :data="treeData" :option="treeOption" filter @node-click="handleNodeClick"> <custom-table-tree title="土地用途分类信息" :data="treeData" :option="treeOption" filter @node-click="handleNodeClick">
<template #default="{ data }"> <template #default="{ data }">
<div :class="{ 'text-primary': data.id == treeSelected.id || data.id == treeSelected.pId }"> <div :class="{ 'text-primary': data.id == treeSelected.id || data.id == treeSelected.pId }">
@ -10,7 +12,9 @@
</template> </template>
</custom-table-tree> </custom-table-tree>
</el-col> </el-col>
<el-col :span="20"> </pane>
<pane size="84">
<el-col>
<avue-crud <avue-crud
ref="crudRef" ref="crudRef"
v-model="state.form" v-model="state.form"
@ -43,6 +47,8 @@
</template> </template>
</avue-crud> </avue-crud>
</el-col> </el-col>
</pane>
</splitpanes>
</el-row> </el-row>
</div> </div>
</template> </template>

View File

@ -1,18 +1,14 @@
<template> <template>
<CustomCard> <div class="custom-page">
<div>
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="4"> <splitpanes class="default-theme">
<!-- <el-tree <pane size="16">
style="max-width: 600px" <el-col>
:data="typeTree"
node-key="areaCode"
:props="{ children: 'areaChildVOS', label: 'areaName' }"
@node-click="handleNodeClick"
/> -->
<custom-table-tree title="行政区域" :data="typeTree" :option="treeOption" @node-click="handleNodeClick" /> <custom-table-tree title="行政区域" :data="typeTree" :option="treeOption" @node-click="handleNodeClick" />
</el-col> </el-col>
<el-col :span="20"> </pane>
<pane size="84">
<el-col>
<avue-crud <avue-crud
ref="crudRef" ref="crudRef"
v-model="state.form" v-model="state.form"
@ -39,15 +35,15 @@
</template> </template>
</avue-crud> </avue-crud>
</el-col> </el-col>
</pane>
</splitpanes>
</el-row> </el-row>
</div> </div>
</CustomCard>
</template> </template>
<script setup> <script setup>
import { ref, reactive, onMounted } from 'vue'; import { ref, reactive, onMounted } from 'vue';
import { useApp } from '@/hooks'; import { useApp } from '@/hooks';
import { CRUD_OPTIONS } from '@/config'; import { CRUD_OPTIONS } from '@/config';
import CustomCard from '@/components/CustomCard.vue';
import { useUserStore } from '@/store/modules/user'; import { useUserStore } from '@/store/modules/user';
import { getRegion } from '@/apis/index'; import { getRegion } from '@/apis/index';
@ -55,9 +51,6 @@ const { VITE_APP_BASE_API } = import.meta.env;
const app = useApp(); const app = useApp();
const UserStore = useUserStore(); const UserStore = useUserStore();
/* --------------- data --------------- */
// #region
const crudRef = ref(null); const crudRef = ref(null);
const state = reactive({ const state = reactive({
loading: false, loading: false,
@ -139,9 +132,6 @@ const infoData = reactive({
name: '', name: '',
}); });
// #endregion
/* --------------- methods --------------- */
const loadData = () => { const loadData = () => {
//state.loading = true; //state.loading = true;
// getAnnualList(state.query) // getAnnualList(state.query)
@ -256,9 +246,4 @@ const onAdd = () => {
crudRef.value && crudRef.value.rowAdd(); crudRef.value && crudRef.value.rowAdd();
}; };
const onExport = () => {}; const onExport = () => {};
// #region
// #endregion
</script> </script>
<style lang="scss" scoped></style>