This commit is contained in:
duanxiaohai 2024-09-30 09:26:49 +08:00
parent 3af3643df3
commit 90f45796ab
17 changed files with 1299 additions and 698 deletions

BIN
dist.zip

Binary file not shown.

View File

@ -9,16 +9,9 @@ import "./assets/css/common.css";
import zhCn from "element-plus/dist/locale/zh-cn.mjs";
// 引入 vConsole
import VConsole from "vconsole";
// import VConsole from "vconsole";
// 初始化 vConsole
const vConsole = new VConsole();
// const vConsole = new VConsole({
// defaultPlugins: {
// // 是否默认开启 console 插件
// 'console': true,
// // 其他插件配置...
// }
// });
// const vConsole = new VConsole();
createApp(App)
.use(router)

View File

@ -17,27 +17,44 @@ const router = createRouter({
component: () => import("../view/guide.vue"),
},
{
name: "无权限",
path: "/error/noPermission",
component: () => import("../view/error/noPermission.vue"),
name: "401",
path: "/error/401",
component: () => import("../view/error/401.vue"),
},
{
name: "403",
path: "/error/403",
component: () => import("../view/error/403.vue"),
// meta: { page_id: 6, page_name: "403" },
},
{
name: "404",
path: "/error/404",
component: () => import("../view/error/404.vue"),
// meta: { page_id: 7, page_name: "404" },
},
{
name: "500",
path: "/error/500",
component: () => import("../view/error/500.vue"),
// meta: { page_id: 8, page_name: "500" },
},
{
name: "无网络",
path: "/error/noNetwork",
component: () => import("../view/error/noNetwork.vue"),
},
{
name: "建设中",
path: "/error/emptyPage",
component: () => import("../view/error/emptyPage.vue"),
},
{
name: "查询为空",
path: "/error/noResults",
component: () => import("../view/error/noResults.vue"),
},
{
name: "通用空页面",
path: "/error/noConstruction",
component: () => import("../view/error/noConstruction.vue"),
},
{
path: "/home",
@ -100,10 +117,10 @@ const router = createRouter({
// },
],
},
],
});
router.beforeEach((to, form, next) => {
// var token = getCookie('lytoken')
// // console.log('token', token)

View File

@ -30,7 +30,7 @@ axios.interceptors.response.use(
if (error.response) {
if (error.response.status == 401) {
ElMessage.error("请重新登录!");
const cookies = document.cookie.split(";");
for (let i = 0; i < cookies.length; i++) {
const cookie = cookies[i];
@ -38,6 +38,7 @@ axios.interceptors.response.use(
const name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;";
}
router.replace({
path: "/guide",
});

View File

@ -1,19 +1,11 @@
<template>
<div ref="chart" style="width: 50%; height: 230px"></div>
<div ref="chart" style="width: 50%; height: 210px"></div>
</template>
<script setup>
import {
onMounted,
onBeforeMount,
ref,
reactive,
defineProps,
nextTick,
} from "vue";
import { onBeforeMount, onMounted, reactive, ref } from "vue";
// echarts
import * as echarts from "echarts";
import "echarts-gl";
const props = defineProps({
list: {
@ -22,557 +14,197 @@ const props = defineProps({
return [];
},
},
month: {
type: Array,
default: () => [],
},
});
const chart = ref(); // DOM
const data = reactive({
list: [],
// pieData: [
// {
// name: "61-70", //
// value: "", //
// },
// {
// name: "71-80",
// value: "",
// },
// {
// name: "81-90",
// value: "",
// },
// {
// name: "91-100",
// value: "",
// },
// {
// name: "100",
// value: "",
// },
// ],
option: {},
});
// const data = reactive({
// list: [],
// month: [],
// option: {},
// });
const colorList = [
"#FFE35F",
"#0081FF",
"#8ABEDB",
"#25B9C8",
"#30EB92",
"rgba(69, 244, 245)",
"rgba(7, 166, 255)",
"rgba(255, 208, 118)",
"rgba(109, 168, 198)",
"rgba(255, 255, 255)",
];
const pieData = reactive([
let data = [
{
name: "高血压", //
value: 0, //
name: "高血压",
value: 40,
},
{
name: "非高血压",
value: 0,
value: 30,
},
]);
];
let value = data.map((item) => item.value);
let sum = value.reduce((a, b) => {
return a + b;
});//
let color = ["#ECE09E ", "#78f6f8"];
let series = [];
let yAxis = [];
// const serData = pieData.map((dItem, index) => {
// return {
// ...dItem,
// value: Number(dItem.value),
// itemStyle: {
// color: colorList[index],
// },
// };
// });
//
// const option = getPie3D(serData, 0.8);
const getOption = () => {
const serData = pieData.map((dItem, index) => {
return {
...dItem,
value: Number(dItem.value),
itemStyle: {
color: colorList[index],
for (let i = 0; i < data.length; i++) {
series.push({
name: "",
type: "pie",
clockWise: false, //
hoverAnimation: true, //
radius: [45 - i * 10 + "%", 41 - i * 10 + "%"],
center: ["40%", "50%"],
label: {
show: false,
},
itemStyle: {
borderWidth: 60, //
borderRadius: 60, //
borderColor: "rgba(0, 0,0, 0)",
borderDashOffset: 20,
},
data: [
{
value: data[i].value,
name: data[i].name,
},
};
{
value: sum - data[i].value,
name: "",
itemStyle: {
color: "transparent",
},
hoverAnimation: false,
},
],
});
data.option = getPie3D(serData, 0.8);
};
series.push({
name: "",
type: "pie",
silent: true,
z: 1,
clockWise: false, //
hoverAnimation: true, //
radius: [45 - i * 10 + "%", 41 - i * 10 + "%"],
center: ["40%", "50%"],
label: {
show: false,
},
itemStyle: {
borderWidth: 60, //
borderRadius: 60, //
borderColor: "rgba(0, 0,0, 0)",
borderDashOffset: 20,
},
data: [
{
value: 7.5,
itemStyle: {
color: "#eee",
},
hoverAnimation: false,
},
{
value: 2.5,
itemStyle: {
color: "rgba(0,0,0,0)",
},
hoverAnimation: false,
},
],
});
yAxis.push("高血压" +((data[i].value / sum) * 100).toFixed(2) + "%");
// yAxis.push("" +((data[1].value / sum) * 100).toFixed(2) + "%");
}
const getOption = () => {
data.option = {
color: color,
// legend: {
// show: true,
// icon: "rect",
// top: "center",
// right: "0%",
// data: name,
// itemWidth: 20,
// itemHeight: 20,
// width: 100,
// itemGap: 40,
// orient: "horizontal",
// formatter: (name) => {
// return (
// "{title|" +
// name +
// "}{value|" +
// data.find((item) => {
// return item.name == name;
// }).value +
// "}{value|}"
// );
// },
// textStyle: {
// rich: {
// title: {
// fontSize: 14,
// padding: [0, 10, 0, 10], // label
// color: "rgb(0, 178, 246)",
// },
// value: {
// fontSize: 12,
// color: "#000",
// },
// },
// },
// },
// 3D
function getPie3D(pieData, internalDiameterRatio) {
let series = [];
let sumValue = 0;
let startValue = 0;
let endValue = 0;
let legendData = [];
let k =
typeof internalDiameterRatio !== "undefined"
? (1 - internalDiameterRatio) / (1 + internalDiameterRatio)
: 1 / 3;
// series-surface
for (let i = 0; i < pieData.length; i++) {
sumValue += pieData[i].value;
let seriesItem = {
name:
typeof pieData[i].name === "undefined" ? `series${i}` : pieData[i].name,
type: "surface",
parametric: true,
wireframe: {
grid: {
top: "26%",
left: "40%",
width: "40%",
height: "21%",
containLabel: false,
},
yAxis: [
{
type: "category",
inverse: true,
axisLine: {
show: false,
},
axisTick: {
show: false,
},
axisLabel: {
interval: 0,
inside: true,
textStyle: {
color: "#fff",
fontSize: 14,
},
show: true,
},
data: yAxis,
},
],
xAxis: [
{
show: false,
},
pieData: pieData[i],
pieStatus: {
selected: false,
hovered: false,
k: 1 / 10,
},
};
if (typeof pieData[i].itemStyle != "undefined") {
let itemStyle = {};
typeof pieData[i].itemStyle.color != "undefined"
? (itemStyle.color = pieData[i].itemStyle.color)
: null;
typeof pieData[i].itemStyle.opacity != "undefined"
? (itemStyle.opacity = pieData[i].itemStyle.opacity)
: null;
seriesItem.itemStyle = itemStyle;
}
series.push(seriesItem);
}
// 使 sumValue getParametricEquation
// series-surface series-surface.parametricEquation
for (let i = 0; i < series.length; i++) {
endValue = startValue + series[i].pieData.value;
series[i].pieData.startRatio = startValue / sumValue;
series[i].pieData.endRatio = endValue / sumValue;
series[i].parametricEquation = getParametricEquation(
series[i].pieData.startRatio,
series[i].pieData.endRatio,
false,
false,
k,
series[i].pieData.value
);
startValue = endValue;
legendData.push(series[i].name);
}
// //
// series.push({
// name: 'mouseoutSeries',
// type: 'surface',
// parametric: true,
// wireframe: {
// show: false,
// },
// width: '30px',
// itemStyle: {
// opacity: 0.7,
// color: '#fff',
// },
// parametricEquation: {
// u: {
// min: 0,
// max: Math.PI * 2,
// step: Math.PI / 20,
// },
// v: {
// min: 0,
// max: Math.PI ,
// step: Math.PI / 20,
// },
// x: function (u, v) {
// return ((Math.sin(v) * Math.sin(u) + Math.sin(u)) / Math.PI);
// },
// y: function (u, v) {
// return ((Math.sin(v) * Math.cos(u) + Math.cos(u)) / Math.PI) ;
// },
// z: function (u, v) {
// return Math.cos(v) > 0 ? -6 : -7;
// },
// },
// });
// legendDataseries
let option = {
//animation: false,
//
legend: {
data: legendData,
color: [
"#8FD7FC",
"#466BE7",
"#F4BB29",
"#49C384",
"#8FD7FC",
"#466BE7",
"#F4BB29",
"#49C384",
],
width: "40%",
//
orient: "vertical",
right: 1,
top: "center",
//
itemGap: 10,
show: false,
icon: "rect",
itemHeight: 10,
itemWidth: 25,
textStyle: {
//
fontSize: 16,
color: "#FFFFFF",
lineHeight: 20,
},
//
formatter: function (name) {
var target;
for (var i = 0, l = pieData.length; i < l; i++) {
if (pieData[i].name == name) {
target = pieData[i].value;
}
}
if (name == "91-100岁") {
return ` ${name} ${target}`;
} else if (name == "100岁以上") {
return ` ${name} ${target}`;
} else {
return ` ${name} ${target}`;
}
},
},
//
tooltip: {
backgroundColor: "rgba(18, 55, 85, 0.8);",
borderColor: "transparent",
formatter: (params) => {
if (
params.seriesName !== "mouseoutSeries" &&
params.seriesName !== "pie2d"
) {
let bfb = (
(option.series[params.seriesIndex].pieData.endRatio -
option.series[params.seriesIndex].pieData.startRatio) *
100
).toFixed(2);
const value = option.series[params.seriesIndex].pieData.value;
return (
`<div style='color:#FFFFFF;'>` +
`<span style="display:inline-block;margin-right:5px;border-radius:10px;width:10px;height:10px;background-color:${params.color};"></span>` +
`${params.seriesName}<br/>` +
`<span style='margin-right:20px'>${value}人</span>` +
`<span >${bfb}%</span>` +
`</div>`
);
}
},
},
label: {
show: true,
// position: "outside",
// padding: [30, -180],
formatter: function (pieData) {
console.log("optionsData", pieData);
return (
"{name|" +
pieData.name +
"}" +
"{vlaueA|" +
pieData.value +
"亿元" +
"}"
);
},
},
xAxis3D: {},
yAxis3D: {},
zAxis3D: {},
grid3D: {
viewControl: {
autoRotate: true,
rotateSensitivity: 0, //0
zoomSensitivity: 0, //0
panSensitivity: 0, //0
alpha: 25, //( )
distance: 100, //zoom()
},
top: "-30",
left: "0",
width: "100%",
show: false,
boxHeight: 20,
},
],
series: series,
};
return option;
}
// series-surface.parametricEquation
function getParametricEquation(
startRatio,
endRatio,
isSelected,
isHovered,
k,
h
) {
//
let midRatio = (startRatio + endRatio) / 2;
let startRadian = startRatio * Math.PI * 2;
let endRadian = endRatio * Math.PI * 2;
let midRadian = midRatio * Math.PI * 2;
//
if (startRatio === 0 && endRatio === 1) {
isSelected = false;
}
// / k 1/3
k = typeof k !== "undefined" ? k : 1 / 3;
// x y 0
let offsetX = isSelected ? Math.cos(midRadian) * 0.1 : 0;
let offsetY = isSelected ? Math.sin(midRadian) * 0.1 : 0;
// 1
let hoverRate = isHovered ? 1.05 : 1;
//
return {
u: {
min: -Math.PI,
max: Math.PI * 3,
step: Math.PI / 32,
},
v: {
min: 0,
max: Math.PI * 2,
step: Math.PI / 20,
},
x: function (u, v) {
if (u < startRadian) {
return (
offsetX + Math.cos(startRadian) * (1 + Math.cos(v) * k) * hoverRate
);
}
if (u > endRadian) {
return (
offsetX + Math.cos(endRadian) * (1 + Math.cos(v) * k) * hoverRate
);
}
return offsetX + Math.cos(u) * (1 + Math.cos(v) * k) * hoverRate;
},
y: function (u, v) {
if (u < startRadian) {
return (
offsetY + Math.sin(startRadian) * (1 + Math.cos(v) * k) * hoverRate
);
}
if (u > endRadian) {
return (
offsetY + Math.sin(endRadian) * (1 + Math.cos(v) * k) * hoverRate
);
}
return offsetY + Math.sin(u) * (1 + Math.cos(v) * k) * hoverRate;
},
z: function (u, v) {
if (u < -Math.PI * 0.5) {
return Math.sin(u);
}
if (u > Math.PI * 2.5) {
return Math.sin(u) * h * 0.1;
}
return Math.sin(v) > 0 ? 1 * h * 0.1 : -1;
},
};
}
//
function bindListen(myChart) {
let selectedIndex = "";
let hoveredIndex = "";
//
myChart.on("click", function (params) {
// option.series
let isSelected = !option.series[params.seriesIndex].pieStatus.selected;
let isHovered = option.series[params.seriesIndex].pieStatus.hovered;
let k = option.series[params.seriesIndex].pieStatus.k;
let startRatio = option.series[params.seriesIndex].pieData.startRatio;
let endRatio = option.series[params.seriesIndex].pieData.endRatio;
// option
if (selectedIndex !== "" && selectedIndex !== params.seriesIndex) {
option.series[selectedIndex].parametricEquation = getParametricEquation(
option.series[selectedIndex].pieData.startRatio,
option.series[selectedIndex].pieData.endRatio,
false,
false,
k,
option.series[selectedIndex].pieData.value
);
option.series[selectedIndex].pieStatus.selected = false;
}
// / option
option.series[params.seriesIndex].parametricEquation =
getParametricEquation(
startRatio,
endRatio,
isSelected,
isHovered,
k,
option.series[params.seriesIndex].pieData.value
);
option.series[params.seriesIndex].pieStatus.selected = isSelected;
// seriesIndex
isSelected ? (selectedIndex = params.seriesIndex) : null;
// 使 option
myChart.setOption(option);
});
// mouseover
myChart.on("mouseover", function (params) {
//
let isSelected;
let isHovered;
let startRatio;
let endRatio;
let k;
// mouseover
if (hoveredIndex === params.seriesIndex) {
return;
//
} else {
// option
if (hoveredIndex !== "") {
// option.series false
isSelected = option.series[hoveredIndex].pieStatus.selected;
isHovered = false;
startRatio = option.series[hoveredIndex].pieData.startRatio;
endRatio = option.series[hoveredIndex].pieData.endRatio;
k = option.series[hoveredIndex].pieStatus.k;
// option
option.series[hoveredIndex].parametricEquation = getParametricEquation(
startRatio,
endRatio,
isSelected,
isHovered,
k,
option.series[hoveredIndex].pieData.value
);
option.series[hoveredIndex].pieStatus.hovered = isHovered;
// seriesIndex
hoveredIndex = "";
}
// mouseover option
if (
params.seriesName !== "mouseoutSeries" &&
params.seriesName !== "pie2d"
) {
// option.series true
isSelected = option.series[params.seriesIndex].pieStatus.selected;
isHovered = true;
startRatio = option.series[params.seriesIndex].pieData.startRatio;
endRatio = option.series[params.seriesIndex].pieData.endRatio;
k = option.series[params.seriesIndex].pieStatus.k;
// option
option.series[params.seriesIndex].parametricEquation =
getParametricEquation(
startRatio,
endRatio,
isSelected,
isHovered,
k,
option.series[params.seriesIndex].pieData.value + 5
);
option.series[params.seriesIndex].pieStatus.hovered = isHovered;
// seriesIndex
hoveredIndex = params.seriesIndex;
}
// 使 option
myChart.setOption(option);
}
});
// bug
myChart.on("globalout", function () {
//
let isSelected;
let isHovered;
let startRatio;
let endRatio;
let k;
if (hoveredIndex !== "") {
// option.series true
isSelected = option.series[hoveredIndex].pieStatus.selected;
isHovered = false;
k = option.series[hoveredIndex].pieStatus.k;
startRatio = option.series[hoveredIndex].pieData.startRatio;
endRatio = option.series[hoveredIndex].pieData.endRatio;
// option
option.series[hoveredIndex].parametricEquation = getParametricEquation(
startRatio,
endRatio,
isSelected,
isHovered,
k,
option.series[hoveredIndex].pieData.value
);
option.series[hoveredIndex].pieStatus.hovered = isHovered;
// seriesIndex
hoveredIndex = "";
}
// 使 option
myChart.setOption(option);
});
}
// 使
// onMounted(() => {
// // domecharts
// // var myChart = echarts.init(document.getElementById('main'));
// // Vue3
// var myChart = echarts.init(chart.value);
// //
// // bindListen(myChart)
// // init(); // vue3.2this
// // 使
// myChart.setOption(option);
// // :
// window.addEventListener("resize", () => {
// myChart.resize();
// });
// });
};
const setChart = () => {
var myChart = echarts.init(chart.value);
myChart.setOption(data.option);
// :
window.addEventListener("resize", () => {
myChart.resize();
});
};
// 使
onBeforeMount(() => {
setTimeout(() => {
data.list = props.list;
// data.list = {
// gxy: "1500",
// notGxy: "1610",
// };
pieData[0].value = data.list.fgxy.rs;
pieData[1].value = data.list.gxy.rs;
data.month = props.month;
console.log(11,data);
getOption();
setChart();
}, 600);

View File

@ -0,0 +1,582 @@
<template>
<div ref="chart" style="width: 50%; height: 230px"></div>
</template>
<script setup>
import {
onMounted,
onBeforeMount,
ref,
reactive,
defineProps,
nextTick,
} from "vue";
// echarts
import * as echarts from "echarts";
import "echarts-gl";
const props = defineProps({
list: {
type: Array,
default: () => {
return [];
},
},
});
const chart = ref(); // DOM
const data = reactive({
list: [],
// pieData: [
// {
// name: "61-70", //
// value: "", //
// },
// {
// name: "71-80",
// value: "",
// },
// {
// name: "81-90",
// value: "",
// },
// {
// name: "91-100",
// value: "",
// },
// {
// name: "100",
// value: "",
// },
// ],
option: {},
});
const colorList = [
"#FFE35F",
"#0081FF",
"#8ABEDB",
"#25B9C8",
"#30EB92",
"rgba(69, 244, 245)",
"rgba(7, 166, 255)",
"rgba(255, 208, 118)",
"rgba(109, 168, 198)",
"rgba(255, 255, 255)",
];
const pieData = reactive([
{
name: "高血压", //
value: 0, //
},
{
name: "非高血压",
value: 0,
},
]);
// const serData = pieData.map((dItem, index) => {
// return {
// ...dItem,
// value: Number(dItem.value),
// itemStyle: {
// color: colorList[index],
// },
// };
// });
//
// const option = getPie3D(serData, 0.8);
const getOption = () => {
const serData = pieData.map((dItem, index) => {
return {
...dItem,
value: Number(dItem.value),
itemStyle: {
color: colorList[index],
},
};
});
data.option = getPie3D(serData, 0.8);
};
// 3D
function getPie3D(pieData, internalDiameterRatio) {
let series = [];
let sumValue = 0;
let startValue = 0;
let endValue = 0;
let legendData = [];
let k =
typeof internalDiameterRatio !== "undefined"
? (1 - internalDiameterRatio) / (1 + internalDiameterRatio)
: 1 / 3;
// series-surface
for (let i = 0; i < pieData.length; i++) {
sumValue += pieData[i].value;
let seriesItem = {
name:
typeof pieData[i].name === "undefined" ? `series${i}` : pieData[i].name,
type: "surface",
parametric: true,
wireframe: {
show: false,
},
pieData: pieData[i],
pieStatus: {
selected: false,
hovered: false,
k: 1 / 10,
},
};
if (typeof pieData[i].itemStyle != "undefined") {
let itemStyle = {};
typeof pieData[i].itemStyle.color != "undefined"
? (itemStyle.color = pieData[i].itemStyle.color)
: null;
typeof pieData[i].itemStyle.opacity != "undefined"
? (itemStyle.opacity = pieData[i].itemStyle.opacity)
: null;
seriesItem.itemStyle = itemStyle;
}
series.push(seriesItem);
}
// 使 sumValue getParametricEquation
// series-surface series-surface.parametricEquation
for (let i = 0; i < series.length; i++) {
endValue = startValue + series[i].pieData.value;
series[i].pieData.startRatio = startValue / sumValue;
series[i].pieData.endRatio = endValue / sumValue;
series[i].parametricEquation = getParametricEquation(
series[i].pieData.startRatio,
series[i].pieData.endRatio,
false,
false,
k,
series[i].pieData.value
);
startValue = endValue;
legendData.push(series[i].name);
}
// //
// series.push({
// name: 'mouseoutSeries',
// type: 'surface',
// parametric: true,
// wireframe: {
// show: false,
// },
// width: '30px',
// itemStyle: {
// opacity: 0.7,
// color: '#fff',
// },
// parametricEquation: {
// u: {
// min: 0,
// max: Math.PI * 2,
// step: Math.PI / 20,
// },
// v: {
// min: 0,
// max: Math.PI ,
// step: Math.PI / 20,
// },
// x: function (u, v) {
// return ((Math.sin(v) * Math.sin(u) + Math.sin(u)) / Math.PI);
// },
// y: function (u, v) {
// return ((Math.sin(v) * Math.cos(u) + Math.cos(u)) / Math.PI) ;
// },
// z: function (u, v) {
// return Math.cos(v) > 0 ? -6 : -7;
// },
// },
// });
// legendDataseries
let option = {
//animation: false,
//
legend: {
data: legendData,
color: [
"#8FD7FC",
"#466BE7",
"#F4BB29",
"#49C384",
"#8FD7FC",
"#466BE7",
"#F4BB29",
"#49C384",
],
width: "40%",
//
orient: "vertical",
right: 1,
top: "center",
//
itemGap: 10,
show: false,
icon: "rect",
itemHeight: 10,
itemWidth: 25,
textStyle: {
//
fontSize: 16,
color: "#FFFFFF",
lineHeight: 20,
},
//
formatter: function (name) {
var target;
for (var i = 0, l = pieData.length; i < l; i++) {
if (pieData[i].name == name) {
target = pieData[i].value;
}
}
if (name == "91-100岁") {
return ` ${name} ${target}`;
} else if (name == "100岁以上") {
return ` ${name} ${target}`;
} else {
return ` ${name} ${target}`;
}
},
},
//
tooltip: {
backgroundColor: "rgba(18, 55, 85, 0.8);",
borderColor: "transparent",
formatter: (params) => {
if (
params.seriesName !== "mouseoutSeries" &&
params.seriesName !== "pie2d"
) {
let bfb = (
(option.series[params.seriesIndex].pieData.endRatio -
option.series[params.seriesIndex].pieData.startRatio) *
100
).toFixed(2);
const value = option.series[params.seriesIndex].pieData.value;
return (
`<div style='color:#FFFFFF;'>` +
`<span style="display:inline-block;margin-right:5px;border-radius:10px;width:10px;height:10px;background-color:${params.color};"></span>` +
`${params.seriesName}<br/>` +
`<span style='margin-right:20px'>${value}人</span>` +
`<span >${bfb}%</span>` +
`</div>`
);
}
},
},
label: {
show: true,
// position: "outside",
// padding: [30, -180],
formatter: function (pieData) {
console.log("optionsData", pieData);
return (
"{name|" +
pieData.name +
"}" +
"{vlaueA|" +
pieData.value +
"亿元" +
"}"
);
},
},
xAxis3D: {},
yAxis3D: {},
zAxis3D: {},
grid3D: {
viewControl: {
autoRotate: true,
rotateSensitivity: 0, //0
zoomSensitivity: 0, //0
panSensitivity: 0, //0
alpha: 25, //( )
distance: 100, //zoom()
},
top: "-30",
left: "0",
width: "100%",
show: false,
boxHeight: 20,
},
series: series,
};
return option;
}
// series-surface.parametricEquation
function getParametricEquation(
startRatio,
endRatio,
isSelected,
isHovered,
k,
h
) {
//
let midRatio = (startRatio + endRatio) / 2;
let startRadian = startRatio * Math.PI * 2;
let endRadian = endRatio * Math.PI * 2;
let midRadian = midRatio * Math.PI * 2;
//
if (startRatio === 0 && endRatio === 1) {
isSelected = false;
}
// / k 1/3
k = typeof k !== "undefined" ? k : 1 / 3;
// x y 0
let offsetX = isSelected ? Math.cos(midRadian) * 0.1 : 0;
let offsetY = isSelected ? Math.sin(midRadian) * 0.1 : 0;
// 1
let hoverRate = isHovered ? 1.05 : 1;
//
return {
u: {
min: -Math.PI,
max: Math.PI * 3,
step: Math.PI / 32,
},
v: {
min: 0,
max: Math.PI * 2,
step: Math.PI / 20,
},
x: function (u, v) {
if (u < startRadian) {
return (
offsetX + Math.cos(startRadian) * (1 + Math.cos(v) * k) * hoverRate
);
}
if (u > endRadian) {
return (
offsetX + Math.cos(endRadian) * (1 + Math.cos(v) * k) * hoverRate
);
}
return offsetX + Math.cos(u) * (1 + Math.cos(v) * k) * hoverRate;
},
y: function (u, v) {
if (u < startRadian) {
return (
offsetY + Math.sin(startRadian) * (1 + Math.cos(v) * k) * hoverRate
);
}
if (u > endRadian) {
return (
offsetY + Math.sin(endRadian) * (1 + Math.cos(v) * k) * hoverRate
);
}
return offsetY + Math.sin(u) * (1 + Math.cos(v) * k) * hoverRate;
},
z: function (u, v) {
if (u < -Math.PI * 0.5) {
return Math.sin(u);
}
if (u > Math.PI * 2.5) {
return Math.sin(u) * h * 0.1;
}
return Math.sin(v) > 0 ? 1 * h * 0.1 : -1;
},
};
}
//
function bindListen(myChart) {
let selectedIndex = "";
let hoveredIndex = "";
//
myChart.on("click", function (params) {
// option.series
let isSelected = !option.series[params.seriesIndex].pieStatus.selected;
let isHovered = option.series[params.seriesIndex].pieStatus.hovered;
let k = option.series[params.seriesIndex].pieStatus.k;
let startRatio = option.series[params.seriesIndex].pieData.startRatio;
let endRatio = option.series[params.seriesIndex].pieData.endRatio;
// option
if (selectedIndex !== "" && selectedIndex !== params.seriesIndex) {
option.series[selectedIndex].parametricEquation = getParametricEquation(
option.series[selectedIndex].pieData.startRatio,
option.series[selectedIndex].pieData.endRatio,
false,
false,
k,
option.series[selectedIndex].pieData.value
);
option.series[selectedIndex].pieStatus.selected = false;
}
// / option
option.series[params.seriesIndex].parametricEquation =
getParametricEquation(
startRatio,
endRatio,
isSelected,
isHovered,
k,
option.series[params.seriesIndex].pieData.value
);
option.series[params.seriesIndex].pieStatus.selected = isSelected;
// seriesIndex
isSelected ? (selectedIndex = params.seriesIndex) : null;
// 使 option
myChart.setOption(option);
});
// mouseover
myChart.on("mouseover", function (params) {
//
let isSelected;
let isHovered;
let startRatio;
let endRatio;
let k;
// mouseover
if (hoveredIndex === params.seriesIndex) {
return;
//
} else {
// option
if (hoveredIndex !== "") {
// option.series false
isSelected = option.series[hoveredIndex].pieStatus.selected;
isHovered = false;
startRatio = option.series[hoveredIndex].pieData.startRatio;
endRatio = option.series[hoveredIndex].pieData.endRatio;
k = option.series[hoveredIndex].pieStatus.k;
// option
option.series[hoveredIndex].parametricEquation = getParametricEquation(
startRatio,
endRatio,
isSelected,
isHovered,
k,
option.series[hoveredIndex].pieData.value
);
option.series[hoveredIndex].pieStatus.hovered = isHovered;
// seriesIndex
hoveredIndex = "";
}
// mouseover option
if (
params.seriesName !== "mouseoutSeries" &&
params.seriesName !== "pie2d"
) {
// option.series true
isSelected = option.series[params.seriesIndex].pieStatus.selected;
isHovered = true;
startRatio = option.series[params.seriesIndex].pieData.startRatio;
endRatio = option.series[params.seriesIndex].pieData.endRatio;
k = option.series[params.seriesIndex].pieStatus.k;
// option
option.series[params.seriesIndex].parametricEquation =
getParametricEquation(
startRatio,
endRatio,
isSelected,
isHovered,
k,
option.series[params.seriesIndex].pieData.value + 5
);
option.series[params.seriesIndex].pieStatus.hovered = isHovered;
// seriesIndex
hoveredIndex = params.seriesIndex;
}
// 使 option
myChart.setOption(option);
}
});
// bug
myChart.on("globalout", function () {
//
let isSelected;
let isHovered;
let startRatio;
let endRatio;
let k;
if (hoveredIndex !== "") {
// option.series true
isSelected = option.series[hoveredIndex].pieStatus.selected;
isHovered = false;
k = option.series[hoveredIndex].pieStatus.k;
startRatio = option.series[hoveredIndex].pieData.startRatio;
endRatio = option.series[hoveredIndex].pieData.endRatio;
// option
option.series[hoveredIndex].parametricEquation = getParametricEquation(
startRatio,
endRatio,
isSelected,
isHovered,
k,
option.series[hoveredIndex].pieData.value
);
option.series[hoveredIndex].pieStatus.hovered = isHovered;
// seriesIndex
hoveredIndex = "";
}
// 使 option
myChart.setOption(option);
});
}
// 使
// onMounted(() => {
// // domecharts
// // var myChart = echarts.init(document.getElementById('main'));
// // Vue3
// var myChart = echarts.init(chart.value);
// //
// // bindListen(myChart)
// // init(); // vue3.2this
// // 使
// myChart.setOption(option);
// // :
// window.addEventListener("resize", () => {
// myChart.resize();
// });
// });
const setChart = () => {
var myChart = echarts.init(chart.value);
myChart.setOption(data.option);
// :
window.addEventListener("resize", () => {
myChart.resize();
});
};
// 使
onBeforeMount(() => {
setTimeout(() => {
data.list = props.list;
// data.list = {
// gxy: "1500",
// notGxy: "1610",
// };
pieData[0].value = data.list.fgxy.rs;
pieData[1].value = data.list.gxy.rs;
getOption();
setChart();
}, 600);
});
</script>
<style scoped></style>

View File

@ -1,54 +1,84 @@
<template>
<div class="error_main">
<img class="error_main_img" src="@/assets/errorImg/error3.png" alt="" />
<div class="error_main_content">请求未验证请联系管理员</div>
<div class="error_main">
<img class="error_main_img" src="@/assets/errorImg/error3.png" alt="" />
<div class="error_main_content">请求未验证请联系管理员</div>
<div class="unit">
<div>
<!-- 应用归属单位 -->
应用归属单位
</div>
<div>
<!-- 龙游县数据局 -->
浙江省龙游县数据局
</div>
</div>
</template>
<style lang="scss">
.error_main {
width: 100%;
max-width: 500px;
padding: 200px 30px 0;
<div class="unit">
<div>
<!-- 应用管理员 -->
应用管理员
</div>
<div>
<!-- 王昊 -->
王昊
</div>
</div>
<div class="unit">
<div>
<!-- 联系方式 -->
联系方式
</div>
<div>
<!-- 18368625409 -->
18368625409
</div>
</div>
</div>
</template>
<style lang="scss">
.error_main {
width: 100%;
max-width: 500px;
padding: 30px 30px 0;
box-sizing: border-box;
display: flex;
align-items: center;
flex-direction: column;
margin: 0 auto;
.error_main_img {
width: 300px;
height: 300px;
}
.error_main_content {
text-align: center;
margin-top: 5px;
font-size: 14px;
padding: 0 60px;
box-sizing: border-box;
color: #666874;
font-weight: 500;
margin-bottom: 26px;
line-height: 48px;
}
.unit {
display: flex;
// padding: 16px;
height: 58px;
width: 100%;
font-size: 14px;
justify-content: space-between;
box-sizing: border-box;
font-weight: 500;
color: #666874;
align-items: center;
flex-direction: column;
margin: 0 auto;
.error_main_img {
width: 300px;
height: 300px;
}
.error_main_content {
text-align: center;
margin-top: 5px;
font-size: 14px;
padding: 0 60px;
box-sizing: border-box;
color: #666874;
font-weight: 500;
margin-bottom: 26px;
line-height: 48px;
}
.unit {
display: flex;
// padding: 16px;
height: 58px;
width: 100%;
font-size: 14px;
justify-content: space-between;
box-sizing: border-box;
font-weight: 500;
color: #666874;
align-items: center;
div:nth-child(2) {
color: #32333b;
}
div:nth-child(2) {
color: #32333b;
}
}
</style>
}
</style>

View File

@ -4,6 +4,38 @@
<div class="error_main_content">
抱歉您暂无当前页面的访问权限请联系管理员
</div>
<div class="unit">
<div>
<!-- 应用归属单位 -->
应用归属单位
</div>
<div>
<!-- 龙游县数据局 -->
浙江省龙游县数据局
</div>
</div>
<div class="unit">
<div>
<!-- 应用管理员 -->
应用管理员
</div>
<div>
<!-- 王昊 -->
王昊
</div>
</div>
<div class="unit">
<div>
<!-- 联系方式 -->
联系方式
</div>
<div>
<!-- 18368625409 -->
18368625409
</div>
</div>
</div>
</template>
@ -11,7 +43,7 @@
.error_main {
width: 100%;
max-width: 500px;
padding: 200px 30px 0;
padding: 30px 30px 0;
box-sizing: border-box;
display: flex;
align-items: center;

View File

@ -1,8 +1,39 @@
<template>
<div class="error_main">
<img class="error_main_img" src="@/assets/errorImg/error1.png" alt="" />
<div class="error_main_content">抱歉访问资源不存在</div>
<div class="error_main_content">抱歉系统错误您可以选择尝试清除缓存或联系管理员</div>
<div class="unit">
<div>
<!-- 应用归属单位 -->
应用归属单位
</div>
<div>
<!-- 龙游县数据局 -->
浙江省龙游县数据局
</div>
</div>
<div class="unit">
<div>
<!-- 应用管理员 -->
应用管理员
</div>
<div>
<!-- 王昊 -->
王昊
</div>
</div>
<div class="unit">
<div>
<!-- 联系方式 -->
联系方式
</div>
<div>
<!-- 18368625409 -->
18368625409
</div>
</div>
</div>
</template>
@ -10,7 +41,7 @@
.error_main {
width: 100%;
max-width: 500px;
padding: 200px 30px 0;
padding: 30px 30px 0;
box-sizing: border-box;
display: flex;
align-items: center;

View File

@ -1,56 +1,86 @@
<template>
<div class="error_main">
<img class="error_main_img" src="@/assets/errorImg/error2.png" alt="" />
<div class="error_main_content">
抱歉系统错误您可以选择尝试清除缓存或联系管理员
</div>
<div class="error_main">
<img class="error_main_img" src="@/assets/errorImg/error2.png" alt="" />
<div class="error_main_content">
抱歉系统错误您可以选择尝试清除缓存或联系管理员
</div>
</template>
<style lang="scss">
.error_main {
width: 100%;
max-width: 536px;
padding: 200px 30px 0;
<div class="unit">
<div>
<!-- 应用归属单位 -->
应用归属单位
</div>
<div>
<!-- 龙游县数据局 -->
浙江省龙游县数据局
</div>
</div>
<div class="unit">
<div>
<!-- 应用管理员 -->
应用管理员
</div>
<div>
<!-- 王昊 -->
王昊
</div>
</div>
<div class="unit">
<div>
<!-- 联系方式 -->
联系方式
</div>
<div>
<!-- 18368625409 -->
18368625409
</div>
</div>
</div>
</template>
<style lang="scss">
.error_main {
width: 100%;
max-width: 500px;
padding: 30px 30px 0;
box-sizing: border-box;
display: flex;
align-items: center;
flex-direction: column;
margin: 0 auto;
.error_main_img {
width: 300px;
height: 300px;
}
.error_main_content {
text-align: center;
margin-top: 5px;
font-size: 14px;
padding: 0 60px;
box-sizing: border-box;
color: #666874;
font-weight: 500;
margin-bottom: 26px;
line-height: 48px;
}
.unit {
display: flex;
// padding: 16px;
height: 58px;
width: 100%;
font-size: 14px;
justify-content: space-between;
box-sizing: border-box;
font-weight: 500;
color: #666874;
align-items: center;
flex-direction: column;
margin: 0 auto;
.error_main_img {
width: 300px;
height: 300px;
}
.error_main_content {
text-align: center;
margin-top: 5px;
font-size: 14px;
padding: 0 60px;
box-sizing: border-box;
color: #666874;
font-weight: 500;
margin-bottom: 26px;
line-height: 48px;
}
.unit {
display: flex;
// padding: 16px;
height: 58px;
width: 100%;
font-size: 14px;
justify-content: space-between;
box-sizing: border-box;
font-weight: 500;
color: #666874;
align-items: center;
div:nth-child(2) {
color: #32333b;
}
div:nth-child(2) {
color: #32333b;
}
}
</style>
}
</style>

View File

@ -0,0 +1,68 @@
<template>
<div class="error_main">
<img class="error_main_img" src="@/assets/errorImg/error6.png" alt="" />
<div class="error_main_content">正在建设中敬请期待</div>
<div class="unit">
<div>
<!-- 应用归属单位 -->
应用归属单位
</div>
<div>
<!-- 龙游县数据局 -->
浙江省龙游县数据局
</div>
</div>
<div class="unit">
<div>
<!-- 应用管理员 -->
应用管理员
</div>
<div>
<!-- 王昊 -->
王昊
</div>
</div>
<div class="unit">
<div>
<!-- 联系方式 -->
联系方式
</div>
<div>
<!-- 18368625409 -->
18368625409
</div>
</div>
</div>
</template>
<style lang="scss">
.error_main {
width: 100%;
max-width: 500px;
padding: 30px 30px 0;
box-sizing: border-box;
display: flex;
align-items: center;
flex-direction: column;
margin: 0 auto;
.error_main_img {
width: 300px;
height: 300px;
}
.error_main_content {
text-align: center;
margin-top: 5px;
font-size: 14px;
padding: 0 60px;
box-sizing: border-box;
color: #666874;
font-weight: 500;
margin-bottom: 26px;
line-height: 48px;
}
}
</style>

View File

@ -0,0 +1,68 @@
<template>
<div class="error_main">
<img class="error_main_img" src="@/assets/errorImg/error6.png" alt="" />
<div class="error_main_content">暂无相关内容请退回上一页</div>
<div class="unit">
<div>
<!-- 应用归属单位 -->
应用归属单位
</div>
<div>
<!-- 龙游县数据局 -->
浙江省龙游县数据局
</div>
</div>
<div class="unit">
<div>
<!-- 应用管理员 -->
应用管理员
</div>
<div>
<!-- 王昊 -->
王昊
</div>
</div>
<div class="unit">
<div>
<!-- 联系方式 -->
联系方式
</div>
<div>
<!-- 18368625409 -->
18368625409
</div>
</div>
</div>
</template>
<style lang="scss">
.error_main {
width: 100%;
max-width: 500px;
padding: 30px 30px 0;
box-sizing: border-box;
display: flex;
align-items: center;
flex-direction: column;
margin: 0 auto;
.error_main_img {
width: 300px;
height: 300px;
}
.error_main_content {
text-align: center;
margin-top: 5px;
font-size: 14px;
padding: 0 60px;
box-sizing: border-box;
color: #666874;
font-weight: 500;
margin-bottom: 26px;
line-height: 48px;
}
}
</style>

View File

@ -0,0 +1,68 @@
<template>
<div class="error_main">
<img class="error_main_img" src="@/assets/errorImg/error4.png" alt="" />
<div class="error_main_content">网络错误请检查网络连接是否正常</div>
<div class="unit">
<div>
<!-- 应用归属单位 -->
应用归属单位
</div>
<div>
<!-- 龙游县数据局 -->
浙江省龙游县数据局
</div>
</div>
<div class="unit">
<div>
<!-- 应用管理员 -->
应用管理员
</div>
<div>
<!-- 王昊 -->
王昊
</div>
</div>
<div class="unit">
<div>
<!-- 联系方式 -->
联系方式
</div>
<div>
<!-- 18368625409 -->
18368625409
</div>
</div>
</div>
</template>
<style lang="scss">
.error_main {
width: 100%;
max-width: 500px;
padding: 30px 30px 0;
box-sizing: border-box;
display: flex;
align-items: center;
flex-direction: column;
margin: 0 auto;
.error_main_img {
width: 300px;
height: 300px;
}
.error_main_content {
text-align: center;
margin-top: 5px;
font-size: 14px;
padding: 0 60px;
box-sizing: border-box;
color: #666874;
font-weight: 500;
margin-bottom: 26px;
line-height: 48px;
}
}
</style>

View File

@ -1,37 +0,0 @@
<template>
<div class="error_main">
<img class="error_main_img" src="@/assets/errorImg/error3.png" alt="" />
<div class="error_main_content">账号没权限请联系管理员</div>
</div>
</template>
<style lang="scss">
.error_main {
width: 100%;
max-width: 500px;
padding: 200px 30px 0;
box-sizing: border-box;
display: flex;
align-items: center;
flex-direction: column;
margin: 0 auto;
.error_main_img {
width: 300px;
height: 300px;
}
.error_main_content {
text-align: center;
margin-top: 5px;
font-size: 14px;
padding: 0 60px;
box-sizing: border-box;
color: #666874;
font-weight: 500;
margin-bottom: 26px;
line-height: 48px;
}
}
</style>

View File

@ -0,0 +1,68 @@
<template>
<div class="error_main">
<img class="error_main_img" src="@/assets/errorImg/error5.png" alt="" />
<div class="error_main_content">暂无相关搜索结果请更换关键字搜索</div>
<div class="unit">
<div>
<!-- 应用归属单位 -->
应用归属单位
</div>
<div>
<!-- 龙游县数据局 -->
浙江省龙游县数据局
</div>
</div>
<div class="unit">
<div>
<!-- 应用管理员 -->
应用管理员
</div>
<div>
<!-- 王昊 -->
王昊
</div>
</div>
<div class="unit">
<div>
<!-- 联系方式 -->
联系方式
</div>
<div>
<!-- 18368625409 -->
18368625409
</div>
</div>
</div>
</template>
<style lang="scss">
.error_main {
width: 100%;
max-width: 500px;
padding: 30px 30px 0;
box-sizing: border-box;
display: flex;
align-items: center;
flex-direction: column;
margin: 0 auto;
.error_main_img {
width: 300px;
height: 300px;
}
.error_main_content {
text-align: center;
margin-top: 5px;
font-size: 14px;
padding: 0 60px;
box-sizing: border-box;
color: #666874;
font-weight: 500;
margin-bottom: 26px;
line-height: 48px;
}
}
</style>

View File

@ -153,7 +153,7 @@ const login = () => {
} else {
//
router.push({
path: `/error/noPermission`,
path: `/error/403`,
});
}
});
@ -161,11 +161,9 @@ const login = () => {
})
.catch((err) => {
console.log(err);
var token = getCookie("lytoken");
// var token = "6b0e380b4a8f46baae4923f83faf670d";
// router.push({
// path: `/error/404`,
// });
// var token = getCookie("lytoken");
var token = "6b0e380b4a8f46baae4923f83faf670d";
// console.log('token', token)
if (!token) {
window.location.href =

View File

@ -4328,7 +4328,27 @@ const reset_font2 = () => {
document.querySelector(".detail").style.transform =
"scale(" + width / 1920 + "," + height / 1080 + ")";
};
onMounted(async () => {
// WebGL
function isWebGLAvailable() {
try {
var canvas = document.createElement("canvas");
return (
!!window.WebGLRenderingContext &&
(canvas.getContext("webgl") || canvas.getContext("experimental-webgl"))
);
} catch (e) {
return false;
}
}
if (!isWebGLAvailable()) {
alert("您的浏览器不支持WebGL。");
} else {
alert("您的浏览器支持WebGL。");
}
loadingss.value = true;
reset_font();
await getXzsj();
@ -4775,8 +4795,8 @@ onMounted(async () => {
}
//
.loadBody {
width: 100%;
height: calc(100% - 112px );
width: 100%;
height: calc(100% - 112px);
z-index: 999;
background: rgba(0, 0, 0, 0);
bottom: 0;
@ -5182,4 +5202,4 @@ onMounted(async () => {
background: rgba(255, 255, 255, 0.14);
border: 1px solid #6bade1;
}
</style>
</style>