合并冲突

This commit is contained in:
zhoumengru
2025-09-05 09:29:24 +08:00
57 changed files with 3443 additions and 1920 deletions

View File

@@ -8,6 +8,8 @@ import 'ant-design-vue/dist/reset.css'
import '@/style/index.scss'
// import '@/assets/iconfont/iconfont.css'
import * as echarts from 'echarts'
import { setWidth } from '@/utils/column'
import { getBtns } from '@/utils/btnList'
import VueTianditu from 'vue-tianditu'
import SearchBox from '@/components/SearchBox.vue'
import ComTable from '@/components/ComTable.vue'
@@ -18,5 +20,7 @@ app.component('SearchBox', SearchBox)
app.component('ComTable', ComTable)
app.config.globalProperties.$echarts = echarts // 挂载到全局属性
app.config.globalProperties.$setWidth = setWidth // 挂载到全局属性
app.config.globalProperties.$getBtns = getBtns
app.use(store).use(router).use(Antd).use(VueTianditu).mount('#app')