feat:edit
This commit is contained in:
parent
3d75632663
commit
f7cdcce8cb
@ -1,6 +1,6 @@
|
|||||||
# 开发环境
|
# 开发环境
|
||||||
VITE_PORT = 9000
|
VITE_PORT = 9000
|
||||||
VITE_APP_NAME = 'digital-agriculture-screen'
|
VITE_APP_NAME = 'digital-agriculture-screen'
|
||||||
VITE_APP_NAME = '政务云数据大屏可视化'
|
VITE_APP_TITLE = '政务云数据大屏可视化'
|
||||||
VITE_APP_BASE_API = '/apis'
|
VITE_APP_BASE_API = '/apis'
|
||||||
VITE_APP_BASE_URL = 'http://192.168.18.99:8080'
|
VITE_APP_BASE_URL = 'http://192.168.18.99:8080'
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# 生产环境
|
# 生产环境
|
||||||
VITE_APP_NAME = 'digital-agriculture-screen'
|
VITE_APP_NAME = 'digital-agriculture-screen'
|
||||||
VITE_APP_NAME = '政务云数据大屏可视化'
|
VITE_APP_TITLE = '政务云数据大屏可视化'
|
||||||
VITE_APP_BASE_API = '/apis'
|
VITE_APP_BASE_API = '/apis'
|
||||||
VITE_APP_BASE_URL = ''
|
VITE_APP_BASE_URL = ''
|
@ -1,5 +1,5 @@
|
|||||||
# 测试环境
|
# 测试环境
|
||||||
VITE_APP_NAME = 'digital-agriculture-screen'
|
VITE_APP_NAME = 'digital-agriculture-screen'
|
||||||
VITE_APP_NAME = '政务云数据大屏可视化'
|
VITE_APP_TITLE = '政务云数据大屏可视化'
|
||||||
VITE_APP_BASE_API = '/apis'
|
VITE_APP_BASE_API = '/apis'
|
||||||
VITE_APP_BASE_URL = ''
|
VITE_APP_BASE_URL = ''
|
1
components.d.ts
vendored
1
components.d.ts
vendored
@ -18,6 +18,7 @@ declare module 'vue' {
|
|||||||
CustomEchartPictorialBar: typeof import('./src/components/custom-echart-pictorial-bar/index.vue')['default']
|
CustomEchartPictorialBar: typeof import('./src/components/custom-echart-pictorial-bar/index.vue')['default']
|
||||||
CustomEchartPie: typeof import('./src/components/custom-echart-pie/index.vue')['default']
|
CustomEchartPie: typeof import('./src/components/custom-echart-pie/index.vue')['default']
|
||||||
CustomEchartPie3d: typeof import('./src/components/custom-echart-pie-3d/index.vue')['default']
|
CustomEchartPie3d: typeof import('./src/components/custom-echart-pie-3d/index.vue')['default']
|
||||||
|
CustomEchartPieCircle: typeof import('./src/components/custom-echart-pie-circle/index.vue')['default']
|
||||||
CustomEchartPieGauge: typeof import('./src/components/custom-echart-pie-gauge/index.vue')['default']
|
CustomEchartPieGauge: typeof import('./src/components/custom-echart-pie-gauge/index.vue')['default']
|
||||||
CustomEchartRadar: typeof import('./src/components/custom-echart-radar/index.vue')['default']
|
CustomEchartRadar: typeof import('./src/components/custom-echart-radar/index.vue')['default']
|
||||||
CustomEchartScatterBlister: typeof import('./src/components/custom-echart-scatter-blister/index.vue')['default']
|
CustomEchartScatterBlister: typeof import('./src/components/custom-echart-scatter-blister/index.vue')['default']
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
"screenfull": "^6.0.2",
|
"screenfull": "^6.0.2",
|
||||||
"vue": "^3.3.11",
|
"vue": "^3.3.11",
|
||||||
"vue-cesium": "^3.2.9",
|
"vue-cesium": "^3.2.9",
|
||||||
|
"vue-echarts": "^7.0.3",
|
||||||
"vue-router": "^4.2.5",
|
"vue-router": "^4.2.5",
|
||||||
"vue3-scroll-seamless": "^1.0.6"
|
"vue3-scroll-seamless": "^1.0.6"
|
||||||
},
|
},
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watchEffect } from 'vue';
|
import { ref, reactive, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
export default {
|
export default {
|
||||||
name: 'CustomEchartBar',
|
name: 'CustomEchartBar',
|
||||||
props: {
|
props: {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watch, watchEffect } from 'vue';
|
import { ref, reactive, watch, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'customEchartBubble',
|
name: 'customEchartBubble',
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watch, watchEffect } from 'vue';
|
import { ref, reactive, watch, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CustomEchartLineLine',
|
name: 'CustomEchartLineLine',
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watchEffect } from 'vue';
|
import { ref, reactive, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CustomEchartLine',
|
name: 'CustomEchartLine',
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watch, watchEffect } from 'vue';
|
import { ref, reactive, watch, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CustomEchartMaps',
|
name: 'CustomEchartMaps',
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watchEffect } from 'vue';
|
import { ref, reactive, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CustomEchartMixin',
|
name: 'CustomEchartMixin',
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watch, watchEffect } from 'vue';
|
import { ref, reactive, watch, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'customEchartPictorialBar',
|
name: 'customEchartPictorialBar',
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watch, watchEffect } from 'vue';
|
import { ref, reactive, watch, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CustomEchartPie3d',
|
name: 'CustomEchartPie3d',
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watch, watchEffect } from 'vue';
|
import { ref, reactive, watch, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CustomEchartPieGauge',
|
name: 'CustomEchartPieGauge',
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watch, watchEffect } from 'vue';
|
import { ref, reactive, watch, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CustomEchartPie',
|
name: 'CustomEchartPie',
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watchEffect } from 'vue';
|
import { ref, reactive, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CustomEchartRadar',
|
name: 'CustomEchartRadar',
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watch, watchEffect } from 'vue';
|
import { ref, reactive, watch, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'customEchartScatterBlister',
|
name: 'customEchartScatterBlister',
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watch, watchEffect } from 'vue';
|
import { ref, reactive, watch, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'customEchartWaterDroplet',
|
name: 'customEchartWaterDroplet',
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, reactive, watch, watchEffect } from 'vue';
|
import { ref, reactive, watch, watchEffect } from 'vue';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { useEcharts } from '../../hooks/useEcharts';
|
import { useEcharts } from '@/hooks/useEcharts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CustomEchartWordCloud',
|
name: 'CustomEchartWordCloud',
|
||||||
|
@ -55,7 +55,8 @@ const options = ref({
|
|||||||
width: 500px;
|
width: 500px;
|
||||||
height: 500px;
|
height: 500px;
|
||||||
margin: 30px auto 0;
|
margin: 30px auto 0;
|
||||||
background-color: #fff;
|
padding: 50px;
|
||||||
|
background-color: #999;
|
||||||
|
|
||||||
&-title {
|
&-title {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user